Searched refs:EACCES (Results 101 - 125 of 229) sorted by relevance

12345678910

/external/python/cpython2/Lib/
H A Dtempfile.py210 if (_os.name == 'nt' and e.args[0] == _errno.EACCES and
213 # exists, EACCES error code is returned instead of EEXIST.
250 if (_os.name == 'nt' and e.errno == _errno.EACCES and
253 # exists, EACCES error code is returned instead of EEXIST.
344 if (_os.name == 'nt' and e.errno == _errno.EACCES and
347 # exists, EACCES error code is returned instead of EEXIST.
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A Dsystem_error.h185 permission_denied, // EACCES
418 # ifndef EACCES
419 # define EACCES 13 macro
588 permission_denied = EACCES,
/external/ltp/lib/
H A Derrnos.h45 PAIR(EACCES)
/external/ltp/testcases/kernel/syscalls/acct/
H A Dacct01.c72 {TEST_FILE2, "EACCES", EACCES, NULL, NULL},
/external/ltp/testcases/kernel/syscalls/chmod/
H A Dchmod06.c29 * 2) chmod(2) returns -1 and sets errno to EACCES if search permission is
91 {TEST_FILE2, FILE_MODE, EACCES, set_nobody, set_root},
/external/ltp/testcases/kernel/syscalls/chown/
H A Dchown04.c29 * 2) chown(2) returns -1 and sets errno to EACCES if search permission is
79 {TEST_FILE2, EACCES},
/external/ltp/testcases/kernel/syscalls/linkat/
H A Dlinkat02.c75 {TEST_EACCES, TEST_EACCES2, 0, EACCES, setup_eacces, cleanup_eacces},
/external/ltp/testcases/kernel/syscalls/stat/
H A Dstat03.c25 * 1) stat(2) returns -1 and sets errno to EACCES if search permission is
98 int setup1(); /* setup function to test chmod for EACCES */
114 TEST_FILE1, "No Search permissions to process", EACCES, setup1},
268 * returns -1 and sets errno to EACCES.
/external/ltp/testcases/kernel/syscalls/symlink/
H A Dsymlink03.c25 * 1) symlink(2) returns -1 and sets errno to EACCES if search/write
108 int setup1(); /* setup function to test symlink for EACCES */
125 EACCES, setup1}, {
272 * returns -1 and sets errno to EACCES.
/external/ltp/testcases/kernel/syscalls/truncate/
H A Dtruncate03.c22 * 1) truncate(2) returns -1 and sets errno to EACCES if search/write
77 { TEST_FILE1, TRUNC_LEN, EACCES },
/external/ltp/testcases/kernel/syscalls/utimensat/
H A Dutimensat01.c51 (e.g., EACCES and EPERM), and one of the following for unexpected
246 } else if (errno == EACCES) {
248 printf("utimensat() failed with EACCES\n");
250 printf("EACCES\n");
/external/ltp/testcases/kernel/syscalls/utimes/
H A Dutimes01.c23 * 1) utimes() returns -1 and sets errno to EACCES if times
80 { TESTFILE2, NULL, EACCES },
/external/parameter-framework/asio/include/asio/
H A Derror.hpp35 access_denied = ASIO_SOCKET_ERROR(EACCES),
/external/parameter-framework/asio-1.10.6/include/asio/
H A Derror.hpp35 access_denied = ASIO_SOCKET_ERROR(EACCES),
/external/selinux/policycoreutils/setfiles/
H A Drestorecon_xattr.c85 if (lstat(optarg, &sb) < 0 && errno != EACCES) {
H A Dsetfiles.c278 if (lstat(optarg, &sb) < 0 && errno != EACCES) {
343 if (lstat(optarg, &sb) < 0 && errno != EACCES) {
/external/libpcap/
H A Dpcap-libdlpi.c114 (errno == EPERM || errno == EACCES))
257 (errno == EPERM || errno == EACCES))
H A Dpcap-dlpi.c379 if (errno == EPERM || errno == EACCES)
428 if (errno == EPERM || errno == EACCES)
468 if (errno == EPERM || errno == EACCES)
1059 * that" error (EPERM, EACCES).
1148 dlp->error_ack.dl_unix_errno == EACCES)
/external/libdrm/tests/amdgpu/
H A Dcs_tests.c80 if ((r == -EACCES) && (errno == EACCES))
/external/minijail/linux-x86/
H A Dlibconstants.gen.c131 #ifdef EACCES
132 { "EACCES", (unsigned long) EACCES },
133 #endif // EACCES
/external/bison/lib/
H A Dspawni.c352 case EACCES:
/external/fio/os/windows/
H A Dposix.c49 case ERROR_ACCESS_DENIED: return EACCES;
58 case ERROR_SHARING_VIOLATION: return EACCES;
59 case ERROR_LOCK_VIOLATION: return EACCES;
902 errno = EACCES;
/external/gptfdisk/
H A Ddiskio-unix.cc65 if (errno == EACCES) // User is probably not running as root
/external/libbrillo/brillo/errors/
H A Derror_codes.cc47 ERROR_ENTRY(EACCES), // Permission denied
/external/libcxx/test/std/diagnostics/syserr/
H A Derrc.pass.cpp85 static_assert(static_cast<int>(std::errc::permission_denied) == EACCES, "");

Completed in 2586 milliseconds

12345678910