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

1 2 3 4 5 6 7 8 91011>>

  /external/python/cpython2/Mac/scripts/
mkestrres-errno.h 5 #define EACCES 38 /* Permission denied */
  /external/ltp/testcases/kernel/syscalls/access/
access01.c 70 {FNAME_R, X_OK, "X_OK", EACCES, 3},
71 {FNAME_R, W_OK, "W_OK", EACCES, 1},
72 {FNAME_W, R_OK, "R_OK", EACCES, 1},
73 {FNAME_W, X_OK, "X_OK", EACCES, 3},
74 {FNAME_X, R_OK, "R_OK", EACCES, 1},
75 {FNAME_X, W_OK, "W_OK", EACCES, 1},
77 {FNAME_R, W_OK|X_OK, "W_OK|X_OK", EACCES, 3},
78 {FNAME_R, R_OK|X_OK, "R_OK|X_OK", EACCES, 3},
79 {FNAME_R, R_OK|W_OK, "R_OK|W_OK", EACCES, 1},
80 {FNAME_R, R_OK|W_OK|X_OK, "R_OK|W_OK|X_OK", EACCES, 3}
    [all...]
  /bionic/libc/kernel/uapi/asm-generic/
errno-base.h 33 #define EACCES 13
  /external/kernel-headers/original/uapi/asm-generic/
errno-base.h 17 #define EACCES 13 /* Permission denied */
  /external/syslinux/dos/
errno.h 16 #define EACCES 13 /* Permission denied */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/asm-generic/
errno-base.h 16 #define EACCES 13 /* Permission denied */
  /external/ltp/testcases/kernel/syscalls/ipc/msgget/
msgget02.c 54 {&msgkey, MSG_RD, EACCES, 1},
55 {&msgkey, MSG_WR, EACCES, 1},
56 {&msgkey, MSG_RW, EACCES, 1}
  /external/ltp/testcases/kernel/syscalls/link/
link06.c 23 * Verify that, link() fails with -1 and sets errno to EACCES when Write access
70 EACCES);
72 if (TEST_ERRNO == EACCES) {
74 "error EACCES errno:%d", TEST_ERRNO);
78 TEST_ERRNO, EACCES);
link07.c 23 * Verify that, link() fails with -1 and sets errno to EACCES when one of the
70 "expected -1, errno=%d", TEST_RETURN, EACCES);
72 if (TEST_ERRNO == EACCES) {
77 ", expected errno=%d (EACCES)",
78 EACCES);
  /external/syslinux/gpxe/src/net/80211/
wpa_psk.c 61 net80211_deauthenticate ( dev, -EACCES );
62 return -EACCES;
89 return -EACCES;
  /bionic/libc/upstream-netbsd/lib/libc/gen/
nice.c 65 if (errno == EACCES)
  /external/ltp/testcases/kernel/syscalls/chdir/
chdir03.c 22 * Testcase for testing that chdir(2) sets EACCES errno
28 * and expects to get an EACCES.
55 if (TEST_ERRNO != EACCES) {
57 "chdir() should fail with EACCES");
  /external/ltp/testcases/kernel/syscalls/fchdir/
fchdir03.c 23 * Testcase for testing that fchdir(2) sets EACCES errno
30 * and expects to get an EACCES.
50 if (TEST_ERRNO != EACCES) {
51 tst_res(TFAIL | TTERRNO, "fchdir() should fail with EACCES");
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
getcwd.c 42 errno = EACCES; /* Most likely error */
69 errno = EACCES; /* Most likely error */
  /device/linaro/bootloader/edk2/StdLib/PosixLib/Gen/
access.c 43 function include: EACCES, ENOENT, ENOTDIR, ENAMETOOLONG
96 errno = EACCES; /* Writing is not OK. */
104 errno = EACCES;
  /external/ltp/testcases/kernel/syscalls/statfs/
statfs03.c 26 * Testcase to check that statfs(2) sets errno to EACCES when
93 if (TEST_ERRNO == EACCES) {
100 strerror(TEST_ERRNO), EACCES);
  /external/python/cpython2/Python/
getcwd.c 42 errno = EACCES; /* Most likely error */
69 errno = EACCES; /* Most likely error */
  /external/ltp/testcases/kernel/syscalls/unlink/
unlink08.c 142 -1, EACCES}, {
144 unsearch_dir_setup, -1, EACCES},
254 if (Test_cases[ind].exp_errno == EACCES && postest)
  /external/libusb/msvc/
errno.h 37 #define EACCES 13 /* Permission denied */
  /external/ltp/testcases/kernel/syscalls/chroot/
chroot04.c 25 * Testcase to check that chroot sets errno to EACCES.
29 * chroot() call should fail with EACCES
83 else if (TEST_ERRNO == EACCES)
87 "did not get EACCES as expected");
  /external/ltp/testcases/kernel/syscalls/ipc/shmget/
shmget04.c 25 * shmget04 - test for EACCES error
32 * issue a PASS message if we get EACCES
89 case EACCES:
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/shm_open/
20-3.c 62 } else if (errno == EACCES) {
32-1.c 10 * Test that the shm_open() function sets errno = EACCES if the shared memory
81 if (fd == -1 && errno == EACCES) {
  /hardware/google/av/codec2/vndk/include/
C2ErrnoUtils.h 27 template<> constexpr c2_status_t _c2_errno2status_impl<EACCES>() { return C2_REFUSED; }
  /external/curl/src/
tool_dirhie.c 54 #ifdef EACCES
55 case EACCES:

Completed in 451 milliseconds

1 2 3 4 5 6 7 8 91011>>