Advertisement
ruberval

grep

Apr 19th, 2013
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.40 KB | None | 0 0
  1. bionic/libc/unistd/open.c:    if (flags & O_CREAT)
  2. bionic/libc/unistd/open.c:    if (flags & O_CREAT) {
  3. bionic/libc/unistd/open.c:            "*** open(O_CREAT) called without specifying a mode ***\n");
  4. bionic/libc/unistd/openat.c:    if (flags & O_CREAT)
  5. bionic/libc/unistd/openat.c:    if (flags & O_CREAT) {
  6. bionic/libc/unistd/openat.c:            "*** openat(O_CREAT) called without specifying a mode ***\n");
  7. bionic/libc/upstream-netbsd/libc/compat-43/creat.c: return(open(path, O_WRONLY|O_CREAT|O_TRUNC, mode));
  8. bionic/libc/include/fcntl.h:    __attribute__((__error__ ("called with O_CREAT, but missing mode")));
  9. bionic/libc/include/fcntl.h:        if ((flags & O_CREAT) && __builtin_va_arg_pack_len() == 0) {
  10. bionic/libc/include/fcntl.h:        if ((flags & O_CREAT) && __builtin_va_arg_pack_len() == 0) {
  11. bionic/libc/stdio/mktemp.c:             open(path, O_CREAT|O_EXCL|O_RDWR, 0600)) >= 0)
  12. bionic/libc/stdio/flags.c:      o = O_CREAT | O_TRUNC;
  13. bionic/libc/stdio/flags.c:      o = O_CREAT | O_APPEND;
  14. bionic/libc/bionic/cpuacct.c:    fd = open(buf, O_RDWR | O_CREAT, 0666);
  15. bionic/libc/bionic/cpuacct.c:        fd = open(buf, O_RDWR | O_CREAT, 0666);
  16. bionic/libc/kernel/common/asm-generic/fcntl.h:#ifndef O_CREAT
  17. bionic/libc/kernel/common/asm-generic/fcntl.h:#define O_CREAT 00000100  
  18. bionic/libc/kernel/common/linux/coda.h:#define C_O_CREAT 0x200
  19. bionic/libc/kernel/arch-mips/asm/fcntl.h:#define O_CREAT 0x0100
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement