HomeSort by relevance Sort by last modified time
    Searched refs:EEXIST (Results 1 - 25 of 488) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/selinux/libsepol/include/sepol/
errcodes.h 26 #define SEPOL_EEXIST -EEXIST
  /external/libmojo/mojo/public/tools/bindings/pylib/mojom/
fileutil.py 17 if e.errno != errno.EEXIST:
  /toolchain/binutils/binutils-2.27/libiberty/
rename.c 29 if (errno != EEXIST)
  /bionic/libc/kernel/uapi/asm-generic/
errno-base.h 37 #define EEXIST 17
  /external/kernel-headers/original/uapi/asm-generic/
errno-base.h 21 #define EEXIST 17 /* File exists */
  /external/syslinux/dos/
errno.h 20 #define EEXIST 17 /* File exists */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/asm-generic/
errno-base.h 20 #define EEXIST 17 /* File exists */
  /prebuilts/go/darwin-x86/src/os/
error_unix_test.go 16 isExistTest{err: &os.PathError{Err: syscall.EEXIST}, is: true, isnot: false},
19 isExistTest{err: &os.LinkError{Err: syscall.EEXIST}, is: true, isnot: false},
22 isExistTest{err: &os.SyscallError{Err: syscall.EEXIST}, is: true, isnot: false},
28 isPermissionTest{err: &os.PathError{Err: syscall.EEXIST}, want: false},
32 isPermissionTest{err: &os.LinkError{Err: syscall.EEXIST}, want: false},
36 isPermissionTest{err: &os.SyscallError{Err: syscall.EEXIST}, want: false},
  /prebuilts/go/linux-x86/src/os/
error_unix_test.go 16 isExistTest{err: &os.PathError{Err: syscall.EEXIST}, is: true, isnot: false},
19 isExistTest{err: &os.LinkError{Err: syscall.EEXIST}, is: true, isnot: false},
22 isExistTest{err: &os.SyscallError{Err: syscall.EEXIST}, is: true, isnot: false},
28 isPermissionTest{err: &os.PathError{Err: syscall.EEXIST}, want: false},
32 isPermissionTest{err: &os.LinkError{Err: syscall.EEXIST}, want: false},
36 isPermissionTest{err: &os.SyscallError{Err: syscall.EEXIST}, want: false},
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sem_open/
2-2.c 41 if (errno != EEXIST) {
4-1.c 41 if ((mysemp == SEM_FAILED) && (errno == EEXIST)) {
2-1.c 48 if ((mysemp == SEM_FAILED) && (errno == EEXIST)) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/shm_open/
22-1.c 37 if (fd == -1 && errno == EEXIST) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/shm_unlink/
5-1.c 40 if (fd == -1 && errno == EEXIST) {
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
gettemp.c 148 if (errno != EEXIST)
153 if (errno != EEXIST)
  /external/google-breakpad/src/common/android/testing/
mkdtemp.h 100 if (errno != EEXIST)
104 assert(errno == EEXIST);
  /external/python/cpython3/Lib/test/
test_exception_hierarchy.py 7 from errno import EEXIST
61 +-- FileExistsError 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)
139 # ERROR_ALREADY_EXISTS (183) -> EEXIST
142 self.assertEqual(e.errno, EEXIST)
143 self.assertEqual(e.args[0], EEXIST)
163 e = SubOSError(EEXIST, "Bad file descriptor"
    [all...]
  /system/core/lmkd/
liblmkd_utils.c 52 errno != EEXIST) {
58 errno != EEXIST) {
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
mktemp.c 97 if (fd != -1 || errno != EEXIST)
103 if (errno != EEXIST)
109 errno = EEXIST;
  /external/libusb/msvc/
errno.h 41 #define EEXIST 17 /* File exists */
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/mq_open/
23-1.c 10 * Test that mq_open() fails with EEXIST if O_CREAT and O_EXCL are set
58 if (errno != EEXIST) {
59 printf("errno != EEXIST\n");
66 printf("errno == EEXIST\n");
  /external/strace/tests/
attach-p-cmd-p.c 49 if (EEXIST != errno)
  /external/strace/tests-m32/
attach-p-cmd-p.c 49 if (EEXIST != errno)
  /external/strace/tests-mx32/
attach-p-cmd-p.c 49 if (EEXIST != errno)
  /system/core/libutils/include/utils/
Errors.h 58 ALREADY_EXISTS = -EEXIST,

Completed in 1587 milliseconds

1 2 3 4 5 6 7 8 91011>>