/third_party/python/Lib/test/ |
D | test_exception_hierarchy.py | 7 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/ |
D | init_module02.c | 46 {"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/ |
D | finit_module02.c | 71 {"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/ |
D | errno.rs | 165 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/ |
D | sem_open.c | 80 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/ |
D | sem_open.c | 80 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/ |
D | test-fs-mkdir-rmdir.js | 21 }, /EEXIST: file already exists, mkdir/); 32 assert.match(err.message, /^EEXIST/);
|
/third_party/musl/libc-test/src/functional/ |
D | sem_open.c | 30 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/ |
D | 3-2.c | 45 EEXIST, "EEXIST", EEXIST}, {
|
/third_party/libbpf/src/ |
D | strset.c | 71 if (err == -EEXIST) in strset__new() 170 if (err == -EEXIST) in strset__add_str()
|
/third_party/elfutils/debuginfod/ |
D | debuginfod-client.c | 675 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/ |
D | errcodes.h | 25 #define SEPOL_EEXIST (-EEXIST)
|
/third_party/ltp/testcases/kernel/syscalls/symlink/ |
D | symlink01.c | 345 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/ |
D | mkdtemp.c | 19 } while (--retries && errno == EEXIST); in mkdtemp()
|
D | mktemp.c | 28 errno = EEXIST; in mktemp()
|
/third_party/libuv/src/unix/ |
D | os390-syscalls.c | 258 errno = EEXIST; in epoll_ctl() 425 else if (errno != EEXIST) in mkdtemp() 432 errno = EEXIST; in mkdtemp()
|
/third_party/node/deps/uv/src/unix/ |
D | os390-syscalls.c | 258 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/ |
D | 4-1.c | 41 if ((mysemp == SEM_FAILED) && (errno == EEXIST)) { in main()
|
D | 2-2.c | 41 if (errno != EEXIST) { in main()
|
D | 2-1.c | 48 if ((mysemp == SEM_FAILED) && (errno == EEXIST)) { in main()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/shm_open/ |
D | 22-1.c | 37 if (fd == -1 && errno == EEXIST) { in main()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/shm_unlink/ |
D | 5-1.c | 40 if (fd == -1 && errno == EEXIST) { in main()
|
/third_party/musl/libc-test/src/functionalext/supplement/stat/ |
D | mkfifo.c | 47 EXPECT_EQ("mkfifo_0200", errno, EEXIST); in mkfifo_0200()
|
/third_party/musl/libc-test/src/functionalext/supplement/unistd/ |
D | link.c | 48 EXPECT_EQ("link_0200", errno, EEXIST); in link_0200()
|
/third_party/skia/third_party/externals/jinja2/ |
D | bccache.py | 218 if e.errno != errno.EEXIST: 230 if e.errno != errno.EEXIST:
|