Searched refs:EPERM (Results 1 - 25 of 495) sorted by relevance

1234567891011>>

/netbsd-current/external/gpl3/gdb.old/dist/sim/testsuite/sim/cris/c/
H A Dkill1.c11 || errno != EPERM)
20 || errno != EPERM)
/netbsd-current/external/gpl3/gdb/dist/sim/testsuite/cris/c/
H A Dkill1.c11 || errno != EPERM)
20 || errno != EPERM)
/netbsd-current/external/gpl3/gdb/dist/gnulib/import/
H A Dfchown-stub.c32 errno = EPERM;
H A Dopenat-priv.h55 || (Errno) == EPERM || (Errno) == EACCES \
/netbsd-current/external/bsd/am-utils/dist/amd/
H A Dops_TEMPLATE.c127 error = EPERM; /* XXX: fixme */
143 error = EPERM; /* XXX: fixme */
159 error = EPERM; /* XXX: fixme */
175 error = EPERM; /* XXX: fixme */
191 error = EPERM; /* XXX: fixme */
208 error = EPERM; /* XXX: fixme */
227 error = EPERM; /* XXX: fixme */
244 error = EPERM; /* XXX: fixme */
/netbsd-current/lib/libc/sys/
H A Dadjtime.c64 * clockctl if that fails with EPERM
70 * try via clockctl if the call fails with EPERM
72 if (rv != -1 || errno != EPERM)
81 /* original error was EPERM - don't leak open errors */
82 errno = EPERM;
H A Dclock_settime.c72 * return unless we failed with EPERM
74 if (rv != -1 || errno != EPERM)
83 /* original error was EPERM - don't leak open errors */
84 errno = EPERM;
H A Dntp_adjtime.c79 * if we fail with EPERM we try the clockctl device
81 if (rv != -1 || errno != EPERM)
91 /* original error was EPERM - don't leak open errors */
92 errno = EPERM;
H A Dsettimeofday.c66 * if that fails with EPERM
72 * switch to clockctl if we fail with EPERM, this
77 if (rv != -1 || errno != EPERM)
82 /* original error was EPERM - don't leak open errors */
83 errno = EPERM;
/netbsd-current/lib/libc/gen/
H A Dnice.c66 errno = EPERM;
/netbsd-current/sys/lib/libsa/
H A Dstrerror.c47 { EPERM, "Operation not permitted" },
/netbsd-current/sys/external/isc/libsodium/dist/src/libsodium/sodium/
H A Dcore.c113 # ifdef EPERM
114 errno = EPERM;
146 # ifdef EPERM
147 errno = EPERM;
/netbsd-current/external/gpl3/gdb.old/dist/gnulib/import/
H A Dopenat-priv.h55 || (Errno) == EPERM || (Errno) == EACCES \
/netbsd-current/tests/kernel/
H A Dt_memfd_create.c208 ATF_REQUIRE_ERRNO(EPERM, true);
227 ATF_REQUIRE_ERRNO(EPERM, true);
249 ATF_REQUIRE_MSG(errno != EPERM,
251 ATF_REQUIRE_MSG(errno == EPERM,
261 ATF_REQUIRE_MSG(errno != EPERM,
263 ATF_REQUIRE_MSG(errno == EPERM,
277 ATF_REQUIRE_MSG(errno != EPERM,
279 ATF_REQUIRE_MSG(errno == EPERM,
288 ATF_REQUIRE_MSG(errno != EPERM,
290 ATF_REQUIRE_MSG(errno == EPERM,
[all...]
/netbsd-current/sys/arch/ia64/stand/common/
H A Dload_elf64.c68 err = EPERM;
79 err = EPERM;
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/config/os/mingw32/
H A Derror_constants.h107 #ifdef EPERM
108 operation_not_permitted = EPERM,
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/config/os/mingw32/
H A Derror_constants.h107 #ifdef EPERM
108 operation_not_permitted = EPERM,
/netbsd-current/external/ibm-public/postfix/dist/src/util/
H A Dsafe_open.c47 /* cannot be reported via \fIerrno\fR, the generic value EPERM
124 errno = EPERM;
153 errno = EPERM;
169 errno = EPERM;
178 errno = EPERM;
/netbsd-current/usr.bin/skeyinfo/
H A Dskeyinfo.c67 errno = EPERM;
/netbsd-current/tests/lib/libc/termios/
H A Dt_tcsetpgrp.c64 * fail with EPERM (and not EINVAL).
69 if (rv == 0 || errno != EPERM)
/netbsd-current/tests/fs/vfs/
H A Dt_unpriv.c58 if (rump_sys_chown(".", 1, -1) != -1 || errno != EPERM)
60 if (rump_sys_chmod(".", 0000) != -1 || errno != EPERM)
159 if (rump_sys_utimes(name, tmv) != -1 || errno != EPERM)
202 if (rump_sys_chflags(name, fflags) != -1 || errno != EPERM)
/netbsd-current/tests/lib/libc/sys/
H A Dt_ptrace.c79 ATF_REQUIRE_ERRNO(EPERM, ptrace(PT_ATTACH, 0, NULL, 0) == -1);
93 ATF_REQUIRE_ERRNO(EPERM, ptrace(PT_ATTACH, 1, NULL, 0) == -1);
118 ATF_REQUIRE_ERRNO(EPERM, ptrace(PT_ATTACH, 1, NULL, 0) == -1);
171 ATF_REQUIRE_ERRNO(EPERM,
/netbsd-current/external/apache2/llvm/dist/libcxx/src/
H A Dcondition_variable.cpp42 __throw_system_error(EPERM,
55 __throw_system_error(EPERM,
/netbsd-current/external/bsd/openpam/dist/lib/libpam/
H A Dopenpam_check_owner_perms.c85 errno = EPERM;
137 errno = EPERM;
/netbsd-current/external/bsd/atf/dist/atf-c/
H A Derror_test.c182 err = atf_libc_error(EPERM, "%s message %d", "Test", 2);
184 ATF_REQUIRE_EQ(atf_libc_error_code(err), EPERM); local
205 err = atf_libc_error(EPERM, "Test message 2");
207 ATF_REQUIRE(strstr(buf, strerror(EPERM)) != NULL);
211 err = atf_libc_error(EPERM, "%s message %d", "Test", 3);
213 ATF_REQUIRE(strstr(buf, strerror(EPERM)) != NULL);

Completed in 154 milliseconds

1234567891011>>