Home
last modified time | relevance | path

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

12345678910>>...14

/external/python/cpython3/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)
163 e = SubOSError(EEXIST, "Bad file descriptor")
/external/openssh/openbsd-compat/
Dmktemp.c83 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/
Dmkdtemp.h100 if (errno != EEXIST) in breakpad_mkdtemp()
104 assert(errno == EEXIST); in breakpad_mkdtemp()
/external/python/cpython2/Lib/
Dtempfile.py208 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/u-boot/fs/yaffs2/
Dyportenv.h201 #ifndef EEXIST
202 #define EEXIST 17 macro
Dyaffs_error.c36 { EEXIST , "EEXIST"},
/external/ltp/testcases/kernel/containers/sysvipc/
Dsemtest_2ns.c102 if (errno != EEXIST) { in check_sem1()
142 if (errno != EEXIST) { in check_sem2()
/external/linux-kselftest/tools/testing/selftests/bpf/
Dcgroup_helpers.c69 if (mkdir(cgroup_workdir, 0777) && errno != EEXIST) { in setup_cgroup_environment()
167 if (mkdir(cgroup_path, 0777) && errno != EEXIST) { in create_and_get_cgroup()
/external/ltp/testcases/open_posix_testsuite/conformance/definitions/errno_h/
D3-2.c45 EEXIST, "EEXIST", EEXIST}, {
/external/libcxx/include/
Derrno.h296 #ifndef EEXIST
297 #define EEXIST 9955 macro
/external/gflags/src/
Dutil.h241 if (err == 0 || errno == EEXIST) return;
252 if (err == 0 || errno == EEXIST) return;
265 if (err == 0 || errno == EEXIST) return;
/external/python/oauth2client/tests/contrib/
Dtest_locked_file.py123 mock_os_open.side_effect = [OSError(errno.EEXIST, '')]
141 mock_os_open.side_effect = [OSError(errno.EEXIST, '')]
159 OSError(errno.EEXIST, ''), mock.Mock()]
/external/python/cpython2/Demo/pdist/
Dcvslock.py85 EEXIST = 17 variable
134 if msg[0] == EEXIST:
/external/libcxx/test/std/diagnostics/errno/
Dcerrno.pass.cpp91 #ifndef EEXIST
92 #error EEXIST not defined
/external/selinux/libsepol/include/sepol/
Derrcodes.h26 #define SEPOL_EEXIST -EEXIST
/external/libchrome/mojo/public/tools/bindings/pylib/mojom/
Dfileutil.py17 if e.errno != errno.EEXIST:
/external/chromium-trace/catapult/common/py_utils/py_utils/
Dfile_util.py21 if e.errno != errno.EEXIST:
/external/python/setuptools/pkg_resources/
Dpy31compat.py10 if not exist_ok or exc.errno != errno.EEXIST:
/external/u-boot/arch/x86/lib/
Dmrccache.c126 return -EEXIST; in mrccache_update()
249 } else if (ret == -EEXIST) { in mrccache_save()
/external/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()
/external/kernel-headers/original/uapi/asm-generic/
Derrno-base.h21 #define EEXIST 17 /* File exists */ macro
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/shm_open/
D22-1.c37 if (fd == -1 && errno == EEXIST) { in main()
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/shm_unlink/
D5-1.c40 if (fd == -1 && errno == EEXIST) { in main()

12345678910>>...14