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

1 2 3 4 56 7

  /external/toybox/toys/other/
stat.c 173 int flagf = toys.optflags & FLAG_f, i;
176 if (toys.optflags&FLAG_t) {
189 if (toys.optflags & FLAG_c) format = TT.fmt;
192 int L = toys.optflags & FLAG_L;
timeout.c 42 if (toys.optflags & FLAG_v)
uptime.c 39 if (toys.optflags & FLAG_s) {
login.c 50 int hh = toys.optflags&FLAG_h, count, tty;
141 if (!(toys.optflags&FLAG_p)) {
makedevs.c 49 if (toys.optflags & FLAG_d && strcmp(TT.fname, "-")) {
switch_root.c 115 if (toys.optflags & FLAG_h) for (;;) wait(NULL);
bzcat.c 687 if (toys.optflags&FLAG_t) outfd = xopen("/dev/null", O_WRONLY);
688 else if ((fd || strcmp(name, "-")) && !(toys.optflags&FLAG_c)) {
689 if (toys.optflags&FLAG_k) {
700 if (toys.optflags&FLAG_v) printf("%s:", name);
702 if (toys.optflags&FLAG_v) {
709 if (toys.optflags&FLAG_k) {
vmstat.c 80 unsigned loop, rows = (toys.optflags & FLAG_n) ? 0 : 25,
  /external/toybox/toys/posix/
nl.c 89 REG_NOSUB | (toys.optflags&FLAG_E)*REG_EXTENDED);
date.c 184 ((toys.optflags & FLAG_u) ? gmtime_r : localtime_r)(&ts.tv_sec, &tm);
199 int u = toys.optflags & FLAG_u;
sed.c 600 if (line && !(toys.optflags & FLAG_n)) emit(line, len, eol);
627 int i = toys.optflags & FLAG_i;
784 xregcomp((void *)reg, s, (toys.optflags & FLAG_r)*REG_EXTENDED);
878 ((toys.optflags & FLAG_r)*REG_EXTENDED)|((command->sflags&1)*REG_ICASE));
999 if (toys.optflags & FLAG_version) {
1005 if (toys.optflags&FLAG_help) help_exit(0);
    [all...]
xargs.c 116 if (!(toys.optflags & FLAG_0)) TT.delim = '\n';
  /external/toybox/toys/net/
microcom.c 97 if (!(toys.optflags & FLAG_X)) {
  /external/toybox/toys/pending/
tftp.c 429 if (toys.optflags & FLAG_r) {
430 if (!(toys.optflags & FLAG_l)) {
434 } else if (toys.optflags & FLAG_l) TT.remote_file = TT.local_file;
452 if (toys.optflags & FLAG_g) file_get();
453 if (toys.optflags & FLAG_p) file_put();
crond.c 632 TT.flagd = (toys.optflags & FLAG_d);
636 if (!(toys.optflags & (FLAG_f | FLAG_b))) toys.optflags |= FLAG_b;
637 if (!(toys.optflags & (FLAG_S | FLAG_L))) toys.optflags |= FLAG_S;
639 if ((toys.optflags & FLAG_c)
644 if (toys.optflags & FLAG_b) daemon(0,0);
route.c 140 (toys.optflags & FLAG_e)? " MSS Window irtt" : "Metric Ref Use");
150 if (!dest && !(toys.optflags & FLAG_n)) strcpy( destip, "default");
153 if (!gate && !(toys.optflags & FLAG_n)) strcpy( gateip, "*");
162 if (toys.optflags & FLAG_e) xprintf("%5d %-5d %6d %s\n", mss, win, irtt, iface);
userdel.c 109 if (toys.optflags & FLAG_r) {
host.c 70 int verbose=(toys.optflags & (FLAG_a|FLAG_v)), type,
80 if (!TT.type_str && (toys.optflags & FLAG_a)) TT.type_str = "255";
last.c 95 if (toys.optflags & FLAG_f) file = TT.file;
97 pwidth = (toys.optflags & FLAG_W) ? 46 : 16;
tftpd.c 105 else fd = open(file, ((toys.optflags & FLAG_c) ?
267 || ((opcode == TFTPD_OP_WRQ) && (toys.optflags & FLAG_r))) {
mdev.c 227 if (toys.optflags) {
wget.c 137 if (!(toys.optflags & FLAG_f)) help_exit("no filename");
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...]
  /external/syslinux/core/lwip/src/core/
tcp_out.c 150 * @param optflags options to include in TCP header
156 tcp_create_segment(struct tcp_pcb *pcb, struct pbuf *p, u8_t flags, u32_t seqno, u8_t optflags)
159 u8_t optlen = LWIP_TCP_OPT_LENGTH(optflags);
166 seg->flags = optflags;
176 /* check optflags */
177 LWIP_ASSERT("invalid optflags passed: TF_SEG_DATA_CHECKSUMMED",
178 (optflags & TF_SEG_DATA_CHECKSUMMED) == 0);
358 u8_t optflags = 0; local
388 optflags = TF_SEG_OPTS_TS;
581 if ((seg = tcp_create_segment(pcb, p, 0, pcb->snd_lbb + pos, optflags)) == NULL)
719 u8_t optflags = 0; local
    [all...]
  /external/toybox/
toys.h 105 unsigned long long optflags; // Command line option flags from get_optflags() member in struct:toy_context

Completed in 300 milliseconds

1 2 3 4 56 7