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

1 2 3 4

  /external/syslinux/com32/include/
fcntl.h 18 #define O_CREAT 0100
  /external/libxml2/win32/wince/
wincecompat.h 24 #define O_CREAT 0x0100 /* create and open file */
  /external/clang/test/Sema/
enable_if.c 4 #define O_CREAT 0x100
10 int open(const char *pathname, int flags) __attribute__((enable_if(!(flags & O_CREAT), "must specify mode when using O_CREAT"))) __attribute__((overloadable)); // expected-note{{candidate disabled: must specify mode when using O_CREAT}}
15 open("path", O_CREAT); // expected-error{{no matching function for call to 'open'}}
17 open("path", O_CREAT, 0660);
  /bionic/libc/kernel/uapi/asm-mips/asm/
fcntl.h 25 #define O_CREAT 0x0100
  /external/kernel-headers/original/uapi/asm-mips/asm/
fcntl.h 17 #define O_CREAT 0x0100 /* not fcntl */
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
fcntl.h 40 #define O_CREAT _O_CREAT
  /prebuilts/go/darwin-x86/src/syscall/
errors_plan9.go 10 O_CREAT = 0x02000
syscall_nacl.go 115 O_CREAT = 0100
116 O_CREATE = O_CREAT // for ken
types_windows.go 39 O_CREAT = 0x00040
  /prebuilts/go/linux-x86/src/syscall/
errors_plan9.go 10 O_CREAT = 0x02000
syscall_nacl.go 115 O_CREAT = 0100
116 O_CREATE = O_CREAT // for ken
types_windows.go 39 O_CREAT = 0x00040
  /device/linaro/bootloader/edk2/StdLib/Include/sys/
fcntl.h 71 #define O_CREAT 0x00000200 ///< create if nonexistent
73 #define O_EXCL 0x00000800 ///< Grant EXCLusive access, or error if already exists and O_CREAT
164 Any combination of { O_NONBLOCK, O_APPEND, O_CREAT, O_TRUNC, O_EXCL } may
185 @retval EEXIST File exists and open attempted with (O_EXCL | O_CREAT) set.
  /external/clang/test/Analysis/
unix-fns.c 42 #ifndef O_CREAT
43 #define O_CREAT 0x0200
55 fd = open(path, O_CREAT); // expected-warning{{Call to 'open' requires a third argument when the 'O_CREAT' flag is set}}
401 // CHECK-NEXT: <string>Call to &apos;open&apos; requires a third argument when the &apos;O_CREAT&apos; flag is set</string>
403 // CHECK-NEXT: <string>Call to &apos;open&apos; requires a third argument when the &apos;O_CREAT&apos; flag is set</string>
406 // CHECK-NEXT: <key>description</key><string>Call to &apos;open&apos; requires a third argument when the &apos;O_CREAT&apos; flag is set</string>
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/fs/
UnixConstants.java 54 static final int O_CREAT = OsConstants.O_CREAT;
  /bionic/libc/kernel/uapi/asm-generic/
fcntl.h 26 #ifndef O_CREAT
27 #define O_CREAT 00000100
79 #define O_TMPFILE_MASK (__O_TMPFILE | O_DIRECTORY | O_CREAT)
  /external/kernel-headers/original/uapi/asm-generic/
fcntl.h 23 #ifndef O_CREAT
24 #define O_CREAT 00000100 /* not fcntl */
94 #define O_TMPFILE_MASK (__O_TMPFILE | O_DIRECTORY | O_CREAT)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/
Xw32defs.h 59 # define O_CREAT _O_CREAT
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/asm-generic/
fcntl.h 22 #ifndef O_CREAT
23 #define O_CREAT 00000100 /* not fcntl */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
fcntl.h 37 #define O_CREAT 0100 /* not fcntl */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
fcntl.h 38 #define O_CREAT 0100 /* not fcntl */
  /external/python/cpython2/Lib/plat-irix5/
FILE.py 166 O_CREAT = 0x100
  /external/python/cpython2/Lib/plat-atheos/
IN.py 620 O_CREAT = 0100
  /external/python/cpython2/Lib/plat-irix6/
FILE.py 577 O_CREAT = 0x100
  /libcore/luni/src/main/java/android/system/
OsConstants.java 370 public static final int O_CREAT = placeholder();
    [all...]

Completed in 1575 milliseconds

1 2 3 4