Searched refs:WARN_ONLY (Results 1 – 13 of 13) sorted by relevance
/external/toybox/lib/ |
D | portability.c | 38 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()
|
D | xwrap.c | 367 int fd = open(path, (flags^O_CLOEXEC)&~WARN_ONLY, mode); in xcreate_stdio() 369 if (fd == -1) ((mode&WARN_ONLY) ? perror_msg_raw : perror_exit_raw)(path); in xcreate_stdio() 447 return xopen(path, flags^WARN_ONLY); in openro() 453 return openro(path, O_RDONLY|WARN_ONLY); in xopenro()
|
D | lib.c | 651 int fd, failok = !(flags&WARN_ONLY); in loopfiles_rw() 653 flags &= ~WARN_ONLY; in loopfiles_rw() 674 loopfiles_rw(argv, O_RDONLY|O_CLOEXEC|WARN_ONLY, 0, function); in loopfiles()
|
D | lib.h | 112 #define WARN_ONLY (1<<31) macro
|
/external/toybox/toys/other/ |
D | fsync.c | 31 loopfiles_rw(toys.optargs, O_RDONLY|O_NOATIME|O_NOCTTY|O_CLOEXEC|WARN_ONLY, in fsync_main()
|
D | truncate.c | 63 loopfiles_rw(toys.optargs, O_WRONLY|O_CLOEXEC|(cr ? O_CREAT|WARN_ONLY : 0), in truncate_main()
|
/external/toybox/toys/posix/ |
D | tee.c | 52 O_RDWR|O_CREAT|WARN_ONLY|(FLAG(a)?O_APPEND:O_TRUNC), in tee_main()
|
D | cmp.c | 81 loopfiles_rw(toys.optargs, O_CLOEXEC|(WARN_ONLY*!(toys.optflags&FLAG_s)), 0, in cmp_main()
|
D | tail.c | 244 loopfiles_rw(args, O_RDONLY|WARN_ONLY|(O_CLOEXEC*!FLAG(f)), 0, do_tail); in tail_main()
|
D | grep.c | 499 } else loopfiles_rw(ss, O_RDONLY|WARN_ONLY, 0, do_grep); in grep_main()
|
D | sed.c | 1041 loopfiles_rw(args, O_RDONLY|WARN_ONLY, 0, do_sed_file); in sed_main()
|
/external/toybox/toys/lsb/ |
D | mktemp.c | 60 if (!xgetrandom(&rr, sizeof(rr), WARN_ONLY)) {
|
/external/toybox/toys/pending/ |
D | gzip.c | 141 O_CREAT|O_WRONLY|WARN_ONLY|(O_EXCL*!(toys.optflags&FLAG_f)), sb.st_mode); in do_gzip()
|