/third_party/alsa-utils/axfer/ |
H A D | main.c | 89 } long_opts[] = { in decide_subcmd() local 110 for (i = 0; i < (int)ARRAY_SIZE(long_opts); ++i) { in decide_subcmd() 112 if (!strcmp(long_opts[i].name, argv[j])) { in decide_subcmd() 113 *subcmd = long_opts[i].subcmd; in decide_subcmd() 145 } long_opts[] = { in decide_direction() local 164 for (i = 0; i < (int)ARRAY_SIZE(long_opts); ++i) { in decide_direction() 166 if (!strcmp(long_opts[i].name, argv[j])) { in decide_direction() 167 *direction = long_opts[i].direction; in decide_direction()
|
H A D | xfer-options.c | 262 static const struct option long_opts[] = { in xfer_options_parse_args() local 304 l_opts = calloc(ARRAY_SIZE(long_opts) * data->l_opts_count + 1, in xfer_options_parse_args() 310 memcpy(l_opts, long_opts, ARRAY_SIZE(long_opts) * sizeof(*l_opts)); in xfer_options_parse_args() 311 memcpy(&l_opts[ARRAY_SIZE(long_opts)], data->l_opts, in xfer_options_parse_args()
|
/third_party/python/Lib/distutils/ |
H A D | fancy_getopt.py | 71 self.long_opts = [] 138 self.long_opts = [] 165 self.long_opts.append(long) 182 self.long_opts[-1] = long # XXX redundant?! 233 opts, args = getopt.getopt(args, short_opts, self.long_opts)
|
/third_party/littlefs/runners/ |
H A D | test_runner.c | 1991 const struct option long_opts[] = { variable 2056 int c = getopt_long(argc, argv, short_opts, long_opts, NULL); in main() 2065 while (long_opts[i].name) { in main() 2067 if (long_opts[i].has_arg == no_argument) { in main() 2068 if (long_opts[i].val >= '0' && long_opts[i].val < 'z') { in main() 2070 long_opts[i].val, in main() 2071 long_opts[i].name); in main() 2074 long_opts[i].name); in main() 2077 if (long_opts[ in main() [all...] |
H A D | bench_runner.c | 1430 const struct option long_opts[] = { variable 1490 int c = getopt_long(argc, argv, short_opts, long_opts, NULL); in main() 1499 while (long_opts[i].name) { in main() 1501 if (long_opts[i].has_arg == no_argument) { in main() 1502 if (long_opts[i].val >= '0' && long_opts[i].val < 'z') { in main() 1504 long_opts[i].val, in main() 1505 long_opts[i].name); in main() 1508 long_opts[i].name); in main() 1511 if (long_opts[ in main() [all...] |
/third_party/selinux/secilc/ |
H A D | secil2conf.c | 78 static struct option long_opts[] = { in main() local 90 opt_char = getopt_long(argc, argv, "o:hvM:PQ", long_opts, &opt_index); in main()
|
H A D | secil2tree.c | 82 static struct option long_opts[] = { in main() local 94 opt_char = getopt_long(argc, argv, "o:hvPQA:", long_opts, &opt_index); in main()
|
H A D | secilc.c | 111 static struct option long_opts[] = { in main() local 133 opt_char = getopt_long(argc, argv, "o:f:U:hvt:M:PQDmNOc:GX:n", long_opts, &opt_index); in main()
|
/third_party/ltp/testcases/kernel/controllers/cpuset/cpuset_syscall_test/ |
H A D | cpuset_syscall_test.c | 65 const struct option long_opts[] = { variable 80 c = getopt_long(argc, argv, "", long_opts, NULL); in process_options()
|
/third_party/ltp/testcases/kernel/controllers/cpuset/cpuset_memory_test/ |
H A D | cpuset_memory_test.c | 72 const struct option long_opts[] = { variable 95 c = getopt_long(argc, argv, "s:k:", long_opts, NULL); in process_options()
|
/third_party/ltp/testcases/kernel/controllers/memcg/functional/ |
H A D | memcg_process.c | 48 static const struct option long_opts[] = { variable 68 while ((c = getopt_long(argc, argv, "k:s:", long_opts, NULL)) != -1) { in process_options()
|
/third_party/f2fs-tools/mkfs/ |
H A D | f2fs_format_main.c | 182 static const struct option long_opts[] = { in f2fs_parse_options() local 190 while ((option = getopt_long(argc,argv,option_string,long_opts,NULL)) != EOF) { in f2fs_parse_options()
|
/third_party/libcoap/include/coap3/ |
H A D | coap_option.h | 95 * mask contains a bit vector that indicates which fields in the long_opts[] 97 * correspond to the long option types that are stored in long_opts[] 103 uint16_t long_opts[COAP_OPT_FILTER_LONG]; member
|
/third_party/libcoap/src/ |
H A D | coap_option.c | 443 if (((of->mask & nr) > 0) && (of->long_opts[lindex] == number)) { in coap_option_filter_op() 480 of->long_opts[lindex - 1] = number; in coap_option_filter_op()
|
/third_party/python/Lib/ |
H A D | optparse.py | 355 long_opts = [self._long_opt_fmt % (lopt, metavar) 359 long_opts = option._long_opts 362 opts = short_opts + long_opts 364 opts = long_opts + short_opts
|
/third_party/libfuse/util/ |
H A D | fusermount.c | 1362 static const struct option long_opts[] = { in main() local 1380 while ((ch = getopt_long(argc, argv, "hVo:uzq", long_opts, in main()
|