HomeSort by relevance Sort by last modified time
    Searched refs:optflags (Results 126 - 140 of 140) sorted by null

1 2 3 4 56

  /external/toybox/toys/posix/
tail.c 218 if (!(toys.optflags&(FLAG_n|FLAG_c))) {
xargs.c 113 if (!(toys.optflags & FLAG_0)) TT.delim = '\n';
sed.c 624 if (line && !(toys.optflags & FLAG_n)) emit(line, len, eol);
674 int i = toys.optflags & FLAG_i;
807 xregcomp((void *)reg, s, (toys.optflags & FLAG_r)*REG_EXTENDED);
901 ((toys.optflags & FLAG_r)*REG_EXTENDED)|((corwin->sflags&1)*REG_ICASE));
1017 if (toys.optflags & FLAG_version) {
1045 if (!(toys.optflags & FLAG_i)) walk_pattern(0, 0);
find.c 187 recurse = DIRTREE_COMEAGAIN|(DIRTREE_SYMFOLLOW*!!(toys.optflags&FLAG_L));
535 dirtree_handle_callback(dirtree_start(ss[i], toys.optflags&(FLAG_H|FLAG_L)),
  /external/toybox/toys/pending/
fdisk.c 152 if (toys.optflags & FLAG_b) {
378 g_sectors = (toys.optflags & FLAG_S && TT.sectors)? TT.sectors : s? s : disk.sectors?disk.sectors : 63;
379 g_heads = (toys.optflags & FLAG_H && TT.heads)? TT.heads : h? h : disk.heads? disk.heads : 255;
382 if (!g_cylinders) g_cylinders = toys.optflags & FLAG_C? TT.cylinders : 0;
383 if ((g_cylinders > ONE_K) && !(toys.optflags & (FLAG_l | FLAG_S)))
    [all...]
ipcs.c 41 #define flag(x) (toys.optflags & FLAG_ ## x)
435 if (!(flag(m) || flag(s) || flag(q)) || flag(a)) toys.optflags |= (FLAG_m|FLAG_s|FLAG_q);
dhcp.c 74 #define flag_get(f,v,d) ((toys.optflags & f) ? v : d)
75 #define flag_chk(f) ((toys.optflags & f) ? 1 : 0)
    [all...]
dhcpd.c 42 #define flag_get(f,v,d) ((toys.optflags & (f)) ? (v) : (d))
43 #define flag_chk(f) ((toys.optflags & (f)) ? 1 : 0)
    [all...]
  /external/ceres-solver/scripts/
ceres-solver.spec 73 %define optflags ""
  /external/toybox/toys/lsb/
md5sum.c 237 printf((toys.optflags & FLAG_b) ? "\n" : " %s\n", name);
  /external/toybox/toys/other/
hexedit.c 176 int x, y, i, side = 0, key, ro = toys.optflags&FLAG_r,
ifconfig.c 301 display_ifconfig(sl->str, toys.optflags & FLAG_a, val);
328 if(!sl) display_ifconfig(ifre->ifr_name, toys.optflags & FLAG_a, 0);
  /external/iptables/iptables/
ip6tables.c 75 #define NUMBER_OF_OPT ARRAY_SIZE(optflags)
76 static const char optflags[] variable
314 optflags[i]);
325 optflags[i]);
333 for (ptr = optflags; option > 1; option >>= 1, ptr++);
    [all...]
iptables.c 72 #define NUMBER_OF_OPT ARRAY_SIZE(optflags)
73 static const char optflags[] variable
308 optflags[i]);
319 optflags[i]);
327 for (ptr = optflags; option > 1; option >>= 1, ptr++);
    [all...]
  /external/mksh/src/
Build.sh 487 optflags=-std-compile-opts
505 optflags=$i
537 optflags=-std-compile-opts
    [all...]

Completed in 473 milliseconds

1 2 3 4 56