HomeSort by relevance Sort by last modified time
    Searched refs:O_ACCMODE (Results 76 - 100 of 114) sorted by null

1 2 34 5

  /external/kernel-headers/original/uapi/asm-generic/
fcntl.h 18 #define O_ACCMODE 00000003
  /prebuilts/ndk/9/platforms/android-19/arch-arm64/usr/include/asm-generic/
fcntl.h 22 #define O_ACCMODE 00000003
  /prebuilts/ndk/9/platforms/android-19/arch-mips64/usr/include/asm-generic/
fcntl.h 22 #define O_ACCMODE 00000003
  /prebuilts/ndk/9/platforms/android-19/arch-x86_64/usr/include/asm-generic/
fcntl.h 22 #define O_ACCMODE 00000003
  /external/stlport/src/details/
fstream_unistd.cpp 52 #ifndef O_ACCMODE
53 # define O_ACCMODE (O_RDONLY|O_WRONLY|O_RDWR)
82 switch ( mode & O_ACCMODE ) {
fstream_stdio.cpp 80 # ifndef O_ACCMODE
81 # define O_ACCMODE (O_RDONLY|O_WRONLY|O_RDWR)
fstream_win32io.cpp 39 #ifndef O_ACCMODE
40 # define O_ACCMODE (O_RDONLY|O_WRONLY|O_RDWR)
49 switch (mode & O_ACCMODE) {
  /ndk/sources/cxx-stl/stlport/src/details/
fstream_unistd.cpp 52 #ifndef O_ACCMODE
53 # define O_ACCMODE (O_RDONLY|O_WRONLY|O_RDWR)
82 switch ( mode & O_ACCMODE ) {
fstream_stdio.cpp 80 # ifndef O_ACCMODE
81 # define O_ACCMODE (O_RDONLY|O_WRONLY|O_RDWR)
fstream_win32io.cpp 39 #ifndef O_ACCMODE
40 # define O_ACCMODE (O_RDONLY|O_WRONLY|O_RDWR)
49 switch (mode & O_ACCMODE) {
  /libcore/luni/src/main/java/java/nio/
FileChannelImpl.java 79 if ((mode & O_ACCMODE) == O_WRONLY) {
85 if ((mode & O_ACCMODE) == O_RDONLY) {
95 int accessMode = (mode & O_ACCMODE);
207 if ((mode & O_ACCMODE) != O_RDONLY) {
228 int accessMode = (mode & O_ACCMODE);
  /external/bison/darwin-lib/
fcntl.h 596 #if ~O_ACCMODE & (O_RDONLY | O_WRONLY | O_RDWR | O_EXEC | O_SEARCH)
597 # undef O_ACCMODE
598 # define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR | O_EXEC | O_SEARCH)
  /external/bison/linux-lib/
fcntl.h 596 #if ~O_ACCMODE & (O_RDONLY | O_WRONLY | O_RDWR | O_EXEC | O_SEARCH)
597 # undef O_ACCMODE
598 # define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR | O_EXEC | O_SEARCH)
  /external/chromium_org/sandbox/linux/services/
broker_process.cc 106 const int access_mode = flags & O_ACCMODE;
123 const int creation_and_status_flags = flags & ~O_ACCMODE;
525 switch (requested_flags & O_ACCMODE) {
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/bits/
fcntl.h 33 #define O_ACCMODE 0003
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/
fcntl.h 33 #define O_ACCMODE 0003
  /system/core/liblog/
log_read_kern.c 78 if ((mode & O_ACCMODE) == O_WRONLY) {
81 if ((mode & O_ACCMODE) == O_RDWR) {
204 if (((mode & O_ACCMODE) == O_RDWR)
205 || (((mode ^ logger->top->mode) & O_ACCMODE) == 0)) {
  /external/chromium_org/components/nacl/loader/nonsfi/
nonsfi_sandbox.cc 56 // the return value of F_GETFL, so we need to allow O_ACCMODE in
58 const unsigned long denied_mask = ~(O_ACCMODE | O_NONBLOCK);
  /external/qemu/android/utils/
mapfile.c 46 } else if ((oflag & O_ACCMODE) == O_RDONLY) {
  /ndk/sources/host-tools/ndk-stack/elff/
mapfile.c 44 } else if ((oflag & O_ACCMODE) == O_RDONLY) {
  /external/chromium_org/sandbox/linux/seccomp-bpf-helpers/
syscall_parameters_restrictions.cc 173 unsigned long denied_mask = ~(O_ACCMODE | O_APPEND | O_NONBLOCK | O_SYNC |
  /external/mksh/src/
shf.c 86 sflags |= (oflags & O_ACCMODE) == O_RDONLY ? SHF_RD :
87 ((oflags & O_ACCMODE) == O_WRONLY ? SHF_WR : SHF_RDWR);
106 switch (flags & O_ACCMODE) {
  /libcore/luni/src/main/java/libcore/io/
BlockGuardOs.java 183 if ((mode & O_ACCMODE) != O_RDONLY) {
  /external/chromium_org/base/memory/
shared_memory_unittest.cc 417 EXPECT_EQ(O_RDONLY, fcntl(handle.fd, F_GETFL) & O_ACCMODE)
  /libcore/luni/src/main/java/android/system/
OsConstants.java 332 public static final int O_ACCMODE = placeholder();
    [all...]

Completed in 640 milliseconds

1 2 34 5