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

123456

/macosx-10.9.5/uucp-11/uucp/unix/
H A Defopen.c29 #ifndef O_APPEND
31 #define O_APPEND FAPPEND macro
75 O_WRONLY | O_APPEND | O_CREAT | O_NOCTTY,
96 O_WRONLY | O_APPEND | O_CREAT | O_NOCTTY,
121 #ifdef O_APPEND
124 if (fcntl (o, F_SETFL, O_APPEND) < 0)
126 ulog (LOG_ERROR, "fcntl (%s, O_APPEND): %s", zfile,
132 #endif /* defined (O_APPEND) */
/macosx-10.9.5/Libc-997.90.3/stdio/FreeBSD/
H A Dfdopen.c95 * O_APPEND bit set, assert __SAPP so that __swrite() caller
98 if ((oflags & O_APPEND) && !(fdflags & O_APPEND))
H A Dfreopen.c106 if ((oflags ^ dflags) & O_APPEND) {
107 dflags &= ~O_APPEND;
108 dflags |= oflags & O_APPEND;
119 if (!(oflags & O_APPEND))
238 * When opening in append mode, even though we use O_APPEND,
245 if (oflags & O_APPEND)
H A Dflags.c75 o = O_CREAT | O_APPEND;
H A Dfopen.c98 * When opening in append mode, even though we use O_APPEND,
105 if (oflags & O_APPEND)
/macosx-10.9.5/ruby-104/ruby/ext/fcntl/
H A Dfcntl.c190 #ifdef O_APPEND
191 /* Document-const: O_APPEND
195 rb_define_const(mFcntl, "O_APPEND", INT2NUM(O_APPEND));
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/features/
H A Dfcntl.c223 #ifndef O_APPEND
226 if (O_APPEND > o_local) o_local = O_APPEND;
279 #ifndef O_APPEND
280 printf("#define O_APPEND 0%o\n", o_local <<= 1);
/macosx-10.9.5/libxml2-26/libxml2/win32/wince/
H A Dwincecompat.h22 #define O_APPEND 0x0008 /* writes done at eof */ macro
/macosx-10.9.5/ntp-88/lib/isc/win32/include/isc/
H A Dstat.h56 #define O_APPEND _O_APPEND macro
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/libxml2-src/win32/wince/
H A Dwincecompat.h22 #define O_APPEND 0x0008 /* writes done at eof */ macro
/macosx-10.9.5/dtrace-118.1/test/tst/common/io/
H A Dtst.fds.c93 fds[n++] = open(file, O_RDWR | O_APPEND | O_CREAT | O_DSYNC |
97 fds[n++] = open(file, O_RDWR | O_APPEND | O_CREAT | O_ASYNC |
/macosx-10.9.5/shell_cmds-175/nohup/
H A Dnohup.c122 fd = open(p, O_RDWR | O_CREAT | O_APPEND, S_IRUSR | S_IWUSR);
128 fd = open(p = path, O_RDWR | O_CREAT | O_APPEND,
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/sfio/
H A D_sfopen.c77 if(f->file >= 0 && (oflags &= (O_TEXT|O_BINARY|O_APPEND)) != 0 )
80 ctl = (ctl & ~(O_TEXT|O_BINARY|O_APPEND)) | oflags;
159 oflags |= O_WRONLY | O_APPEND | O_CREAT;
/macosx-10.9.5/emacs-92/emacs/src/s/
H A Dmsdos.h209 #define O_APPEND 0x0800
208 #define O_APPEND macro
/macosx-10.9.5/Heimdal-323.92.1/appl/ftp/ftpd/
H A Dlogwtmp.c172 fd = open(WTMP_FILE, O_WRONLY|O_APPEND, 0);
175 fdx = open(WTMPX_FILE, O_WRONLY|O_APPEND, 0);
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/comp/
H A Dopen.c106 else if ((op & O_APPEND) && lseek(fd, 0L, SEEK_END) == -1L)
/macosx-10.9.5/Heimdal-323.92.1/appl/login/
H A Dutmpx_login.c59 if ((fd = open(_PATH_WTMP, O_WRONLY|O_APPEND, 0)) >= 0) {
H A Dutmp_login.c160 if ((fd = open(_PATH_WTMP, O_WRONLY|O_APPEND, 0)) >= 0) {
/macosx-10.9.5/tcl-102/tcl_ext/tkimg/tkimg/compat/libtiff/libtiff/
H A Dtiffcomp.h198 #define O_APPEND 8 macro
/macosx-10.9.5/CPANInternal-140/Log-Dispatch-2.34/lib/Log/Dispatch/
H A DFile.pm19 *O_APPEND = \&APPEND unless defined &O_APPEND;
82 && $p{mode} == O_APPEND() )
/macosx-10.9.5/Libc-997.90.3/os/
H A Dtrace.c58 return open(suggestion, O_WRONLY | O_APPEND | O_CREAT | O_NOFOLLOW |
72 fd = open(path, O_WRONLY | O_APPEND | O_CREAT | O_NOFOLLOW | O_EXCL |
84 fd = open(path, O_WRONLY | O_APPEND | O_CREAT | O_NOFOLLOW |
/macosx-10.9.5/CPANInternal-140/Log-Dispatch/lib/Log/Dispatch/
H A DFile.pm16 *O_APPEND = \&APPEND unless defined &O_APPEND;
66 $p{mode} == O_APPEND() ) ) )
/macosx-10.9.5/Heimdal-323.92.1/appl/popper/
H A Dpop_dropcopy.c104 if ((dfd = open(p->temp_drop,O_RDWR|O_APPEND|O_CREAT,0600)) == -1){
/macosx-10.9.5/bash-92/bash-3.2/examples/loadables/
H A Dtee.c86 fflags = append ? O_WRONLY|O_CREAT|O_APPEND : O_WRONLY|O_CREAT|O_TRUNC;
/macosx-10.9.5/postfix-252/postfix/src/bounce/
H A Dbounce_append_service.c84 O_WRONLY | O_APPEND | O_CREAT, 0600);

Completed in 156 milliseconds

123456