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

1 2 34 5 6 7 8 91011>>

  /art/runtime/base/unix_file/
fd_file_test.cc 52 ASSERT_TRUE(file.Open(good_path, O_CREAT | O_WRONLY));
mapped_file.h 36 kReadWriteMode = O_CREAT | O_RDWR | O_LARGEFILE,
  /art/runtime/
os_linux.cc 39 return OpenFileWithFlags(name, O_RDWR | O_CREAT | O_TRUNC);
  /external/chromium_org/tools/gyp/pylib/gyp/
sun_tool.py 44 fd = os.open(lockfile, os.O_WRONLY|os.O_NOCTTY|os.O_CREAT, 0666)
  /frameworks/compile/libbcc/include/bcc/Support/
File.h 43 enum { kOpenFlags = O_RDWR | O_CREAT };
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/
mqueue2.h 24 /* Check that calls to mq_open with O_CREAT set have an appropriate third and fourth
34 "mq_open with O_CREAT in second argument needs 4 arguments");
44 if ((__oflag & O_CREAT) != 0 && __va_arg_pack_len () == 0)
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/bits/
mqueue2.h 24 /* Check that calls to mq_open with O_CREAT set have an appropriate third and fourth
34 "mq_open with O_CREAT in second argument needs 4 arguments");
44 if ((__oflag & O_CREAT) != 0 && __va_arg_pack_len () == 0)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/bits/
mqueue2.h 24 /* Check that calls to mq_open with O_CREAT set have an appropriate third and fourth
34 "mq_open with O_CREAT in second argument needs 4 arguments");
44 if ((__oflag & O_CREAT) != 0 && __va_arg_pack_len () == 0)
  /external/bison/lib/
open.c 59 if (flags & O_CREAT)
86 /* If the filename ends in a slash and one of O_CREAT, O_WRONLY, O_RDWR
97 - if O_CREAT is specified, open() must fail because of the semantics
98 of O_CREAT,
103 - if O_CREAT is specified, open() must fail since open() cannot create
107 if (flags & (O_CREAT | O_WRONLY | O_RDWR))
  /external/yaffs2/yaffs2/direct/
dtest.c 23 outh = yaffs_open(yaffsName, O_CREAT | O_RDWR | O_TRUNC, S_IREAD | S_IWRITE);
45 outh = yaffs_open(yaffsName, O_CREAT | O_RDWR | O_TRUNC, S_IREAD | S_IWRITE);
68 outh = yaffs_open(fn, O_CREAT | O_RDWR | O_TRUNC, S_IREAD | S_IWRITE);
173 h = yaffs_open(fn, O_CREAT | O_RDWR | O_TRUNC, S_IREAD | S_IWRITE);
221 h = yaffs_open(fn, O_CREAT | O_RDWR | O_TRUNC, S_IREAD | S_IWRITE);
302 h = yaffs_open(fn, O_CREAT | O_RDWR | O_TRUNC, S_IWRITE | S_IREAD);
378 h = yaffs_open(str, O_CREAT | O_RDWR | O_TRUNC, S_IREAD | S_IWRITE);
423 h = yaffs_open(str, O_CREAT | O_TRUNC | O_RDWR,S_IREAD | S_IWRITE);
463 h = yaffs_open(str, O_CREAT | O_TRUNC | O_RDWR,S_IREAD | S_IWRITE);
651 f = yaffs_open("/boot/b1", O_CREAT,S_IREAD | S_IWRITE)
    [all...]
yaffsfs.h 35 #ifndef O_CREAT
36 #define O_CREAT 0100
  /external/chromium/base/
platform_file_posix.cc 37 open_flags = O_CREAT | O_EXCL;
41 open_flags = O_CREAT | O_TRUNC;
77 open_flags |= O_CREAT;
80 open_flags |= O_EXCL; // together with O_CREAT implies O_NOFOLLOW
  /external/chromium_org/chrome/browser/chromeos/
external_metrics_unittest.cc 25 int fd = open(path, O_CREAT | O_APPEND | O_WRONLY, 0666);
110 int fd = open(path, O_CREAT | O_WRONLY, 0666);
121 fd = open(path, O_CREAT | O_WRONLY, 0666);
  /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...]
  /bootable/recovery/tools/ota/
check-lost+found.c 66 int fd = open(kMarkerFile, O_WRONLY|O_CREAT, 0444);
78 fd = open(fn, O_WRONLY|O_CREAT, 0444);
  /development/ndk/sources/android/libportable/arch-mips/
open.c 29 #if O_CREAT_PORTABLE==O_CREAT
41 mipsflags |= O_CREAT;
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io_test/
kernel_proxy_test.cc 160 fd1 = ki_open("/foo/bar", O_RDONLY | O_CREAT);
164 fd2 = ki_open("/foo/bar", O_RDONLY | O_CREAT);
168 EXPECT_EQ(-1, ki_open("/foo/bar", O_RDONLY | O_CREAT | O_EXCL));
208 int fd = ki_open("/foo", O_CREAT | O_RDWR);
227 int fd = ki_open("/foo", O_CREAT | O_RDWR);
238 int fd = ki_open("/foo", O_CREAT | O_RDWR);
251 int new_fd = ki_open("/bar", O_CREAT | O_RDWR);
401 int fd = ki_open("/file", O_RDWR | O_CREAT);
  /external/qemu/
arm-semi.c 92 O_WRONLY | O_CREAT | O_TRUNC,
93 O_WRONLY | O_CREAT | O_TRUNC | O_BINARY,
94 O_RDWR | O_CREAT | O_TRUNC,
95 O_RDWR | O_CREAT | O_TRUNC | O_BINARY,
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
  /external/chromium/chrome/browser/
process_singleton_mac.cc 75 O_RDONLY | O_CREAT, 0644));
  /external/chromium_org/chrome/browser/
process_singleton_mac.cc 76 O_RDONLY | O_CREAT, 0644));
  /external/chromium_org/rlz/lib/
recursive_cross_process_lock_posix.cc 43 file_lock_ = open(lock_filename.value().c_str(), O_RDWR | O_CREAT, 0666);
  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
logging.cc 90 return open(filename, O_WRONLY|O_CREAT|O_TRUNC, 0664);
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
logging.cc 90 return open(filename, O_WRONLY|O_CREAT|O_TRUNC, 0664);
  /external/dnsmasq/contrib/dynamic-dnsmasq/
dynamic-dnsmasq.pl 64 my $X = tie my %h, "DB_File", $accountdb, O_RDWR|O_CREAT, 0600, $DB_HASH;
143 my $X = tie my %h, "DB_File", $accountdb, O_RDWR|O_CREAT, 0600, $DB_HASH;
151 my $X = tie my %h, "DB_File", $accountdb, O_RDWR|O_CREAT, 0600, $DB_HASH;
163 my $X = tie my %h, "DB_File", $accountdb, O_RDWR|O_CREAT, 0600, $DB_HASH;
  /external/e2fsprogs/contrib/
make-sparse.c 58 fd = open(argv[1], O_WRONLY|O_CREAT|O_TRUNC|O_LARGEFILE, 0777);

Completed in 1301 milliseconds

1 2 34 5 6 7 8 91011>>