Searched refs:O_APPEND (Results 26 - 50 of 103) sorted by relevance

12345

/freebsd-13-stable/contrib/bc/include/
H A Dhistory.h130 open("/tmp/lndebug.txt", O_APPEND), \
/freebsd-13-stable/contrib/netbsd-tests/fs/union/
H A Dt_pr.c114 fd = rump_sys_open("/mp/null", O_WRONLY | O_CREAT | O_APPEND);
/freebsd-13-stable/contrib/netbsd-tests/kernel/kqueue/read/
H A Dt_file.c66 fd = open(FILENAME, O_WRONLY|O_APPEND, 0644);
/freebsd-13-stable/usr.bin/tee/
H A Dtee.c105 if ((fd = open(*argv, append ? O_WRONLY|O_CREAT|O_APPEND :
/freebsd-13-stable/tests/sys/cddl/zfs/bin/
H A Dfile_write.c156 oflag = (O_RDWR|O_APPEND);
/freebsd-13-stable/tests/sys/fs/fusefs/
H A Dopen.cc224 test_ok(O_WRONLY | O_APPEND, O_WRONLY | O_APPEND);
H A Drelease.cc139 expect_release(ino, getpid(), O_RDWR | O_APPEND, 0);
141 fd = open(FULLPATH, O_RDWR | O_APPEND);
/freebsd-13-stable/contrib/dma/
H A Dlocal.c152 mbox = open_locked(fn, O_WRONLY|O_APPEND);
/freebsd-13-stable/cddl/lib/libdtrace/
H A Dio.d98 inline int O_APPEND = 0x0008;
99 #pragma D binding "1.1" O_APPEND
/freebsd-13-stable/sys/contrib/openzfs/tests/zfs-tests/cmd/file_write/
H A Dfile_write.c178 oflag = (O_RDWR|O_APPEND);
/freebsd-13-stable/contrib/less/
H A Dless.h254 #if defined(O_WRONLY) && defined(O_APPEND)
255 #define OPEN_APPEND (O_APPEND|O_WRONLY)
/freebsd-13-stable/sys/security/audit/
H A Daudit_private.h389 #define AUDIT_OPEN_FLAGS (FWRITE | O_APPEND)
390 #define AUDIT_CLOSE_FLAGS (FWRITE | O_APPEND)
/freebsd-13-stable/sys/compat/cloudabi/
H A Dcloudabi_fd.c403 if (oflags & O_APPEND)
452 oflags |= O_APPEND;
/freebsd-13-stable/sys/contrib/openzfs/module/zfs/
H A Dzfs_vnops.c302 * ioflag - O_APPEND flag set if in append mode.
358 ((zp->z_pflags & ZFS_APPENDONLY) && !(ioflag & O_APPEND) &&
367 offset_t woff = ioflag & O_APPEND ? zp->z_size : zfs_uio_offset(uio);
389 if (ioflag & O_APPEND) {
/freebsd-13-stable/crypto/heimdal/appl/telnet/telnetd/
H A Dsys_term.c1168 if ((i = open(wtmpf, O_WRONLY|O_APPEND)) >= 0) {
1463 int f = open(wtmpf, O_WRONLY|O_APPEND);
1523 f = open(wtmpf, O_WRONLY|O_APPEND);
1561 if ((fd = open(wtmpf, O_WRONLY | O_APPEND)) >= 0) {
/freebsd-13-stable/crypto/heimdal/kdc/
H A Dprocess.c276 fd = open(fn, O_WRONLY|O_CREAT|O_APPEND, 0600);
/freebsd-13-stable/lib/libc/gen/
H A Dpututxline.c277 fd = _open(_PATH_UTX_LOG, O_CREAT|O_WRONLY|O_APPEND|O_CLOEXEC, 0644);
/freebsd-13-stable/contrib/kyua/utils/process/
H A Dchild.cpp120 filename.c_str(), O_CREAT | O_WRONLY | O_APPEND,
/freebsd-13-stable/bin/sh/
H A Dredir.c220 if ((f = open(fname, O_WRONLY|O_CREAT|O_APPEND, 0666)) < 0)
/freebsd-13-stable/contrib/pf/pflogd/
H A Dprivsep.c153 O_RDWR|O_CREAT|O_APPEND|O_NONBLOCK|O_NOFOLLOW,
/freebsd-13-stable/contrib/netbsd-tests/fs/vfs/
H A Dt_io.c88 O_CREAT | O_RDWR | (seekcnt ? O_APPEND : 0)));
/freebsd-13-stable/usr.sbin/lpr/lpd/
H A Drecvjob.c118 if (open(pp->log_file, O_WRONLY|O_APPEND, 0664) < 0) {
/freebsd-13-stable/contrib/capsicum-test/
H A Dcapability-fd.cc387 file = openat(cap_dir, filename, O_WRONLY|O_APPEND);
692 rc = openat(dfd_cap, "cap_create", O_CREAT | O_WRONLY | O_APPEND, 0600);
698 rc = openat(dfd_cap, "cap_create", O_CREAT | O_RDWR | O_APPEND, 0600);
720 rc = openat(dfd_cap, "cap_fsync", O_FSYNC | O_WRONLY | O_APPEND);
725 rc = openat(dfd_cap, "cap_fsync", O_FSYNC | O_RDWR | O_APPEND);
735 rc = openat(dfd_cap, "cap_fsync", O_SYNC | O_WRONLY | O_APPEND);
740 rc = openat(dfd_cap, "cap_fsync", O_SYNC | O_RDWR | O_APPEND);
/freebsd-13-stable/contrib/sendmail/libsmutil/
H A Dsafefile.c805 if (bitset(O_APPEND, omode))
814 else if (bitset(O_APPEND, omode))
/freebsd-13-stable/contrib/xz/src/xz/
H A Dfile_io.c836 // NOTE: O_APPEND may be unset later in this function
925 // - O_APPEND may be active.
935 if (stdout_flags & O_APPEND) {
937 // when O_APPEND is active (it's used by
940 // O_APPEND in xz, because if someone
949 // to imitate O_APPEND.
956 int flags = stdout_flags & ~O_APPEND;
967 // Disabling O_APPEND succeeded. Mark
1011 // If io_open_dest() has disabled O_APPEND, restore it here.
1018 message_error(_("Error restoring the O_APPEND fla
[all...]

Completed in 304 milliseconds

12345