Home
last modified time | relevance | path

Searched refs:WARN_ONLY (Results 1 – 15 of 15) sorted by relevance

/external/toybox/toys/other/
Dfsync.c31 loopfiles_rw(toys.optargs, O_RDONLY|O_NOATIME|O_NOCTTY|O_CLOEXEC|WARN_ONLY, in fsync_main()
Dtruncate.c63 loopfiles_rw(toys.optargs, O_WRONLY|O_CLOEXEC|(cr ? O_CREAT|WARN_ONLY : 0), in truncate_main()
/external/toybox/toys/posix/
Dtee.c52 O_RDWR|O_CREAT|WARN_ONLY|(FLAG(a)?O_APPEND:O_TRUNC), in tee_main()
Dcmp.c81 loopfiles_rw(toys.optargs, O_CLOEXEC|(WARN_ONLY*!(toys.optflags&FLAG_s)), 0, in cmp_main()
Dtail.c231 loopfiles_rw(args, O_RDONLY|WARN_ONLY|(O_CLOEXEC*!FLAG(f)), 0, do_tail); in tail_main()
Dgrep.c500 } else loopfiles_rw(ss, O_RDONLY|WARN_ONLY, 0, do_grep); in grep_main()
Dsed.c1071 loopfiles_rw(args, O_RDONLY|WARN_ONLY, 0, do_sed_file); in sed_main()
Dtar.c499 WARN_ONLY|(ala & 07777)); in extract_to_disk()
/external/toybox/toys/lsb/
Dmktemp.c66 if (!xgetrandom(&rr, sizeof(rr), WARN_ONLY)) { in mktemp_main()
Dgzip.c137 ofd = xcreate(out, O_CREAT|O_WRONLY|WARN_ONLY|(O_EXCL*!FLAG(f)),sb.st_mode); in do_gzip()
/external/toybox/lib/
Dportability.c38 if (buflen == getrandom(buf, buflen, flags&~WARN_ONLY)) return 1; in xgetrandom()
39 if (errno!=ENOSYS && !(flags&WARN_ONLY)) perror_exit("getrandom"); in xgetrandom()
41 fd = xopen(flags ? "/dev/random" : "/dev/urandom",O_RDONLY|(flags&WARN_ONLY)); in xgetrandom()
Dxwrap.c381 int fd = open(path, (flags^O_CLOEXEC)&~WARN_ONLY, mode); in xcreate_stdio()
383 if (fd == -1) ((mode&WARN_ONLY) ? perror_msg_raw : perror_exit_raw)(path); in xcreate_stdio()
461 return xopen(path, flags^WARN_ONLY); in openro()
467 return openro(path, O_RDONLY|WARN_ONLY); in xopenro()
Dlib.c670 int fd, failok = !(flags&WARN_ONLY); in loopfiles_rw()
672 flags &= ~WARN_ONLY; in loopfiles_rw()
693 loopfiles_rw(argv, O_RDONLY|O_CLOEXEC|WARN_ONLY, 0, function); in loopfiles()
707 loopfiles_rw(argv, O_RDONLY|WARN_ONLY, 0, loopfile_lines_bridge); in loopfiles_lines()
Dlib.h115 #define WARN_ONLY (1<<31) macro
/external/toybox/toys/pending/
Dsh.c870 if (-1 == (from = xcreate(sss, from|WARN_ONLY, 0666))) break; in expand_redir()