Searched refs:posix_mode (Results 1 - 3 of 3) sorted by relevance

/haiku/src/libs/stdc++/legacy/
H A Dfilebuf.cc84 int posix_mode; local
89 posix_mode = O_RDWR;
93 posix_mode = O_WRONLY, read_write = _IO_NO_READS;
95 posix_mode = O_RDONLY, read_write = _IO_NO_WRITES;
97 posix_mode = 0, read_write = _IO_NO_READS+_IO_NO_WRITES;
103 posix_mode |= O_BINARY;
107 posix_mode |= O_TRUNC;
109 posix_mode |= O_APPEND, read_write |= _IO_IS_APPENDING;
111 posix_mode |= O_CREAT;
113 posix_mode |
[all...]
/haiku/src/system/libroot/posix/glibc/libio/
H A Diofdopen.c43 int posix_mode = 0; local
65 posix_mode = O_APPEND;
123 if ((posix_mode & O_APPEND) && !(fd_flags & O_APPEND))
H A Dfileops.c208 _IO_file_open (fp, filename, posix_mode, prot, read_write, is32not64)
211 int posix_mode; variable
219 ? open (filename, posix_mode, prot)
220 : _G_OPEN64 (filename, posix_mode, prot));
222 fdesc = open (filename, posix_mode, prot);

Completed in 62 milliseconds