HomeSort by relevance Sort by last modified time
    Searched refs:creat (Results 1 - 25 of 205) sorted by null

1 2 3 4 5 6 7 8 9

  /external/syslinux/com32/lib/
creat.c 2 * creat.c
9 int creat(const char *pathname, mode_t mode) function
  /external/valgrind/none/tests/
fdleak_creat.c 13 (void) DO( creat(filename, 0) );
  /external/ltp/testcases/kernel/syscalls/dup/
dup07.c 27 HOW: Creat a file with each access mode; dup each file descriptor;
62 if ((rdoret = creat(testfile, 0444)) == -1) {
63 tst_resm(TFAIL, "Unable to creat file '%s'", testfile);
84 if ((wroret = creat(testfile, 0222)) == -1) {
85 tst_resm(TFAIL, "Unable to creat file '%s'", testfile);
107 if ((rdwret = creat(testfile, 0666)) == -1) {
108 tst_resm(TFAIL, "Unable to creat file '%s'", testfile);
  /external/ltp/testcases/kernel/syscalls/dup2/
dup203.c 84 if ((fd0 = creat(filename0, 0666)) == -1)
89 if ((fd1 = creat(filename1, 0666)) == -1)
135 if ((fd0 = creat(filename0, 0666)) == -1) {
143 if ((fd2 = creat(filename1, 0666)) == -1) {
  /external/ltp/testcases/kernel/syscalls/unlink/
unlink08.c 284 if ((fd = creat("unwrite_dir/file", 0777)) == -1) {
286 "creat(unwrite_dir/file, 0777) failed, errno:%d %s",
295 if ((fd = creat("unwrite_dir/file", 0777)) == -1) {
297 "creat(unwrite_dir/file, 0777) failed, errno:%d %s",
317 if ((fd = creat("unsearch_dir/file", 0777)) == -1) {
319 "creat(unsearch_dir/file, 0777) failed, errno:%d %s",
328 if ((fd = creat("unsearch_dir/file", 0777)) == -1) {
330 "creat(unsearch_dir/file, 0777) failed, errno:%d %s",
  /frameworks/base/cmds/interrupter/
interrupter.c 53 DEFINE_INTERCEPT(creat, int, const char*, mode_t);
  /system/core/libnativebridge/tests/
CodeCacheStatFail_test.cpp 29 int fd = creat(kCodeCache, O_RDWR);
  /bionic/libc/bionic/
open.cpp 50 int creat(const char* pathname, mode_t mode) { function
53 __strong_alias(creat64, creat);
  /external/tensorflow/tensorflow/java/src/gen/perl/
tftypes.pl 116 (my $name, my $builtin, my $jtype, my $creat, my $default, my $desc) =
142 if ($jtype ne '' && $creat eq 'y') {
174 if ($text =~ m/\b$tfname\b/ && $builtin eq 'n' && $creat eq 'y') {
  /external/ltp/testcases/kernel/fs/fs_di/
create_datafile.c 59 if ((fd = creat(argv[2], 0755)) == -1)
  /external/ltp/testcases/kernel/syscalls/creat/
creat03.c 22 * Creat a new file, fstat.st_mode should have the 01000 bit off
40 fd = creat(pfilname, 444);
43 tst_res(TFAIL | TERRNO, "creat(%s) failed", pfilname);
creat07.c 21 * Testcase to check creat(2) sets ETXTBSY correctly.
47 TEST(creat(TEST_APP, O_WRONLY));
50 tst_res(TFAIL, "creat() succeeded unexpectedly");
55 tst_res(TPASS, "creat() received EXTBSY");
57 tst_res(TFAIL | TTERRNO, "creat() failed unexpectedly");
  /external/ltp/testcases/network/nfs/nfs_stress/
nfs04_create_file.c 59 if ((fd = creat(argv[2], 0755)) == -1)
  /external/strace/tests/
readdir.c 76 assert(!creat(fname, 0600));
  /external/strace/tests-m32/
readdir.c 76 assert(!creat(fname, 0600));
  /external/strace/tests-mx32/
readdir.c 76 assert(!creat(fname, 0600));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
fcntl.h 165 extern int creat (__const char *__file, __mode_t __mode) __nonnull ((1));
168 extern int __REDIRECT (creat, (__const char *__file, __mode_t __mode),
171 # define creat creat64 macro
  /system/bt/osi/test/
wakelock_test.cc 68 creat(lock_path_.c_str(), S_IRWXU);
69 creat(unlock_path_.c_str(), S_IRWXU);
  /device/linaro/bootloader/edk2/StdLib/Include/sys/
EfiSysCall.h 35 int creat (const char *, mode_t);
237 The creat() function behaves as if it is implemented as follows:
239 int creat(const char *path, mode_t mode)
249 int creat (const char *Path, mode_t Mode);
fcntl.h 192 int creat(const char *, mode_t);
  /external/compiler-rt/test/asan/TestCases/Posix/
coverage-sandboxing.cc 66 int fd = creat("coverage_sandboxing_test.sancov.packed", 0660);
  /external/e2fsprogs/misc/
mklost+found.c 65 if ((d = creat (path, 0644)) == -1) {
66 perror ("creat");
  /external/ltp/testcases/kernel/fs/lftest/
lftest.c 66 if ((fd = creat("large_file", 0755)) == -1)
  /external/ltp/testcases/kernel/security/tomoyo/
tomoyo_file_test.c 199 close(creat(link_source_path, 0600));
200 close(creat(rename_source_path, 0600));
201 close(creat(truncate_path, 0600));
202 close(creat(unlink_path, 0600));
  /external/ltp/testcases/kernel/syscalls/chroot/
chroot02.c 123 if ((fileHandle = creat(TMP_FILENAME, 0777)) == -1)

Completed in 1786 milliseconds

1 2 3 4 5 6 7 8 9