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

1234

/illumos-gate/usr/src/cmd/audio/include/
H A DAudioTypes.h115 case AppendOnly: return (O_WRONLY | O_APPEND);
116 case ReadAppend: return (O_RDWR | O_APPEND);
/illumos-gate/usr/src/cmd/ttymon/
H A Dtmlog.c73 if ((fd = open(logfile, O_WRONLY|O_CREAT|O_APPEND,0444)) != -1)
242 if ((fd = open(EX_DBG, O_WRONLY|O_APPEND|O_CREAT)) < 0)
/illumos-gate/usr/src/cmd/bnu/
H A Din.uucpd.c348 #define O_APPEND 0 /* kludge */ macro
405 wtmp = open("/usr/adm/wtmp", O_WRONLY|O_APPEND);
486 wtmp = open("/usr/adm/wtmp", O_WRONLY|O_APPEND);
H A Dlogent.c139 fd = open(CMDLOG, O_WRONLY | O_APPEND);
H A Dct.c659 if ((fd = open(WTMPX_FILE, O_WRONLY | O_APPEND)) != -1) {
717 if ((fd = open(WTMPX_FILE, O_WRONLY | O_APPEND)) != -1) {
H A Dsecurity.c151 LogFile = open(LogName, O_WRONLY | O_APPEND);
H A Dperfstat.c1017 fd = open(logname, O_WRONLY | O_APPEND);
/illumos-gate/usr/src/cmd/svc/startd/
H A Dlog.c287 fd = open(logfile, O_WRONLY|O_CREAT|O_APPEND,
338 fd = open(logfile, O_WRONLY|O_CREAT|O_APPEND,
675 O_CREAT | O_RDWR | O_APPEND, 0644)) == -1) {
/illumos-gate/usr/src/lib/libpkg/common/
H A Dpkgexecv.c409 n = open(fileout, O_WRONLY|O_CREAT|O_APPEND, 0666);
/illumos-gate/usr/src/lib/libcmd/common/
H A Dtee.c135 oflag |= O_APPEND;
/illumos-gate/usr/src/cmd/lp/cmd/lpsched/
H A Dports.c202 * O_APPEND is set in case the ``port'' is a file.
211 open_mode |= O_APPEND;
/illumos-gate/usr/src/uts/common/sys/
H A Dfcntl.h65 #define O_APPEND 0x08 /* append (writes guaranteed at the end) */ macro
/illumos-gate/usr/src/lib/libshell/common/edit/
H A Dhistory.c150 O_BINARY|O_WRONLY|O_APPEND|O_CREAT,S_IRUSR|S_IWUSR))>=0 &&
267 if((fd=open(cp,O_BINARY|O_APPEND|O_RDWR|O_CREAT,histmode))>=0)
298 fd = open(fname,O_BINARY|O_APPEND|O_CREAT|O_RDWR,S_IRUSR|S_IWUSR);
386 if((fd=sh_open(buff,O_BINARY|O_WRONLY|O_APPEND|O_CREAT,S_IRUSR|S_IWUSR))>=0 && fd < 10)
1167 if((newfd=open(hp->histname,O_BINARY|O_APPEND|O_CREAT|O_RDWR,S_IRUSR|S_IWUSR)) >= 0)
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dgetut.c351 (void) fcntl(fd, F_SETFL, fc | O_APPEND);
430 fd = open(file, O_WRONLY | O_APPEND);
/illumos-gate/usr/src/cmd/nohup/
H A Dnohup.c82 int flags = O_CREAT | O_WRONLY | O_APPEND;
279 oflags = O_RDWR | O_APPEND;
/illumos-gate/usr/src/lib/libast/common/comp/
H A Dfmtmsglib.c274 mm.console = open("/dev/console", O_WRONLY|O_APPEND|O_NOCTTY);
H A Dsyslog.c271 if ((log.fd = open(s, O_WRONLY|O_APPEND|O_NOCTTY)) < 0 && (log.fd = sockopen(s)) < 0)
/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/pppoe/
H A Dlogging.c306 curlogfd = open(fname, O_WRONLY|O_APPEND|O_CREAT, 0600);
/illumos-gate/usr/src/cmd/sgs/rtld/common/
H A Ddebug.c259 if ((dbg_fd = open(file, (O_RDWR | O_APPEND),
/illumos-gate/usr/src/cmd/lp/lib/lp/
H A Dfiles.c144 oflag = (plus? O_RDWR : O_WRONLY) | O_APPEND;
/illumos-gate/usr/src/cmd/mailx/
H A Dnames.c234 fd = open(tempEdit, O_CREAT|O_EXCL|O_APPEND|O_WRONLY,
237 if ((fd = open(tempEdit, O_APPEND|O_WRONLY,
/illumos-gate/usr/src/cmd/sed/
H A Dprocess.c230 O_WRONLY|O_APPEND|O_CREAT|O_TRUNC, 0666))
458 O_WRONLY|O_APPEND|O_CREAT|O_TRUNC, 0666)) == -1)
/illumos-gate/usr/src/cmd/sendmail/libsmutil/
H A Dsafefile.c806 if (bitset(O_APPEND, omode))
815 else if (bitset(O_APPEND, omode))
/illumos-gate/usr/src/cmd/ptools/pfiles/
H A Dpfiles.c411 #define ALL_O_FLAGS O_ACCMODE | O_NDELAY | O_NONBLOCK | O_APPEND | \
446 if (flags & O_APPEND)
447 (void) strcat(str, "|O_APPEND");
/illumos-gate/usr/src/cmd/nscd/
H A Dnscd_log.c128 open(lf, O_APPEND|O_WRONLY, 0644)) < 0) {

Completed in 96 milliseconds

1234