Searched refs:WARN_ONLY (Results 1 – 16 of 16) sorted by relevance
/third_party/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()
|
/third_party/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 | 231 loopfiles_rw(args, O_RDONLY|WARN_ONLY|(O_CLOEXEC*!FLAG(f)), 0, do_tail); in tail_main()
|
D | grep.c | 500 } else loopfiles_rw(ss, O_RDONLY|WARN_ONLY, 0, do_grep); in grep_main()
|
D | sed.c | 1071 loopfiles_rw(args, O_RDONLY|WARN_ONLY, 0, do_sed_file); in sed_main()
|
D | tar.c | 492 WARN_ONLY|(ala & 07777)); in extract_to_disk()
|
/third_party/toybox/toys/lsb/ |
D | mktemp.c | 66 if (!xgetrandom(&rr, sizeof(rr), WARN_ONLY)) { in mktemp_main()
|
D | gzip.c | 136 ofd = xcreate(out, O_CREAT|O_WRONLY|WARN_ONLY|(O_EXCL*!FLAG(f)),sb.st_mode); in do_gzip()
|
/third_party/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 | 374 int fd = open(path, (flags^O_CLOEXEC)&~WARN_ONLY, mode); in xcreate_stdio() 376 if (fd == -1) ((mode&WARN_ONLY) ? perror_msg_raw : perror_exit_raw)(path); in xcreate_stdio() 454 return xopen(path, flags^WARN_ONLY); in openro() 460 return openro(path, O_RDONLY|WARN_ONLY); in xopenro()
|
D | lib.c | 662 int fd, failok = !(flags&WARN_ONLY); in loopfiles_rw() 664 flags &= ~WARN_ONLY; in loopfiles_rw() 685 loopfiles_rw(argv, O_RDONLY|O_CLOEXEC|WARN_ONLY, 0, function); in loopfiles() 699 loopfiles_rw(argv, O_RDONLY|WARN_ONLY, 0, loopfile_lines_bridge); in loopfiles_lines()
|
D | lib.h | 115 #define WARN_ONLY (1<<31) macro
|
/third_party/toybox/porting/liteos_a/lib/ |
D | lib.h | 116 #define WARN_ONLY (1<<31) macro
|
/third_party/toybox/toys/pending/ |
D | sh.c | 443 if (-1 == (fd = xcreate(sss, fd|WARN_ONLY, 777)) || hfd != dup2(fd, hfd)) { in run_command()
|