Searched refs:O_APPEND (Results 1 - 20 of 20) sorted by relevance
/ast/src/lib/libast/features/ |
H A D | fcntl.c | 228 #ifndef O_APPEND 231 if (O_APPEND > o_local) o_local = O_APPEND; 284 #ifndef O_APPEND 285 printf("#define O_APPEND 0%o\n", o_local <<= 1);
|
/ast/src/lib/libast/comp/ |
H A D | open.c | 106 else if ((op & O_APPEND) && lseek(fd, 0L, SEEK_END) == -1L)
|
H A D | fmtmsglib.c | 274 mm.console = open("/dev/console", O_WRONLY|O_APPEND|O_NOCTTY);
|
H A D | syslog.c | 271 if ((log.fd = open(s, O_WRONLY|O_APPEND|O_NOCTTY|O_cloexec)) < 0 && (log.fd = sockopen(s)) < 0)
|
/ast/src/lib/libcs/ |
H A D | cslib.h | 163 #if !defined(FAPPEND) && defined(O_APPEND) 164 #define FAPPEND O_APPEND
|
/ast/src/lib/libast/sfio/ |
H A D | _sfopen.c | 78 { if ((oflags &= (O_TEXT|O_BINARY|O_APPEND)) != 0 ) 81 ctl = (ctl & ~(O_TEXT|O_BINARY|O_APPEND)) | oflags; 166 oflags |= O_WRONLY | O_APPEND | O_CREAT;
|
H A D | sfhdr.h | 985 #define O_APPEND 020 macro
|
/ast/src/lib/libcmd/ |
H A D | tee.c | 135 oflag |= O_APPEND;
|
/ast/src/cmd/cs/ |
H A D | cat.c | 49 int fd; /* O_APPEND fd */ 107 if (!s || (ad = csopen(s, 0)) < 0 && (ad = open(s, O_CREAT|O_APPEND|O_WRONLY|O_BINARY, S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH)) < 0)
|
/ast/src/cmd/ksh93/edit/ |
H A D | history.c | 150 O_BINARY|O_WRONLY|O_APPEND|O_CREAT,S_IRUSR|S_IWUSR))>=0 && 266 if((fd=open(cp,O_BINARY|O_APPEND|O_RDWR|O_CREAT,histmode))>=0) 297 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) 1199 if((newfd=open(hp->histname,O_BINARY|O_APPEND|O_CREAT|O_RDWR,S_IRUSR|S_IWUSR)) >= 0)
|
/ast/src/cmd/ie/ |
H A D | io.h | 171 # define O_APPEND 010 macro
|
H A D | history.c | 140 if((fd=open(histname,O_APPEND|O_RDWR|O_CREAT|O_BINARY,S_IRUSR|S_IWUSR))>=0)
|
/ast/src/cmd/cs/vcs_src/ |
H A D | ifs_func.c | 305 flog = open( logfile, O_WRONLY|O_APPEND, 0600 );
|
/ast/src/cmd/kshlib/open/ |
H A D | open.c | 487 oflag |= O_APPEND;
|
/ast/src/lib/libjcl/ |
H A D | run.c | 206 if ((n = open(redirect[i].file, O_CREAT|O_TRUNC|O_WRONLY|O_APPEND|O_BINARY, S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH)) != redirect[i].fd)
|
/ast/src/cmd/3d/ |
H A D | fs.c | 577 fs->fd = fs3d_open(svc, O_CREAT|O_RDWR|O_APPEND, S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH);
|
/ast/src/lib/libtksh/tcl/ |
H A D | tclIOUtil.c | 283 mode |= O_APPEND;
|
/ast/src/cmd/ksh93/sh/ |
H A D | io.c | 1336 o_mode |= O_APPEND;
|
H A D | path.c | 1409 fd = open( SHACCT , O_WRONLY | O_APPEND | O_CREAT,RW_ALL);
|
/ast/src/cmd/at/ |
H A D | atd.c | 1215 if ((fd = open(AT_LOG_FILE, O_CREAT|O_WRONLY|O_APPEND, S_IRUSR|S_IWUSR|S_IRGRP|S_IROTH)) < 0 || fd != 2 && (dup2(fd, 2) != 2 || close(fd)))
|
Completed in 54 milliseconds