/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/ |
Xw32defs.h | 60 #define O_APPEND _O_APPEND
|
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/ |
kernel_handle.cc | 46 if (open_flags & O_APPEND) { 142 if (!(flags & O_APPEND) && (handle_attr_.flags & O_APPEND)) { 143 // Attempt to clear O_APPEND.
|
/external/stlport/src/details/ |
fstream_unistd.cpp | 94 if ( mode & O_APPEND ) 173 flags = O_WRONLY | O_CREAT | O_APPEND; 187 flags = O_RDWR | O_CREAT | O_APPEND;
|
fstream_win32io.cpp | 58 if (mode & O_APPEND) 105 # define FAPPEND 0x20 // O_APPEND flag 139 mode |= O_APPEND; 172 mode |= O_APPEND;
|
/ndk/sources/cxx-stl/stlport/src/details/ |
fstream_unistd.cpp | 94 if ( mode & O_APPEND ) 173 flags = O_WRONLY | O_CREAT | O_APPEND; 187 flags = O_RDWR | O_CREAT | O_APPEND;
|
fstream_win32io.cpp | 58 if (mode & O_APPEND) 105 # define FAPPEND 0x20 // O_APPEND flag 139 mode |= O_APPEND; 172 mode |= O_APPEND;
|
/system/core/sh/ |
show.c | 380 #ifdef O_APPEND 418 #ifdef O_APPEND 420 fcntl(fileno(tracefile), F_SETFL, flags | O_APPEND);
|
/bionic/libc/stdio/ |
freopen.c | 153 * When opening in append mode, even though we use O_APPEND, 160 if (oflags & O_APPEND)
|
/development/ndk/sources/android/libportable/arch-mips/ |
open.c | 49 mipsflags |= O_APPEND;
|
fcntl.c | 191 mipsflags |= O_APPEND; 229 if (flags & O_APPEND)
|
/external/chromium/chrome/browser/chromeos/ |
external_metrics_unittest.cc | 25 int fd = open(path, O_CREAT | O_APPEND | O_WRONLY, 0666);
|
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/ |
mount_node_test.cc | 169 ASSERT_EQ(0, handle.Init(O_CREAT | O_APPEND)); 178 ASSERT_EQ(O_CREAT | O_APPEND, flags); 182 flags = O_NONBLOCK | O_APPEND; 185 ASSERT_EQ(O_CREAT | O_APPEND | O_NONBLOCK, flags); 187 // Clearing of O_APPEND should generate EPERM;
|
/external/qemu/ |
arm-semi.c | 96 O_WRONLY | O_CREAT | O_APPEND, 97 O_WRONLY | O_CREAT | O_APPEND | O_BINARY, 98 O_RDWR | O_CREAT | O_APPEND, 99 O_RDWR | O_CREAT | O_APPEND | O_BINARY
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
posixfile.py | 127 if 'a' in which: l_flags = l_flags | os.O_APPEND 146 if os.O_APPEND & l_flags: which = which + 'a'
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
posixfile.py | 127 if 'a' in which: l_flags = l_flags | os.O_APPEND 146 if os.O_APPEND & l_flags: which = which + 'a'
|
/external/chromium_org/base/files/ |
file_posix.cc | 52 return (fcntl(file, F_GETFL) & O_APPEND) != 0; 94 // standard and always appends if the file is opened with O_APPEND, just 169 open_flags |= O_APPEND | O_RDWR; 171 open_flags |= O_APPEND | O_WRONLY;
|
/external/chromium_org/base/ |
platform_file_posix.cc | 50 return (fcntl(file, F_GETFL) & O_APPEND) != 0; 92 // standard and always appends if the file is opened with O_APPEND, just 171 open_flags |= O_APPEND | O_RDWR; 173 open_flags |= O_APPEND | O_WRONLY;
|
/dalvik/vm/ |
SignalCatcher.cpp | 135 * so we can use a single O_APPEND write instead of contending for exclusive 189 int fd = open(gDvm.stackTraceFile, O_WRONLY | O_APPEND | O_CREAT, 0666);
|
/external/chromium_org/base/debug/ |
trace_event_android.cc | 178 int atrace_fd = open(kATraceMarkerFile, O_WRONLY | O_APPEND);
|
/external/chromium_org/chrome/browser/chromeos/ |
external_metrics_unittest.cc | 25 int fd = open(path, O_CREAT | O_APPEND | O_WRONLY, 0666);
|
/frameworks/compile/libbcc/lib/Support/ |
FileBase.cpp | 64 mOpenFlags |= O_APPEND;
|
/frameworks/compile/mclinker/lib/Support/ |
FileHandle.cpp | 56 result |= O_APPEND;
|
/art/runtime/ |
signal_catcher.cc | 104 int fd = open(stack_trace_file_.c_str(), O_APPEND | O_CREAT | O_WRONLY, 0666);
|
/external/chromium_org/sandbox/linux/seccomp-bpf-helpers/ |
syscall_parameters_restrictions.cc | 153 unsigned long denied_mask = ~(O_ACCMODE | O_APPEND | O_NONBLOCK | O_SYNC |
|
/external/dnsmasq/src/ |
log.c | 113 log_fd = open(log_file, O_WRONLY|O_CREAT|O_APPEND, S_IRUSR|S_IWUSR|S_IRGRP);
|