/external/python/cpython3/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")
|
/external/openssh/openbsd-compat/ |
D | mktemp.c | 83 if (fd != -1 || errno != EEXIST) in mktemp_internal() 89 if (errno != EEXIST) in mktemp_internal() 95 errno = EEXIST; in mktemp_internal()
|
/external/google-breakpad/src/common/android/testing/ |
D | mkdtemp.h | 100 if (errno != EEXIST) in breakpad_mkdtemp() 104 assert(errno == EEXIST); in breakpad_mkdtemp()
|
/external/llvm-project/llvm/utils/gn/build/ |
D | symlink_or_copy.py | 28 if e.errno != errno.EEXIST: 33 if e.errno == errno.EEXIST:
|
/external/ltp/testcases/kernel/crypto/ |
D | crypto_user02.c | 50 if (TST_RET != 0 && TST_RET != -EEXIST) { in run() 71 if (TST_RET && TST_RET != -EEXIST) in run()
|
/external/python/cpython2/Lib/ |
D | tempfile.py | 208 if e.args[0] == _errno.EEXIST: 248 if e.errno == _errno.EEXIST: 257 raise IOError, (_errno.EEXIST, "No usable temporary file name found") 342 if e.errno == _errno.EEXIST: 351 raise IOError, (_errno.EEXIST, "No usable temporary directory name found") 380 raise IOError, (_errno.EEXIST, "No usable temporary filename found")
|
/external/iptables/iptables/tests/shell/testcases/iptables/ |
D | 0004-return-codes_0 | 35 EEXIST=": Chain already exists." 47 cmd 1 "$EEXIST" -N foo
|
/external/rust/crates/nix/src/ |
D | errno.rs | 138 EEXIST => "File exists", in desc() 656 EEXIST = libc::EEXIST, enumerator 799 libc::EEXIST => EEXIST, in from_i32() 943 EEXIST = libc::EEXIST, enumerator 1061 libc::EEXIST => EEXIST, in from_i32() 1178 EEXIST = libc::EEXIST, enumerator 1286 libc::EEXIST => EEXIST, in from_i32() 1394 EEXIST = libc::EEXIST, enumerator 1501 libc::EEXIST => EEXIST, in from_i32() 1607 EEXIST = libc::EEXIST, enumerator [all …]
|
/external/ltp/testcases/kernel/containers/sysvipc/ |
D | semtest_2ns.c | 102 if (errno != EEXIST) { in check_sem1() 142 if (errno != EEXIST) { in check_sem2()
|
/external/llvm-project/libcxx/include/ |
D | errno.h | 295 #ifndef EEXIST 296 #define EEXIST 9955 macro
|
/external/ltp/testcases/open_posix_testsuite/conformance/definitions/errno_h/ |
D | 3-2.c | 45 EEXIST, "EEXIST", EEXIST}, {
|
/external/libcxx/include/ |
D | errno.h | 296 #ifndef EEXIST 297 #define EEXIST 9955 macro
|
/external/gflags/src/ |
D | util.h | 241 if (err == 0 || errno == EEXIST) return; 252 if (err == 0 || errno == EEXIST) return; 265 if (err == 0 || errno == EEXIST) return;
|
/external/selinux/libsepol/include/sepol/ |
D | errcodes.h | 26 #define SEPOL_EEXIST -EEXIST
|
/external/linux-kselftest/tools/testing/selftests/bpf/ |
D | cgroup_helpers.c | 123 if (mkdir(cgroup_workdir, 0777) && errno != EEXIST) { in setup_cgroup_environment() 224 if (mkdir(cgroup_path, 0777) && errno != EEXIST) { in create_and_get_cgroup()
|
/external/libchrome/mojo/public/tools/bindings/pylib/mojom/ |
D | fileutil.py | 17 if e.errno != errno.EEXIST:
|
/external/python/oauth2client/tests/contrib/ |
D | test_locked_file.py | 123 mock_os_open.side_effect = [OSError(errno.EEXIST, '')] 141 mock_os_open.side_effect = [OSError(errno.EEXIST, '')] 159 OSError(errno.EEXIST, ''), mock.Mock()]
|
/external/chromium-trace/catapult/common/py_utils/py_utils/ |
D | file_util.py | 21 if e.errno != errno.EEXIST:
|
/external/python/setuptools/pkg_resources/ |
D | py31compat.py | 10 if not exist_ok or exc.errno != errno.EEXIST:
|
/external/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()
|
/external/kernel-headers/original/uapi/asm-generic/ |
D | errno-base.h | 21 #define EEXIST 17 /* File exists */ macro
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/shm_unlink/ |
D | 5-1.c | 40 if (fd == -1 && errno == EEXIST) { in main()
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/shm_open/ |
D | 22-1.c | 37 if (fd == -1 && errno == EEXIST) { in main()
|
/external/python/cpython2/Demo/pdist/ |
D | cvslock.py | 85 EEXIST = 17 variable 134 if msg[0] == EEXIST:
|