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

1 2 3 4

  /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);
  /development/ndk/platforms/android-9/arch-mips/include/asm/
fcntl.h 25 #define O_CREAT 0x0100
  /prebuilts/ndk/current/platforms/android-12/arch-mips/usr/include/asm/
fcntl.h 25 #define O_CREAT 0x0100
  /prebuilts/ndk/current/platforms/android-13/arch-mips/usr/include/asm/
fcntl.h 25 #define O_CREAT 0x0100
  /prebuilts/ndk/current/platforms/android-14/arch-mips/usr/include/asm/
fcntl.h 25 #define O_CREAT 0x0100
  /prebuilts/ndk/current/platforms/android-15/arch-mips/usr/include/asm/
fcntl.h 25 #define O_CREAT 0x0100
  /prebuilts/ndk/current/platforms/android-16/arch-mips/usr/include/asm/
fcntl.h 25 #define O_CREAT 0x0100
  /prebuilts/ndk/current/platforms/android-17/arch-mips/usr/include/asm/
fcntl.h 25 #define O_CREAT 0x0100
  /prebuilts/ndk/current/platforms/android-18/arch-mips/usr/include/asm/
fcntl.h 25 #define O_CREAT 0x0100
  /prebuilts/ndk/current/platforms/android-19/arch-mips/usr/include/asm/
fcntl.h 25 #define O_CREAT 0x0100
  /prebuilts/ndk/current/platforms/android-9/arch-mips/usr/include/asm/
fcntl.h 25 #define O_CREAT 0x0100
  /bionic/libc/kernel/uapi/asm-mips/asm/
fcntl.h 26 #define O_CREAT 0x0100
  /development/ndk/platforms/android-21/arch-mips/include/asm/
fcntl.h 26 #define O_CREAT 0x0100
  /development/ndk/platforms/android-21/arch-mips64/include/asm/
fcntl.h 26 #define O_CREAT 0x0100
  /external/kernel-headers/original/uapi/asm-mips/asm/
fcntl.h 16 #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/ndk/current/platforms/android-21/arch-mips/usr/include/asm/
fcntl.h 26 #define O_CREAT 0x0100
  /prebuilts/ndk/current/platforms/android-21/arch-mips64/usr/include/asm/
fcntl.h 26 #define O_CREAT 0x0100
  /prebuilts/ndk/current/platforms/android-23/arch-mips/usr/include/asm/
fcntl.h 26 #define O_CREAT 0x0100
  /prebuilts/ndk/current/platforms/android-23/arch-mips64/usr/include/asm/
fcntl.h 26 #define O_CREAT 0x0100
  /prebuilts/ndk/current/platforms/android-24/arch-mips/usr/include/asm/
fcntl.h 26 #define O_CREAT 0x0100
  /prebuilts/ndk/current/platforms/android-24/arch-mips64/usr/include/asm/
fcntl.h 26 #define O_CREAT 0x0100
  /development/ndk/platforms/android-3/include/asm-generic/
fcntl.h 21 #ifndef O_CREAT
22 #define O_CREAT 00000100
  /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...]

Completed in 1834 milliseconds

1 2 3 4