HomeSort by relevance Sort by last modified time
    Searched refs:O_APPEND (Results 1 - 25 of 263) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/toybox/toys/posix/
nohup.c 27 if (-1 == open("nohup.out", O_CREAT|O_APPEND|O_WRONLY,
33 xcreate(temp, O_CREAT|O_APPEND|O_WRONLY, 0600);
tee.c 52 O_RDWR|O_CREAT|WARN_ONLY|((toys.optflags & FLAG_a)?O_APPEND:O_TRUNC),
  /external/syslinux/com32/include/
fcntl.h 21 #define O_APPEND 02000
  /external/ltp/testcases/kernel/security/tomoyo/
tomoyo_rewrite_test.c 71 close(open(REWRITE_PATH, O_WRONLY | O_APPEND | O_CREAT, 0600));
81 show_prompt("open(O_WRONLY | O_APPEND)");
82 fd = open(REWRITE_PATH, O_WRONLY | O_APPEND);
97 show_prompt("open(O_WRONLY | O_TRUNC | O_APPEND)");
98 fd = open(REWRITE_PATH, O_WRONLY | O_TRUNC | O_APPEND);
105 fd = open(REWRITE_PATH, O_WRONLY | O_APPEND);
109 show_prompt("fcntl(F_SETFL, ~O_APPEND)");
110 show_result(fcntl(fd, F_SETFL, fcntl(fd, F_GETFL) & ~O_APPEND));
126 show_prompt("open(O_WRONLY | O_APPEND)");
127 fd = open(REWRITE_PATH, O_WRONLY | O_APPEND);
    [all...]
tomoyo_new_test.c 220 result = open("/tmp/testfile4", O_APPEND | O_RDONLY, 0600);
225 result = open("/tmp/testfile5", O_APPEND | O_CREAT | O_RDONLY, 0600);
230 result = open("/tmp/testfile6", O_APPEND | O_TRUNC | O_RDONLY, 0600);
236 O_APPEND | O_TRUNC | O_CREAT | O_RDONLY, 0600);
261 result = open("/tmp/testfile12", O_APPEND | O_WRONLY, 0600);
266 result = open("/tmp/testfile13", O_APPEND | O_CREAT | O_WRONLY, 0600);
271 result = open("/tmp/testfile14", O_APPEND | O_TRUNC | O_WRONLY, 0600);
277 O_APPEND | O_TRUNC | O_CREAT | O_WRONLY, 0600);
302 result = open("/tmp/testfile20", O_APPEND | O_RDWR, 0600);
307 result = open("/tmp/testfile21", O_APPEND | O_CREAT | O_RDWR, 0600)
    [all...]
  /external/syslinux/com32/lib/sys/
err_write.c 52 .fileflags = O_WRONLY | O_CREAT | O_TRUNC | O_APPEND,
null_write.c 51 .fileflags = O_WRONLY | O_CREAT | O_TRUNC | O_APPEND,
ansiserial_write.c 55 .fileflags = O_WRONLY | O_CREAT | O_TRUNC | O_APPEND,
rawcon_write.c 60 .fileflags = O_WRONLY | O_CREAT | O_TRUNC | O_APPEND,
serial_write.c 63 .fileflags = O_WRONLY | O_CREAT | O_TRUNC | O_APPEND,
zfopen.c 25 flags = O_WRONLY | O_CREAT | O_APPEND;
stdcon_write.c 80 .fileflags = O_WRONLY | O_CREAT | O_TRUNC | O_APPEND,
vesaserial_write.c 56 .fileflags = O_WRONLY | O_CREAT | O_TRUNC | O_APPEND,
  /external/ltp/testcases/kernel/syscalls/fcntl/
fcntl01.c 16 * 2. Checking F_SETFL cmd with each valid flag (O_NDELAY, O_APPEND).
111 if (fcntl(fd[2], F_SETFL, O_APPEND) == -1)
112 tst_resm(TFAIL | TERRNO, "fcntl(.., O_APPEND) failed");
115 if ((flags & (O_APPEND | O_WRONLY)) == 0)
117 flags, O_APPEND | O_WRONLY);
120 if (fcntl(fd[2], F_SETFL, O_NDELAY | O_APPEND) < 0)
121 tst_resm(TFAIL, "fcntl(.., O_NDELAY|O_APPEND) failed");
124 if ((flags & (O_NDELAY | O_APPEND | O_WRONLY)) == 0)
127 O_NDELAY | O_APPEND | O_SYNC | O_WRONLY);
fcntl08.c 67 TEST(fcntl(fd, F_SETFL, O_NDELAY | O_APPEND | O_NONBLOCK));
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
flags.c 67 o = O_CREAT | O_APPEND;
  /external/syslinux/com32/lib/
fopen.c 24 flags = O_WRONLY | O_CREAT | O_APPEND;
fopendev.c 24 flags = O_WRONLY | O_CREAT | O_APPEND;
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
fdopen.c 100 * O_APPEND bit set, assert __SAPP so that __swrite() will lseek to
103 if ((oflags & O_APPEND) && !(fdflags & O_APPEND))
flags.c 86 o = O_CREAT | O_APPEND;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/asm-generic/
fcntl.h 34 #ifndef O_APPEND
35 #define O_APPEND 00002000
  /bionic/libc/kernel/uapi/asm-mips/asm/
fcntl.h 22 #define O_APPEND 0x0008
  /external/kernel-headers/original/uapi/asm-mips/asm/
fcntl.h 14 #define O_APPEND 0x0008
  /external/libxml2/win32/wince/
wincecompat.h 22 #define O_APPEND 0x0008 /* writes done at eof */
  /external/oj-libjdwp/src/solaris/javavm/export/
jvm_md.h 75 #define JVM_O_O_APPEND O_APPEND

Completed in 529 milliseconds

1 2 3 4 5 6 7 8 91011