HomeSort by relevance Sort by last modified time
    Searched refs:creat (Results 176 - 200 of 327) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/compiler-rt/lib/esan/
esan_interceptors.cpp 281 INTERCEPTOR(int, creat, const char *name, int mode) {
283 COMMON_INTERCEPTOR_ENTER(ctx, creat, name, mode);
285 return REAL(creat)(name, mode);
520 INTERCEPT_FUNCTION(creat);
  /external/ltp/testcases/kernel/containers/mqns/
mqns_03.c 95 rc = creat(FNAM2, 0755);
97 write(p2[1], "creat", 6);
181 } else if (!strcmp(buf, "creat")) {
182 tst_resm(TFAIL, "child couldn't creat mq through mqueuefs");
196 "creat(2)'d file gone after remount of mqueuefs");
mqns_04.c 173 rc = creat(FNAM2, 0755);
  /external/ltp/testcases/kernel/fs/ext4-new-features/ext4-inode-version/
ext4_test_inode_version.c 175 fd = creat(argv[2], O_RDWR);
  /external/ltp/testcases/kernel/fs/fs-bench/
random-access-del-create.c 99 if ((fd = creat(filename, S_IRWXU)) < 0) {
random-del-create.c 97 if ((fd = creat(filename, S_IRWXU)) < 0) {
  /external/ltp/testcases/kernel/syscalls/creat/
creat06.c 22 * Testcase to check creat(2) sets the following errnos correctly:
34 * 1. Attempt to creat(2) an existing directory, and test for
36 * 2. Attempt to creat(2) a file whose name is more than
38 * 3. Attempt to creat(2) a file inside a directory which doesn't
40 * 4. Attempt to creat(2) a file, the pathname of which comprises
42 * 5. Attempt to creat(2) a file with a bad address
44 * 6. Attempt to creat(2) a file in a directory with no
46 * 7. Attempt to creat(2) a file which links the other file that
48 * 8. Attempt to creat(2) a file in a Read-only file system
107 TEST(creat(tcases[i].fname, tcases[i].mode))
    [all...]
  /external/ltp/testcases/kernel/syscalls/flock/
flock03.c 184 fd = creat(FILE_NAME, 0666);
  /external/ltp/testcases/kernel/syscalls/fork/
fork09.c 86 first = creat(filname, 0660);
fork04.c 144 fildes = creat(OUTPUT_FILE, 0700);
  /external/ltp/testcases/kernel/syscalls/getxattr/
getxattr01.c 145 fd = creat(filename, 0644);
  /external/ltp/testcases/kernel/syscalls/open/
open08.c 155 fildes = creat(filename, 0600);
157 tst_brkm(TBROK, cleanup, "Can't creat %s", filename);
  /external/ltp/testcases/kernel/syscalls/sendfile/
sendfile08.c 104 in_fd = creat(in_file, 0700);
sendfile04.c 185 if ((fd = creat(in_file, 00700)) < 0) {
186 tst_brkm(TBROK, cleanup, "creat failed in setup, errno: %d",
sendfile05.c 149 if ((fd = creat(in_file, 00700)) < 0) {
150 tst_brkm(TBROK, cleanup, "creat failed in setup, errno: %d",
  /external/ltp/testcases/kernel/syscalls/unlink/
unlink07.c 302 if ((fd = creat("file", 0777)) == -1) {
303 tst_brkm(TBROK, cleanup, "creat(file) failed, errno:%d %s",
  /toolchain/binutils/binutils-2.25/binutils/
rename.c 55 tofd = creat (to, 0777);
  /external/strace/linux/aarch64/
syscallent.h 56 [1064] = { 2, TD|TF, SEN(creat), "creat" },
  /system/core/adb/
sysdeps.h 499 int fd = TEMP_FAILURE_RETRY( creat( path, mode ) );
507 #undef creat
508 #define creat ___xxx_creat
  /bionic/libc/include/
fcntl.h 72 int creat(const char*, mode_t);
  /external/autotest/client/deps/fakegudev/src/
fakesyscalls.c 21 /* The purpose of this library is to override the open/creat syscalls to
47 * simultaneously call open/creat for the first time, internal data-structures
49 * It is safe to have subsequent calls to open/creat be concurrent.
85 static const char *k_func_creat = "creat";
233 creat (const char *pathname, mode_t mode) function
245 "Redirect: creat (%s, %d) --> creat (%s, %d)",
  /external/ltp/testcases/kernel/syscalls/setrlimit/
setrlimit01.c 148 fd = creat(filename, 0644);
  /external/ltp/testcases/kernel/syscalls/stat/
stat06.c 347 if ((fd = creat("file", 0777)) == -1) {
348 tst_brkm(TBROK, cleanup, "creat(file) failed, errno:%d %s",
  /external/syslinux/dos/
syslinux.c 73 int creat(const char *filename, int mode) function
78 dprintf("creat(\"%s\", 0x%x)\n", filename, mode);
681 fd = creat(ldlinux_name, 0); /* SYSTEM HIDDEN READONLY */
688 fd = creat(ldlinuxc32_name, 0); /* SYSTEM HIDDEN READONLY */
758 fd = creat(opt.bootsecfile, 0x20); /* ARCHIVE */
  /system/core/bootstat/
boot_event_record_store.cpp 72 int record_fd = creat(record_path.c_str(), S_IRUSR | S_IWUSR);

Completed in 636 milliseconds

1 2 3 4 5 6 78 91011>>