Home
last modified time | relevance | path

Searched refs:FLAG_d (Results 1 – 22 of 22) sorted by relevance

/external/toybox/generated/
Dflags.h34 #undef FLAG_d
76 #undef FLAG_d
350 #undef FLAG_d
375 #undef FLAG_d
397 #undef FLAG_d
426 #undef FLAG_d
444 #undef FLAG_d
472 #undef FLAG_d
531 #undef FLAG_d
661 #undef FLAG_d
[all …]
/external/toybox/toys/pending/
Dgzip.c131 if (!(toys.optflags&FLAG_d)) out_name = xmprintf("%s%s", arg, ".gz"); in do_gzip()
145 if (do_deflate(in_fd, out_fd, toys.optflags&FLAG_d, TT.level) && out_name) in do_gzip()
170 toys.optflags |= FLAG_d; in gunzip_main()
176 toys.optflags |= (FLAG_c|FLAG_d); in zcat_main()
Dtr.c40 if (toys.optflags & FLAG_d) in map_translation()
50 while (!(toys.optflags & FLAG_d) && set2 && TT.len1--) { //ignore set2 if -d present in map_translation()
222 if ((toys.optflags & FLAG_d) && (TT.map[(int)toybuf[i]] & 0x100)) continue; in print_map()
Darp.c233 if (((toys.optflags & FLAG_s) || toys.optflags & FLAG_d)) { in arp_main()
240 if ((toys.optflags & FLAG_d) && !delete_entry()) return; in arp_main()
Dtraceroute.c164 if ((toys.optflags & FLAG_d) && (setsockopt(sock,SOL_SOCKET, SO_DEBUG, in set_flag_dr()
Dcrond.c632 TT.flagd = (toys.optflags & FLAG_d); in crond_main()
/external/toybox/toys/other/
Dbase64.c51 if (!(toys.optflags & FLAG_d)) { in do_base64()
61 if (toys.optflags & FLAG_d) { in do_base64()
Dlosetup.c93 if (flags & (FLAG_c|FLAG_d)) {
175 char *file = (toys.optflags & (FLAG_d|FLAG_c)) ? NULL : toys.optargs[1]; in losetup_main()
Dswapon.c29 int flags = (toys.optflags&FLAG_d)*0x70000;
Dfsync.c25 if (((toys.optflags & FLAG_d) ? fdatasync(fd) : fsync(fd))) in do_fsync()
Dmountpoint.c62 if (toys.optflags & FLAG_d) in mountpoint_main()
Dmakedevs.c49 if (toys.optflags & FLAG_d && strcmp(TT.fname, "-")) {
Dlsattr.c176 else if (S_ISDIR(sb.st_mode) && !(toys.optflags & FLAG_d)) in lsattr_main()
/external/toybox/toys/lsb/
Dmktemp.c75 } else if ((toys.optflags & FLAG_d) ? !mkdtemp(template) : mkstemp(template) == -1) {
80 (toys.optflags & FLAG_d) ? "directory" : "file", TT.p, template);
Dpasswd.c64 if (!(myuid = getuid()) || !(toys.optflags&(FLAG_l|FLAG_u|FLAG_d))) { in passwd_main()
83 } else if (toys.optflags & FLAG_d) { in passwd_main()
/external/toybox/toys/posix/
Dls.c311 if (dt && S_ISDIR(dt->st.st_mode) && !dt->next && !(flags&(FLAG_d|FLAG_R))) in listfiles()
403 if (S_ISDIR(mode) && !indir->parent && !(flags & FLAG_d)) continue; in listfiles()
519 if ((flags & FLAG_d) || !S_ISDIR(sort[ul]->st.st_mode)) continue; in listfiles()
558 if (toys.optflags & FLAG_d) toys.optflags &= ~FLAG_R; in ls_main()
566 int sym = !(toys.optflags&(FLAG_l|FLAG_d|FLAG_F)) in ls_main()
Dcut.c217 if ((toys.optflags&(FLAG_d|FLAG_f|FLAG_F))==FLAG_d) in cut_main()
Dcp.c143 if (S_ISLNK(try->st.st_mode) && (flags & FLAG_d)) flags |= FLAG_r; in cp_node()
458 toys.optflags |= FLAG_d|FLAG_p|FLAG_R; in mv_main()
498 if (flags & FLAG_d) { in install_main()
Dpaste.c126 if (!(toys.optflags&FLAG_d)) TT.d = "\t"; in paste_main()
Dsort.c91 && !(flags&(FLAG_b|FLAG_d|FLAG_i|FLAG_bb))) return str; in get_key_data()
144 if (flags&FLAG_d) { in get_key_data()
Dod.c281 if (toys.optflags & FLAG_d) append_base("u2"); in od_main()
/external/toybox/toys/net/
Dftpget.c123 else if (toys.optflags & FLAG_d) ftp_line("DELE", toys.optargs[1], 250); in ftpget_main()