Home
last modified time | relevance | path

Searched refs:EEXIST (Results 1 – 25 of 318) sorted by relevance

12345678910>>...13

/third_party/python/Lib/test/
Dtest_exception_hierarchy.py7 from errno import EEXIST
85 e = OSError(EEXIST, "Bad file descriptor")
129 e = OSError(EEXIST, "File already exists", "foo.txt")
130 self.assertEqual(e.errno, EEXIST)
131 self.assertEqual(e.args[0], EEXIST)
142 self.assertEqual(e.errno, EEXIST)
143 self.assertEqual(e.args[0], EEXIST)
168 e = SubOSError(EEXIST, "Bad file descriptor")
/third_party/ltp/testcases/kernel/syscalls/init_module/
Dinit_module02.c46 {"module-exists", &buf, &size, "", 0, 1, EEXIST},
80 if (tc->exp_errno == EEXIST) in run()
86 if (tc->exp_errno == EEXIST) in run()
/third_party/ltp/testcases/kernel/syscalls/finit_module/
Dfinit_module02.c71 {"module-exists", &fd, "", O_RDONLY | O_CLOEXEC, 0, 0, EEXIST, 1,
118 if (tc->exp_errno == EEXIST) in run()
124 if (tc->exp_errno == EEXIST) in run()
/third_party/rust/crates/nix/src/
Derrno.rs165 EEXIST => "File exists", in desc()
1141 EEXIST = libc::EEXIST, enumerator
1286 libc::EEXIST => EEXIST, in from_i32()
1431 EEXIST = libc::EEXIST, enumerator
1549 libc::EEXIST => EEXIST, in from_i32()
1667 EEXIST = libc::EEXIST, enumerator
1776 libc::EEXIST => EEXIST, in from_i32()
1884 EEXIST = libc::EEXIST, enumerator
1993 libc::EEXIST => EEXIST, in from_i32()
2099 EEXIST = libc::EEXIST, enumerator
[all …]
/third_party/musl/src/thread/
Dsem_open.c80 errno = EEXIST; in sem_open()
123 if (errno == EEXIST) continue; in sem_open()
142 if (e != EEXIST || flags == (O_CREAT|O_EXCL)) in sem_open()
/third_party/musl/porting/liteos_a/user/src/thread/
Dsem_open.c80 errno = EEXIST; in sem_open()
120 if (errno == EEXIST) continue; in sem_open()
136 if (e != EEXIST || flags == (O_CREAT|O_EXCL)) in sem_open()
/third_party/node/test/parallel/
Dtest-fs-mkdir-rmdir.js21 }, /EEXIST: file already exists, mkdir/);
32 assert.match(err.message, /^EEXIST/);
/third_party/musl/libc-test/src/functional/
Dsem_open.c30 TEST(errno == EEXIST, in main()
31 "after reopen failure errno is \"%s\" (%d); want EEXIST (%d)\n", strerror(errno), errno, EEXIST); in main()
/third_party/ltp/testcases/open_posix_testsuite/conformance/definitions/errno_h/
D3-2.c45 EEXIST, "EEXIST", EEXIST}, {
/third_party/libbpf/src/
Dstrset.c71 if (err == -EEXIST) in strset__new()
170 if (err == -EEXIST) in strset__add_str()
/third_party/elfutils/debuginfod/
Ddebuginfod-client.c675 rc = -EEXIST; in extract_section()
788 int rc = -EEXIST; in cache_find_section()
802 if (rc == -EEXIST) in cache_find_section()
1009 rc = -EEXIST; in debuginfod_query_server()
1020 && (errno != EEXIST in debuginfod_query_server()
1052 && errno != EEXIST) in debuginfod_query_server()
1923 rc = -EEXIST; in debuginfod_find_section()
1945 if (rc == -EEXIST) in debuginfod_find_section()
/third_party/selinux/libsepol/include/sepol/
Derrcodes.h25 #define SEPOL_EEXIST (-EEXIST)
/third_party/ltp/testcases/kernel/syscalls/symlink/
Dsymlink01.c345 SYMLINK, 1, EEXIST, 2, creat_symlink, ck_symlink, {
385 MKDIR, 1, EEXIST, 10, creat_symlink, ck_symlink, {
437 OPEN, 1, EEXIST, 26, creat_symlink, ck_symlink, {
944 else if (tc_ptr->errno_val == EEXIST) in do_syscalltests()
1030 if ((TEST_RETURN == -1) && (errno == EEXIST)) in do_EEXIST()
1040 if ((TEST_RETURN == -1) && (errno == EEXIST)) { in do_EEXIST()
1053 if ((TEST_RETURN == -1) && (errno == EEXIST)) { in do_EEXIST()
/third_party/musl/src/temp/
Dmkdtemp.c19 } while (--retries && errno == EEXIST); in mkdtemp()
Dmktemp.c28 errno = EEXIST; in mktemp()
/third_party/libuv/src/unix/
Dos390-syscalls.c258 errno = EEXIST; in epoll_ctl()
425 else if (errno != EEXIST) in mkdtemp()
432 errno = EEXIST; in mkdtemp()
/third_party/node/deps/uv/src/unix/
Dos390-syscalls.c258 errno = EEXIST; in epoll_ctl()
425 else if (errno != EEXIST) in mkdtemp()
432 errno = EEXIST; in mkdtemp()
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/sem_open/
D4-1.c41 if ((mysemp == SEM_FAILED) && (errno == EEXIST)) { in main()
D2-2.c41 if (errno != EEXIST) { in main()
D2-1.c48 if ((mysemp == SEM_FAILED) && (errno == EEXIST)) { in main()
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/shm_open/
D22-1.c37 if (fd == -1 && errno == EEXIST) { in main()
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/shm_unlink/
D5-1.c40 if (fd == -1 && errno == EEXIST) { in main()
/third_party/musl/libc-test/src/functionalext/supplement/stat/
Dmkfifo.c47 EXPECT_EQ("mkfifo_0200", errno, EEXIST); in mkfifo_0200()
/third_party/musl/libc-test/src/functionalext/supplement/unistd/
Dlink.c48 EXPECT_EQ("link_0200", errno, EEXIST); in link_0200()
/third_party/skia/third_party/externals/jinja2/
Dbccache.py218 if e.errno != errno.EEXIST:
230 if e.errno != errno.EEXIST:

12345678910>>...13