/third_party/toybox/lib/ |
D | commas.c | 64 int comma_scan(char *optlist, char *opt, int clean) in comma_scan() argument 68 if (optlist) for (;;) { in comma_scan() 69 char *s = comma_iterate(&optlist, &len); in comma_scan() 76 if (optlist) memmove(s, optlist, strlen(optlist)+1); in comma_scan() 86 int comma_scanall(char *optlist, char *scanlist) in comma_scanall() argument 93 i = comma_scan(optlist, s, 0); in comma_scanall() 103 int comma_remove(char *optlist, char *opt) in comma_remove() argument 107 if (optlist) for (;;) { in comma_remove() 108 char *s = comma_iterate(&optlist, &len); in comma_remove() 113 if (optlist) memmove(s, optlist, strlen(optlist)+1); in comma_remove()
|
D | lib.h | 381 int comma_scan(char *optlist, char *opt, int clean); 382 int comma_scanall(char *optlist, char *scanlist); 383 int comma_remove(char *optlist, char *opt);
|
/third_party/libcoap/examples/riot/examples_libcoap_client/ |
D | client-coap.c | 43 static coap_optlist_t *optlist = NULL; variable 219 len = coap_uri_into_options(&uri, &dst, &optlist, 1, buf, sizeof(buf)); in client_coap_init() 226 if (optlist) { in client_coap_init() 227 res = coap_add_optlist_pdu(pdu, &optlist); in client_coap_init() 246 coap_delete_optlist(optlist); in client_coap_init() 247 optlist = NULL; in client_coap_init()
|
/third_party/libcoap/examples/lwip/ |
D | client-coap.c | 29 static coap_optlist_t *optlist = NULL; variable 214 len = coap_uri_into_options(&uri, &dst, &optlist, 1, buf, sizeof(buf)); in client_coap_init() 218 if (optlist) { in client_coap_init() 219 res = coap_add_optlist_pdu(pdu, &optlist); in client_coap_init() 230 coap_delete_optlist(optlist); in client_coap_finished()
|
/third_party/toybox/toys/posix/ |
D | sort.c | 334 char *temp2, *optlist; in sort_main() local 345 optlist = toys.which->options; in sort_main() 346 temp2 = strchr(optlist, *temp); in sort_main() 347 flag = (1<<(optlist-temp2+strlen(optlist)-1)); in sort_main()
|
/third_party/toybox/toys/pending/ |
D | traceroute.c | 539 unsigned char optlist[MAX_IPOPTLEN]; in traceroute_main() local 545 optlist[0] = IPOPT_NOP; in traceroute_main() 546 optlist[1] = IPOPT_LSRR;// loose source route option in traceroute_main() 548 optlist[2] = size + 3; in traceroute_main() 549 optlist[3] = IPOPT_MINOFF; in traceroute_main() 550 memcpy(optlist + 4, TT.gw_list, size); in traceroute_main() 553 (char *)optlist, size + sizeof(TT.gw_list[0])) < 0) in traceroute_main()
|
/third_party/libcoap/tests/ |
D | test_pdu.c | 719 coap_optlist_t *optlist = NULL; in t_encode_pdu12() local 732 coap_insert_optlist(&optlist, coap_new_optlist(opt_num[n], in t_encode_pdu12() 735 coap_add_optlist_pdu(pdu, &optlist); in t_encode_pdu12() 749 coap_delete_optlist(optlist); in t_encode_pdu12() 754 coap_optlist_t *optlist = NULL; in t_encode_pdu13() local 767 coap_insert_optlist(&optlist, coap_new_optlist(opt_num[n], in t_encode_pdu13() 770 coap_add_optlist_pdu(pdu, &optlist); in t_encode_pdu13() 784 coap_delete_optlist(optlist); in t_encode_pdu13() 789 coap_optlist_t *optlist = NULL; in t_encode_pdu14() local 802 coap_insert_optlist(&optlist, coap_new_optlist(opt_num[n], in t_encode_pdu14() [all …]
|
/third_party/libcoap/examples/ |
D | coap-client.c | 71 static coap_optlist_t *optlist = NULL; variable 685 coap_insert_optlist(&optlist, node); in cmdline_content_type() 701 coap_insert_optlist(&optlist, node); in cmdline_hop_limit() 833 coap_insert_optlist(&optlist, in cmdline_uri() 929 coap_insert_optlist(&optlist, coap_new_optlist(opt, opt_length, buf)); in set_blocksize() 938 coap_insert_optlist(&optlist, in cmdline_subscribe() 1025 coap_insert_optlist(&optlist, in cmdline_option() 1028 coap_insert_optlist(&optlist, in cmdline_option() 1870 &optlist, create_uri_opts, in main() 1889 if (!(pdu = coap_new_request(ctx, session, method, &optlist, data, in main() [all …]
|
D | coap-server.c | 998 coap_optlist_t *optlist = NULL; in hnd_proxy_uri() local 1106 if (coap_uri_into_options(&uri, dst, &optlist, 1, in hnd_proxy_uri() 1140 coap_insert_optlist(&optlist, in hnd_proxy_uri() 1149 coap_add_optlist_pdu(pdu, &optlist); in hnd_proxy_uri() 1150 coap_delete_optlist(optlist); in hnd_proxy_uri() 1606 coap_optlist_t *optlist = NULL; in proxy_response_handler() local 1688 coap_insert_optlist(&optlist, in proxy_response_handler() 1695 coap_add_optlist_pdu(pdu, &optlist); in proxy_response_handler() 1696 coap_delete_optlist(optlist); in proxy_response_handler()
|
/third_party/libcoap/man/ |
D | coap_uri.txt.in | 167 coap_optlist_t *optlist = NULL; 224 res = coap_uri_into_options(&uri, dst, &optlist, 1, buf, sizeof(buf)); 229 if (optlist) { 230 res = coap_add_optlist_pdu(pdu, &optlist); 231 coap_delete_optlist(optlist);
|
D | coap_pdu_setup.txt.in | 377 The *coap_delete_optlist*() function deletes and frees off all the optlist
|
/third_party/python/Tools/scripts/ |
D | objgraph.py | 155 optlist, args = getopt.getopt(sys.argv[1:], 'cdu') 168 for opt, void in optlist:
|
/third_party/icu/tools/scripts/ |
D | uconfig_vars_test.py | 184 optlist, _ = getopt.getopt(sys.argv[1:], "pu") 185 for o, _ in optlist:
|
/third_party/python/Doc/library/ |
D | getopt.rst | 99 >>> optlist, args = getopt.getopt(args, 'abc:d:') 100 >>> optlist 111 >>> optlist, args = getopt.getopt(args, 'x', [ 113 >>> optlist
|
/third_party/toybox/porting/liteos_a/toys/lsb/ |
D | mount.c | 56 struct arg_list *optlist; in GLOBALS() 291 for (o = TT.optlist; o; o = o->next) comma_collate(&opts, o->arg); in mount_main()
|
/third_party/toybox/toys/lsb/ |
D | mount.c | 60 struct arg_list *optlist; in GLOBALS() 304 for (o = TT.optlist; o; o = o->next) comma_collate(&opts, o->arg); in mount_main()
|
/third_party/toybox/porting/liteos_a/lib/ |
D | lib.h | 373 int comma_scan(char *optlist, char *opt, int clean); 374 int comma_scanall(char *optlist, char *scanlist); 375 int comma_remove(char *optlist, char *opt);
|
/third_party/libcoap/include/coap3/ |
D | coap_option.h | 374 coap_optlist_t *optlist);
|
/third_party/libcoap/src/ |
D | coap_mem.c | 282 coap_optlist_t optlist; member
|
/third_party/python/Lib/ |
D | imaplib.py | 1554 optlist, args = getopt.getopt(sys.argv[1:], 'd:s:') variable 1556 optlist, args = (), () variable 1559 for opt,val in optlist:
|
/third_party/toybox/generated/ |
D | globals.h | 101 struct arg_list *optlist; member
|