HomeSort by relevance Sort by last modified time
    Searched defs:longopts (Results 1 - 17 of 17) sorted by null

  /hardware/bsp/intel/peripheral/displays/SparkFun_OLED/
SparkFunOLED.cpp 39 // Be sure to keep the options for longopts and shortopts in the same order
41 static struct option longopts[] = { variable in typeref:struct:option
54 for (int i = 0, j = 0; longopts[i].name; i++, j++) {
57 printf(" --%-6s or -%c\n", longopts[i].name, shortopts[j]);
68 while ((ch = getopt_long(argc, argv, shortopts, longopts, NULL)) != -1) {
  /hardware/bsp/intel/peripheral/examples/mraa/gpio_output/
OutputGPIO.cpp 44 // Be sure to keep the options for longopts and shortopts in the same order
46 static struct option longopts[] = { variable in typeref:struct:option
60 for (int i = 0, j = 0; longopts[i].name; i++, j++) {
64 longopts[i].name,
78 while ((ch = getopt_long(argc, argv, shortopts, longopts, NULL)) != -1) {
  /hardware/bsp/intel/peripheral/displays/Grove_LCD_RGB/
groveLCD.cpp 42 // Be sure to keep the options for longopts and shortopts in the same order
44 static struct option longopts[] = { variable in typeref:struct:option
59 for (int i = 0, j = 0; longopts[i].name; i++, j++) {
62 printf(" --%-6s or -%c\n", longopts[i].name, shortopts[j]);
74 while ((ch = getopt_long(argc, argv, shortopts, longopts, NULL)) != -1) {
  /external/harfbuzz_ng/util/
hb-fc-list.c 55 const struct option longopts[] = { variable in typeref:struct:option
115 while ((c = getopt_long (argc, argv, "vf:qVh", longopts, NULL)) != -1)
  /system/extras/kexec_tools/
kexecload.c 80 const struct option longopts[] = { local
89 c = getopt_long(argc, argv, "s:th", longopts, NULL);
  /build/tools/makeparallel/
makeparallel.cpp 115 const static option longopts[] = { local
122 longopts, &longopt_index);
  /frameworks/base/tools/obbtool/
Main.cpp 36 static const struct option longopts[] = { variable in typeref:struct:option
194 while ((opt = getopt_long(argc, argv, ADD_OPTS, longopts, &option_index)) != -1) {
197 if (longopts[option_index].flag)
199 fprintf(stderr, "'%s' requires an argument\n", longopts[option_index].name);
  /system/extras/iotop/
iotop.cpp 112 static const option longopts[] = { local
122 c = getopt_long(argc, argv, "ad:hm:n:Ps:", longopts, NULL);
  /external/liblzf/
lzf.c 68 struct option longopts[] = { variable in typeref:struct:option
474 while ((optc = getopt_long (argc, argv, "cdfhvb:", longopts, 0)) != -1)
  /external/toybox/lib/
args.c 113 struct longopts { struct
114 struct longopts *next;
126 struct longopts *longopts; member in struct:getoptflagstate
188 struct longopts *lo;
192 for (lo = gof->longopts; lo->opt != opt; lo = lo->next);
270 // longopts only come at the start of the string.)
273 struct longopts *lo;
279 // init a new struct longopts
280 lo = xmalloc(sizeof(struct longopts));
    [all...]
  /toolchain/binutils/binutils-2.25/ld/
lexsup.c 540 struct option *longopts; local
546 longopts = (struct option *)
547 xmalloc (sizeof (*longopts) * (OPTION_COUNT + 1));
586 longopts[il] = ld_options[i].opt;
592 longopts[il].name = NULL;
595 ldemul_add_options (is, &shortopts, il, &longopts, irl, &really_longopts);
661 optc = getopt_long_only (argc, argv, shortopts, longopts, &longind);
    [all...]
  /system/extras/librank/
librank.c 240 const struct option longopts[] = { local
256 c = getopt_long(argc, argv, "acChkm:pP:uvrsR", longopts, NULL);
  /external/iproute2/misc/
ifstat.c 665 static const struct option longopts[] = { variable in typeref:struct:option
690 longopts, NULL)) != EOF) {
nstat.c 505 static const struct option longopts[] = { variable in typeref:struct:option
529 longopts, NULL)) != EOF) {
  /external/tcpdump/
tcpdump.c 693 static const struct option longopts[] = { variable in typeref:struct:option
1076 (op = getopt_long(argc, argv, SHORTOPTS, longopts, NULL)) != -1)
    [all...]
  /system/core/fastboot/
fastboot.cpp 1261 const struct option longopts[] = { local
    [all...]
  /toolchain/binutils/binutils-2.25/gas/
as.c 425 struct option *longopts;
542 longopts = (struct option *) xmalloc (sizeof (std_longopts)
544 memcpy (longopts, std_longopts, sizeof (std_longopts));
545 memcpy (((char *) longopts) + sizeof (std_longopts), md_longopts, md_longopts_size);
546 memset (((char *) longopts) + sizeof (std_longopts) + md_longopts_size,
564 int optc = getopt_long_only (old_argc, old_argv, shortopts, longopts,
979 free (longopts);
424 struct option *longopts; local
    [all...]

Completed in 1275 milliseconds