HomeSort by relevance Sort by last modified time
    Searched refs:EPERM (Results 226 - 250 of 540) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/ltp/testcases/kernel/syscalls/move_pages/
move_pages11.c 36 * 4. Check if errno is set to EPERM.
170 if (ret == -1 && errno == EPERM)
172 "EPERM as expected");
175 "with EPERM ret: %d", ret);
  /external/ltp/testcases/kernel/syscalls/sched_setaffinity/
sched_setaffinity01.c 29 * 4) EPERM, if the calling process doesn't have appropriate
68 {&privileged_pid, &mask_size, &mask, EPERM},
  /external/ltp/testcases/kernel/syscalls/setresgid/
setresgid03.c 35 * 1. setresgid(2) fails with EPERM for unprivileged user in setting
37 * 2. setresgid(2) fails with EPERM for unprivileged user in setting
39 * 3. setresgid(2) fails with EPERM for unprivileged user in setting
41 * 4. setresgid(2) fails with EPERM for unprivileged user in setting
87 #define EXP_ERRNO EPERM
  /external/ltp/testcases/kernel/syscalls/setsid/
setsid01.c 184 if (errno == EPERM) {
186 "errno to EPERM");
  /external/ltp/testcases/kernel/syscalls/swapon/
swapon02.c 20 * 3. EPERM when user is not a superuser
62 {"Permission denied", EPERM, "EPERM", "./swapfile01",
  /external/ltp/testcases/kernel/syscalls/sysctl/
sysctl03.c 25 * Testcase to check that sysctl(2) sets errno to EPERM correctly.
30 * permissions even for the root, it should fail EPERM.
33 * permission for the regular user, it should fail with EPERM.
110 exp_eno = EPERM;
  /external/ltp/testcases/kernel/syscalls/syslog/
syslog12.c 40 * 5. syslog(2) fails with EPERM for non-root user.
115 {2, &buf, 0, EPERM, setup1, cleanup1, "non-root user"},
  /external/ltp/testcases/kernel/syscalls/unlink/
unlink08.c 150 "regdir", "directory", dir_setup, -1, EPERM},
  /external/ltp/testcases/kernel/syscalls/utime/
utime06.c 75 {TEMP_FILE, EPERM, &times, setup_nobody, cleanup_nobody},
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_setschedpolicy/
common.h 132 if (rc == EPERM)
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sched_setparam/
2-1.c 114 if (errno == EPERM) {
2-2.c 118 if (errno == EPERM) {
9-1.c 144 if (errno == EPERM) {
  /external/ltp/testcases/realtime/func/measurement/
rdtsc-latency.c 127 if (errno == EPERM) {
  /external/python/cpython2/Lib/plat-irix6/
ERRNO.py 13 EPERM = 1
  /external/syslinux/core/lwip/src/include/lwip/
arch.h 79 #define EPERM 1 /* Operation not permitted */
  /external/tensorflow/tensorflow/core/platform/posix/
error.cc 62 case EPERM: // Operation not permitted
  /frameworks/base/core/java/android/os/
RevocableFileDescriptor.java 84 * fail with {@link OsConstants#EPERM}.
93 * operations will fail with {@link OsConstants#EPERM}.
107 throw new ErrnoException(TAG, OsConstants.EPERM);
  /hardware/invensense/6515/libsensors_iio/software/core/driver/include/
mltypes.h 19 * - (1 / EPERM) INV_ERROR_FEATURE_NOT_ENABLED
159 #define INV_ERROR_FEATURE_NOT_ENABLED (EPERM)
  /hardware/invensense/65xx/libsensors_iio/software/core/driver/include/
mltypes.h 19 * - (1 / EPERM) INV_ERROR_FEATURE_NOT_ENABLED
159 #define INV_ERROR_FEATURE_NOT_ENABLED (EPERM)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/x86_64-linux/32/bits/
error_constants.h 130 operation_not_permitted = EPERM,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/x86_64-linux/bits/
error_constants.h 130 operation_not_permitted = EPERM,
  /prebuilts/go/darwin-x86/src/syscall/
creds_test.go 79 if err != syscall.EPERM {
80 t.Fatalf("WriteMsgUnix failed with %v, want EPERM", err)
  /prebuilts/go/linux-x86/src/syscall/
creds_test.go 79 if err != syscall.EPERM {
80 t.Fatalf("WriteMsgUnix failed with %v, want EPERM", err)
  /system/core/adb/client/
main.cpp 147 // setsid will fail with EPERM if it's already been a lead process of new session.
149 if (setsid() == -1 && errno != EPERM) {

Completed in 1348 milliseconds

1 2 3 4 5 6 7 8 91011>>