HomeSort by relevance Sort by last modified time
    Searched defs:O_RDONLY (Results 1 - 25 of 102) sorted by null

1 2 3 4 5

  /external/syslinux/com32/include/
fcntl.h 12 /* None of these are actually supported, although O_RDONLY works */
14 #define O_RDONLY 1
  /toolchain/binutils/binutils-2.27/ld/
sysdep.h 83 #ifndef O_RDONLY
84 #define O_RDONLY 0
93 #define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR)
  /external/clang/test/Analysis/
unix-api.c 3 #ifndef O_RDONLY
4 #define O_RDONLY 0
16 fd = open(path, O_RDONLY); // no-warning
24 fd = open(path, O_RDONLY, mode, NULL); // expected-warning{{Call to 'open' with more than three arguments}}
31 fd = open(path, O_RDONLY, NULL); // expected-warning{{Third argument to 'open' is not an integer}}
38 fd = open(path, O_RDONLY, ""); // expected-warning{{Third argument to 'open' is not an integer}}
48 fd = open(path, O_RDONLY, st); // expected-warning{{Third argument to 'open' is not an integer}}
58 fd = open(path, O_RDONLY, st.val); // no-warning
65 fd = open(path, O_RDONLY, &open); // expected-warning{{Third argument to 'open' is not an integer}}
72 fd = open(path, O_RDONLY, 0.0f); // expected-warning{{Third argument to 'open' is not an integer}
    [all...]
unix-fns.c 44 #define O_RDONLY 0x0000
51 fd = open(path, O_RDONLY); // no-warning
    [all...]
  /external/libxml2/win32/wince/
wincecompat.h 19 #define O_RDONLY 0x0000 /* open for reading only */
  /prebuilts/go/darwin-x86/src/runtime/
defs1_linux.go 23 O_RDONLY = C.O_RDONLY
defs3_linux.go 25 O_RDONLY = C.O_RDONLY
  /prebuilts/go/linux-x86/src/runtime/
defs1_linux.go 23 O_RDONLY = C.O_RDONLY
defs3_linux.go 25 O_RDONLY = C.O_RDONLY
  /toolchain/binutils/binutils-2.27/bfd/
sysdep.h 99 #ifndef O_RDONLY
100 #define O_RDONLY 0
109 #define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR)
  /toolchain/binutils/binutils-2.27/binutils/
sysdep.h 120 #ifndef O_RDONLY
121 #define O_RDONLY 0
  /external/e2fsprogs/include/nonunix/
unistd.h 12 #define O_RDONLY _O_RDONLY
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
fcntl.h 36 #define O_RDONLY _O_RDONLY
  /prebuilts/go/darwin-x86/src/os/
file.go 66 // Exactly one of O_RDONLY, O_WRONLY, or O_RDWR must be specified.
67 O_RDONLY int = syscall.O_RDONLY // open the file read-only.
247 // descriptor has mode O_RDONLY.
250 return OpenFile(name, O_RDONLY, 0)
264 // (O_RDONLY etc.) and perm (before umask), if applicable. If successful,
  /prebuilts/go/linux-x86/src/os/
file.go 66 // Exactly one of O_RDONLY, O_WRONLY, or O_RDWR must be specified.
67 O_RDONLY int = syscall.O_RDONLY // open the file read-only.
247 // descriptor has mode O_RDONLY.
250 return OpenFile(name, O_RDONLY, 0)
264 // (O_RDONLY etc.) and perm (before umask), if applicable. If successful,
  /device/linaro/bootloader/edk2/StdLib/Include/sys/
fcntl.h 64 #define O_RDONLY 0x00000000 ///< open for reading only
163 exactly one of { O_RDONLY, O_RDWR, O_WRONLY } in the value of oflags.
  /external/libevent/sample/
http-server.c 63 #ifndef O_RDONLY
64 #define O_RDONLY _O_RDONLY
290 if ((fd = open(whole_path, O_RDONLY)) < 0) {
  /external/python/cpython2/Modules/
linuxaudiodev.c 22 #define O_RDONLY 00
100 imode = O_RDONLY;
412 if (self->x_mode == O_RDONLY)
  /external/tcpdump/
netdissect-stdinc.h 155 #define O_RDONLY _O_RDONLY
  /libcore/ojluni/src/main/java/sun/nio/fs/
UnixConstants.java 46 static final int O_RDONLY = OsConstants.O_RDONLY;
  /prebuilts/go/darwin-x86/src/syscall/
const_plan9.go 7 O_RDONLY = 0
  /prebuilts/go/linux-x86/src/syscall/
const_plan9.go 7 O_RDONLY = 0
  /bionic/libc/kernel/uapi/asm-generic/
fcntl.h 23 #define O_RDONLY 00000000
  /external/kernel-headers/original/uapi/asm-generic/
fcntl.h 20 #define O_RDONLY 00000000
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/
Xw32defs.h 55 # define O_RDONLY _O_RDONLY

Completed in 2144 milliseconds

1 2 3 4 5