HomeSort by relevance Sort by last modified time
    Searched refs:optlist (Results 1 - 11 of 11) sorted by null

  /system/core/sh/
options.h 58 struct optent optlist[] = { variable in typeref:struct:optent
65 #define eflag optlist[0].val
67 #define fflag optlist[1].val
69 #define Iflag optlist[2].val
71 #define iflag optlist[3].val
73 #define mflag optlist[4].val
75 #define nflag optlist[5].val
77 #define sflag optlist[6].val
79 #define xflag optlist[7].val
81 #define vflag optlist[8].va
    [all...]
options.c 95 optlist[i].val = 2;
104 if (optlist[i].val == 2)
105 optlist[i].val = 0;
203 if (val && (flag = optlist[i].opt_set)) {
206 if (optlist[j].opt_set == flag)
207 optlist[j].val = 0;
209 optlist[i].val = val;
211 if (&optlist[i].val == &debug)
224 out1fmt("%-16s%s\n", optlist[i].name,
225 optlist[i].val ? "on" : "off")
    [all...]
expand.c 863 for (i = 0; optlist[i].name; i++) {
864 if (optlist[i].val)
865 STPUTC(optlist[i].letter, expdest);
init.c 1064 for (i = 0; optlist[i].name; i++)
1065 optlist[i].val = 0;
  /bionic/libc/kernel/tools/
find_users.py 31 optlist, args = getopt.getopt( sys.argv[1:], 'v' )
37 for opt, arg in optlist:
update_all.py 28 optlist, args = getopt.getopt( sys.argv[1:], '' )
34 if len(optlist) > 0 or len(args) > 1:
clean_header.py 105 optlist, args = getopt.getopt( sys.argv[1:], 'uvk:d:' )
111 for opt, arg in optlist:
find_headers.py 39 optlist, args = getopt.getopt( sys.argv[1:], 'vc:d:a:k:' )
45 for opt, arg in optlist:
  /external/openssh/
mdoc2man.awk 28 optlist=0
309 oldoptlist=optlist
311 optlist=1
313 optlist=2
316 optlist=3
318 optlist=4
320 optlist=1
323 optlist=oldoptlist
331 } else if(match(words[w],"^It$")&&optlist) {
332 if(optlist==1
    [all...]
  /system/extras/tests/sdcard/
plot_sdcard.py 309 (optlist, args) = getopt.getopt(argv[1:],
315 for flag, val in optlist:
  /external/e2fsprogs/misc/
fsck.c 814 static int opt_in_list(const char *opt, char *optlist)
818 if (!optlist)
820 list = string_copy(optlist);

Completed in 256 milliseconds