Home
last modified time | relevance | path

Searched refs:O_APPEND (Results 1 – 25 of 129) sorted by relevance

123456

/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/posix/
H A Dfcntl.d162 enum O_APPEND = 0x400; // octal 02000 in version() local
189 enum O_APPEND = 0x00008; // octal 010 in version() local
213 enum O_APPEND = 0x0008; in version() local
240 enum O_APPEND = 0x400; // octal 02000 in version() local
267 enum O_APPEND = 0x400; // octal 02000 in version() local
294 enum O_APPEND = 0x400; // octal 02000 in version() local
321 enum O_APPEND = 0x8; in version() local
348 enum O_APPEND = 0x400; // octal 02000 in version() local
430 enum O_APPEND = 0x0008; in version() local
478 enum O_APPEND = 0x0008;
[all …]
/netbsd-src/lib/libc/stdio/
H A Dfdopen.c114 if ((oflags & O_APPEND) && !(fdflags & O_APPEND)) in __weak_alias()
H A Dflags.c81 o = O_CREAT | O_APPEND; in __sflags()
H A Dfopen.c98 if (oflags & O_APPEND) in fopen()
H A Dgettemp.c66 (oflags & ~(O_APPEND | O_DIRECT | O_SHLOCK | O_EXLOCK | O_SYNC | in GETTEMP()
H A Dfreopen.c185 if (oflags & O_APPEND) in freopen()
/netbsd-src/sys/sys/
H A Dfcntl.h82 #define O_APPEND 0x00000008 /* set append mode */ macro
133 #define O_MASK (O_ACCMODE|O_NONBLOCK|O_APPEND|O_SHLOCK|O_EXLOCK|\
158 #define FAPPEND O_APPEND /* kernel/compat */
/netbsd-src/usr.bin/nohup/
H A Dnohup.c117 if ((fd = open(p, O_RDWR|O_CREAT|O_APPEND, S_IRUSR|S_IWUSR)) >= 0) in dofile()
123 if ((fd = open(p = path, O_RDWR|O_CREAT|O_APPEND, S_IRUSR|S_IWUSR)) >= 0) in dofile()
/netbsd-src/libexec/ftpd/
H A Dlogwtmp.c77 if ((fd = open(wf, O_WRONLY|O_APPEND, 0)) == -1) in ftpd_initwtmp()
113 if ((fdx = open(wf, O_WRONLY|O_APPEND, 0)) == -1) in ftpd_initwtmpx()
/netbsd-src/tests/lib/libc/stdlib/
H A Dt_mktemp.c195 O_APPEND, O_DIRECT, in ATF_TC_BODY()
230 O_APPEND, O_DIRECT, in ATF_TC_BODY()
/netbsd-src/lib/libutil/
H A Dlogin.c66 if ((fd = open(_PATH_WTMP, O_WRONLY|O_APPEND, 0)) >= 0) { in login()
H A Dlogwtmp.c64 if ((fd = open(_PATH_WTMP, O_WRONLY|O_APPEND, 0)) < 0) in logwtmp()
/netbsd-src/lib/libutil/compat/
H A Dcompat_login.c74 if ((fd = open(_PATH_WTMP, O_WRONLY|O_APPEND, 0)) >= 0) { in login()
/netbsd-src/external/mit/libuv/dist/include/uv/
H A Dunix.h398 #if defined(O_APPEND)
399 # define UV_FS_O_APPEND O_APPEND
/netbsd-src/external/ibm-public/postfix/dist/src/util/
H A Dlogwriter.c87 fp = safe_open(path, O_CREAT | O_WRONLY | O_APPEND, 0644, in logwriter_open_or_die()
/netbsd-src/libexec/mail.local/
H A Dmail.local.c241 if ((mbfd = open(path, O_APPEND|O_WRONLY|O_EXLOCK|O_NOFOLLOW, in deliver()
245 (mbfd = open(path, O_APPEND|O_CREAT|O_WRONLY|O_EXLOCK|O_EXCL, in deliver()
/netbsd-src/tests/lib/libc/kevent_nullmnt/
H A Dh_nullmnt.c47 write_file = open(argv[2], O_WRONLY, O_APPEND); in main()
/netbsd-src/tests/kernel/kqueue/read/
H A Dt_file.c66 fd = open(FILENAME, O_WRONLY|O_APPEND, 0644); in child()
/netbsd-src/external/bsd/less/dist/
H A Dless.h268 #if defined(O_WRONLY) && defined(O_APPEND)
269 #define OPEN_APPEND (O_APPEND|O_WRONLY)
/netbsd-src/usr.bin/tee/
H A Dtee.c101 if ((fd = open(*argv, append ? O_WRONLY|O_CREAT|O_APPEND : in main()
/netbsd-src/external/bsd/tmux/dist/
H A Dcmd-save-buffer.c112 flags = O_APPEND; in cmd_save_buffer_exec()
/netbsd-src/external/ibm-public/postfix/dist/src/postlock/
H A Dpostlock.c255 if ((mp = mbox_open(folder, O_APPEND | O_WRONLY | O_CREAT, in main()
/netbsd-src/tests/fs/ffs/
H A Dt_update_log.c85 RL(fd = rump_sys_open("dummy", O_APPEND | O_RDWR, 0755)); in ATF_TC_BODY()
/netbsd-src/external/ibm-public/postfix/dist/src/local/
H A Dfile.c163 mp = mbox_open(path, O_APPEND | O_CREAT | O_WRONLY, in deliver_file()
/netbsd-src/external/gpl2/xcvs/dist/src/
H A Drun.c194 mode_out |= ((flags & RUN_STDOUT_APPEND) ? O_APPEND : O_TRUNC); in run_exec()
195 mode_err |= ((flags & RUN_STDERR_APPEND) ? O_APPEND : O_TRUNC); in run_exec()

123456