Home
last modified time | relevance | path

Searched refs:optstr (Results 1 – 5 of 5) sorted by relevance

/external/qemu/util/
Dqemu-sockets-android.c371 const char *optstr, *h; in inet_parse() local
413 optstr = str + pos; in inet_parse()
414 h = strstr(optstr, ",to="); in inet_parse()
417 if (strstr(optstr, ",ipv4")) in inet_parse()
419 if (strstr(optstr, ",ipv6")) in inet_parse()
422 h = strstr(optstr, ",socket="); in inet_parse()
447 char *optstr; in inet_listen() local
454 optstr = strchr(str, ','); in inet_listen()
459 optstr ? optstr : ""); in inet_listen()
464 optstr ? optstr : ""); in inet_listen()
[all …]
Dqemu-sockets.c426 const char *optstr, *h; in inet_parse() local
468 optstr = str + pos; in inet_parse()
469 h = strstr(optstr, ",to="); in inet_parse()
472 if (strstr(optstr, ",ipv4")) in inet_parse()
474 if (strstr(optstr, ",ipv6")) in inet_parse()
477 h = strstr(optstr, ",socket="); in inet_parse()
502 char *optstr; in inet_listen() local
509 optstr = strchr(str, ','); in inet_listen()
514 optstr ? optstr : ""); in inet_listen()
519 optstr ? optstr : ""); in inet_listen()
[all …]
/external/qemu/
Dblockdev.c46 char optstr[1024]; in drive_add() local
50 vsnprintf(optstr, sizeof(optstr), fmt, ap); in drive_add()
53 opts = qemu_opts_parse(qemu_find_opts("drive"), optstr, 0); in drive_add()
/external/mdnsresponder/Clients/
Ddns-sd.c892 static int getfirstoption(int argc, char **argv, const char *optstr, int *pOptInd) in getfirstoption() argument
900 NULL != strchr(optstr, argv[i][1])) in getfirstoption()
910 int o = getopt(argc, (char *const *)argv, optstr);
/external/lldb/test/
Ddotest.py423 …X = lambda optstr, helpstr, **kwargs: group.add_argument(optstr, help=helpstr, action='store_true'… argument