/AliOS-Things-master/hardware/chip/haas1000/drivers/net/lwip/src/include/netif/ppp/ |
A D | mppe.h | 81 if (opts & MPPE_OPT_STATEFUL) \ 90 if (opts & MPPE_OPT_128) \ 92 if (opts & MPPE_OPT_40) \ 102 opts = 0; \ 110 opts |= MPPE_OPT_128; \ 112 opts |= MPPE_OPT_40; \ 116 opts |= MPPE_OPT_56; \ 118 opts |= MPPE_OPT_D; \ 120 opts |= MPPE_OPT_MPPC; \ 124 opts |= MPPE_OPT_UNKNOWN; \ [all …]
|
/AliOS-Things-master/components/lwip/lwip2.0.0/include/netif/ppp/ |
A D | mppe.h | 81 if (opts & MPPE_OPT_STATEFUL) \ 90 if (opts & MPPE_OPT_128) \ 92 if (opts & MPPE_OPT_40) \ 102 opts = 0; \ 110 opts |= MPPE_OPT_128; \ 112 opts |= MPPE_OPT_40; \ 116 opts |= MPPE_OPT_56; \ 118 opts |= MPPE_OPT_D; \ 120 opts |= MPPE_OPT_MPPC; \ 124 opts |= MPPE_OPT_UNKNOWN; \ [all …]
|
/AliOS-Things-master/components/jsoncpp/src/jsontestrunner/ |
A D | main.cpp | 237 opts->parseOnly = false; in parseCommandLine() 238 opts->write = &useStyledWriter; in parseCommandLine() 245 opts->parseOnly = true; in parseCommandLine() 256 opts->write = &useStyledWriter; in parseCommandLine() 258 opts->write = &useStyledStreamWriter; in parseCommandLine() 269 opts->path = argv[index]; in parseCommandLine() 296 if (exitCode || opts.parseOnly) { in runTest() 308 opts.features, opts.parseOnly, &rewriteRoot, in runTest() 315 Options opts; in main() local 329 opts.path.substr(opts.path.find_last_of("\\/") + 1); in main() [all …]
|
/AliOS-Things-master/components/py_engine/tests/net_inet/ |
A D | test_tls_sites.py | 14 def test_one(site, opts): argument 23 if "sni" in opts: 24 s = ssl.wrap_socket(s, server_hostname=opts["host"]) 48 opts = {} 50 opts = site 51 site = opts["host"] 54 test_one(site, opts)
|
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/ |
A D | SConstruct | 34 opts = Options('libtiff.conf') 35 opts.Add(PathOption('PREFIX', \ 38 opts.Add(BoolOption('ccitt', \ 41 opts.Add(BoolOption('packbits', \ 44 opts.Add(BoolOption('lzw', \ 47 opts.Add(BoolOption('thunder', \ 50 opts.Add(BoolOption('next', \ 53 opts.Add(BoolOption('logluv', \ 65 opts.Update(env) 66 opts.Save('libtiff.conf', env) [all …]
|
/AliOS-Things-master/components/cli/src/iobox/ |
A D | hexdump.c | 163 int opts = 0, len = 0, skip = 0, chr = 0; in hexdump_main() local 166 while ((opts = getopt(argc, argv, ":n:hs:C")) != EOF) { in hexdump_main() 167 switch (opts) { in hexdump_main() 193 for (opts = 0; opts < argc; opts++) in hexdump_main() 194 hexdump_do(argv[opts], len, skip, chr); in hexdump_main()
|
A D | mkdir.c | 85 int opts = 0, ret = 0, flags = 0, index; in mkdir_main() local 88 while ((opts = getopt(argc, argv, ":ph")) != EOF) { in mkdir_main() 89 switch (opts) { in mkdir_main()
|
A D | rm.c | 86 int opts = 0, flags = 0, index, ret = 0; in rm_main() local 89 while ((opts = getopt(argc, argv, ":r")) != EOF) { in rm_main() 90 switch (opts) { in rm_main()
|
A D | cp.c | 186 int opts = 0, flags = 0; in cp_main() local 189 while ((opts = getopt(argc, argv, ":rh")) != EOF) { in cp_main() 190 switch (opts) { in cp_main()
|
A D | ls.c | 312 int opts = 0, flags = 0, flag_cnt = 0; in ls_main() local 315 while ((opts = getopt(argc, argv, ":lhk")) != EOF) { in ls_main() 316 switch (opts) { in ls_main()
|
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/libtests/ |
A D | pngstest.c | 342 if (opts & USE_FILE) in print_opts() 344 if (opts & USE_STDIO) in print_opts() 346 if (!(opts & STRICT)) in print_opts() 348 if (opts & VERBOSE) in print_opts() 576 png_uint_32 opts; member 656 image->opts = opts; in initimage() 3053 if (!(image->opts & USE_FILE) || (image->opts & USE_STDIO)) in read_one_file() 3316 copy.opts = opts; in testimage() 3381 copy.opts = opts; /* in case read_file needs to change it */ in testimage() 3397 output.opts = opts; in testimage() [all …]
|
/AliOS-Things-master/components/py_engine/engine/extmod/ |
A D | moduwebsocket.c | 51 byte opts; member 70 o->opts = FRAME_TXT; in websocket_make_new() 72 o->opts |= BLOCKING_WRITE; in websocket_make_new() 222 byte header[4] = {0x80 | (self->opts & FRAME_OPCODE_MASK)}; in websocket_write() 235 if (self->opts & BLOCKING_WRITE) { in websocket_write() 246 if (self->opts & BLOCKING_WRITE) { in websocket_write() 268 int cur = self->opts & FRAME_OPCODE_MASK; in websocket_ioctl() 269 self->opts = (self->opts & ~FRAME_OPCODE_MASK) | (arg & FRAME_OPCODE_MASK); in websocket_ioctl()
|
A D | network_cyw43.c | 177 cyw43_wifi_scan_options_t opts; in network_cyw43_scan() local 178 opts.scan_type = args[ARG_passive].u_bool ? 1 : 0; in network_cyw43_scan() 180 opts.ssid_len = 0; in network_cyw43_scan() 184 opts.ssid_len = MIN(ssid.len, sizeof(opts.ssid)); in network_cyw43_scan() 185 memcpy(opts.ssid, ssid.buf, opts.ssid_len); in network_cyw43_scan() 188 memset(opts.bssid, 0xff, sizeof(opts.bssid)); in network_cyw43_scan() 192 memcpy(opts.bssid, bssid.buf, sizeof(opts.bssid)); in network_cyw43_scan() 196 int scan_res = cyw43_wifi_scan(self->cyw, &opts, MP_OBJ_TO_PTR(res), network_cyw43_scan_cb); in network_cyw43_scan()
|
/AliOS-Things-master/components/lwip/lwip2.0.0/netif/ppp/ |
A D | auth.c | 1594 else if (opts != 0) 1595 free_wordlist(opts); 1661 if (opts != NULL) 1720 else if (opts != 0) 1721 free_wordlist(opts); 1959 else if (opts != 0) in get_secret() 2021 else if (opts != NULL) 2341 if (opts != NULL) 2342 *opts = NULL; 2467 if (opts != NULL) [all …]
|
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/testpngs/ |
A D | makepngs.sh | 18 opts= 21 ${MAKEPNG} $opts $1 "$3" "$4" "$3-$4$2.png" 44 opts="--small";;&
|
/AliOS-Things-master/components/lwip/lwip2.0.0/core/ |
A D | tcp_out.c | 864 opts[0] = PP_HTONL(0x0101080A); in tcp_build_timestamp_option() 865 opts[1] = lwip_htonl(sys_now()); in tcp_build_timestamp_option() 963 u32_t *opts; in tcp_send_empty_ack() local 1009 opts += sacks_len; in tcp_send_empty_ack() 1233 u32_t *opts; in tcp_output_segment() local 1271 *opts = TCP_BUILD_MSS_OPTION(mss); in tcp_output_segment() 1272 opts += 1; in tcp_output_segment() 1279 opts += 3; in tcp_output_segment() 1284 tcp_build_wnd_scale_option(opts); in tcp_output_segment() 1285 opts += 1; in tcp_output_segment() [all …]
|
/AliOS-Things-master/components/freetype/src/tools/docmaker/ |
A D | docmaker.py | 47 opts, args = getopt.getopt( sys.argv[1:], \ 64 for opt in opts:
|
A D | docbeauty.py | 58 opts, args = getopt.getopt( sys.argv[1:], \ 74 for opt in opts:
|
/AliOS-Things-master/hardware/chip/haas1000/release/auto_build_tool/ |
A D | ota_gen_md5_bin.py | 59 opts, args = getopt.getopt(sys.argv[1:], 'o:m:h') 73 for opt, arg in opts:
|
/AliOS-Things-master/hardware/chip/rtl872xd/release/auto_build_tool/ |
A D | ota_gen_md5_bin.py | 59 opts, args = getopt.getopt(sys.argv[1:], 'o:m:h') 73 for opt, arg in opts:
|
/AliOS-Things-master/components/freetype/src/bdf/ |
A D | bdf.h | 89 (*bdf_options_callback_t)( bdf_options_t* opts, 276 bdf_options_t* opts,
|
A D | bdflib.c | 416 bdf_options_t* opts; member 1163 bdf_options_t* opts, in _bdf_set_default_spacing() argument 1185 font->spacing = opts->font_spacing; in _bdf_set_default_spacing() 1570 p->opts->keep_unencoded == 0 ) in _bdf_parse_glyphs() 1692 if ( p->opts->keep_unencoded != 0 ) in _bdf_parse_glyphs() 1877 if ( p->opts->correct_metrics != 0 ) in _bdf_parse_glyphs() 2093 if ( p->opts->keep_comments != 0 && p->font != 0 ) in _bdf_parse_start() 2158 p->font->spacing = p->opts->font_spacing; in _bdf_parse_start() 2372 bdf_options_t* opts, in bdf_load_font() argument 2386 p->opts = (bdf_options_t*)( ( opts != 0 ) ? opts : &_bdf_opts ); in bdf_load_font() [all …]
|
/AliOS-Things-master/components/SDL2/docs/ |
A D | README-emscripten.md | 21 …$ emcc -O2 --js-opts 0 -g4 testdraw2.c -I../include ../build/.libs/libSDL2.a ../build/libSDL2_test…
|
/AliOS-Things-master/components/ota/tools/ |
A D | ota_image_package.py | 49 opts, args = getopt.getopt(sys.argv[1:], "h", ["help"])
|
/AliOS-Things-master/components/SDL2/src/video/directfb/ |
A D | SDL_DirectFB_window.c | 528 DFBWindowOptions opts; in DirectFB_AdjustWindowSurface() local 530 SDL_DFB_CHECKERR(windata->dfbwin->GetOptions(windata->dfbwin, &opts)); in DirectFB_AdjustWindowSurface() 534 if (opts & DWOP_SCALE) in DirectFB_AdjustWindowSurface()
|