HomeSort by relevance Sort by last modified time
    Searched refs:errno (Results 251 - 275 of 9577) sorted by null

<<11121314151617181920>>

  /external/strace/tests-m32/
lstatx.c 33 int saved_errno = errno; \
36 errno = saved_errno; \
  /external/strace/tests-mx32/
fstatat.c 35 int saved_errno = errno; \
38 errno = saved_errno; \
lstatx.c 33 int saved_errno = errno; \
36 errno = saved_errno; \
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
FEnv.h 38 errno = 0;
43 int errno_val = errno;
  /external/syslinux/com32/lib/
lmalloc.c 29 #include <errno.h>
39 errno = ENOMEM;
  /external/syslinux/com32/lib/sys/
isatty.c 34 #include <errno.h>
47 errno = EBADF;
  /prebuilts/ndk/r16/sources/android/support/src/
posix_memalign.cpp 1 #include <errno.h>
16 return errno;
  /system/core/libsysutils/src/
FrameworkCommand.cpp 19 #include <errno.h>
33 errno = ENOSYS;
  /system/core/qemu_pipe/
qemu_pipe.cpp 22 #include <errno.h>
40 errno = EINVAL;
47 strerror(errno));
66 __FUNCTION__, pipeName, strerror(errno));
75 QEMU_PIPE_DEBUG("Can't write qemud frame header: %s", strerror(errno));
79 QEMU_PIPE_DEBUG("Can't write qemud frame payload: %s", strerror(errno));
88 QEMU_PIPE_DEBUG("Can't read qemud frame header: %s", strerror(errno));
104 strerror(errno));
  /toolchain/binutils/binutils-2.27/libiberty/
rename.c 19 #include <errno.h>
29 if (errno != EEXIST)
  /bionic/libc/bionic/
getentropy.cpp 29 #include <errno.h>
50 errno = saved_errno;
56 errno = EIO;
60 int saved_errno = errno;
78 errno = saved_errno;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/SetHostName/
SetHostName.c 15 #include <errno.h>
59 switch ( errno ) {
61 Print ( L"ERROR - errno: %d\r\n", errno );
84 Print ( L"ERROR - Unable to get host name, errno: %d\r\n", errno );
99 return errno;
  /external/compiler-rt/test/sanitizer_common/TestCases/Linux/
decorate_proc_maps.cc 4 #include <errno.h>
21 } else if (errno != EAGAIN || errno != EWOULDBLOCK || errno != EINTR) {
22 fprintf(stderr, "error reading file, errno %d\n", errno);
  /external/e2fsprogs/lib/e2p/
fgetversion.c 28 #include <errno.h>
60 save_errno = errno;
63 errno = save_errno;
68 extern int errno;
70 errno = EOPNOTSUPP;
fsetproject.c 21 #include <errno.h>
45 errno = EOPNOTSUPP;
56 save_errno = errno;
62 save_errno = errno;
66 errno = save_errno;
fsetversion.c 28 #include <errno.h>
58 save_errno = errno;
61 errno = save_errno;
68 extern int errno;
69 errno = EOPNOTSUPP;
  /external/iptables/iptables/
ip6tables-standalone.c 36 #include <errno.h>
68 if (errno == EINVAL) {
71 ip6tc_strerror(errno));
74 ip6tc_strerror(errno));
76 if (errno == EAGAIN)
iptables-standalone.c 36 #include <errno.h>
71 if (errno == EINVAL) {
74 iptc_strerror(errno));
77 iptc_strerror(errno));
79 if (errno == EAGAIN) {
  /external/ltp/testcases/kernel/io/disktest/
threading.h 110 #define TEXIT(errno) ExitThread(errno); return(errno)
119 #define TEXIT(errno) pthread_exit((void*)errno)
  /external/ltp/testcases/kernel/mem/shmt/
shmt02.c 42 #include <errno.h>
62 errno = 0;
70 "shmget Failed: shmid = %d, errno = %d\n",
71 shmid, errno);
82 tst_resm(TFAIL, "shmat Failed: shmid = %d, errno = %d\n",
83 shmid, errno);
116 "shmctl Failed to remove: shmid = %d, errno = %d\n",
117 shmid, errno);
  /external/ltp/testcases/kernel/security/cap_bound/
exec_with_inh.c 29 #include <errno.h>
54 "Failed to create cap_sys_admin+i cap_t (errno %d)\n",
55 errno);
61 "Failed to cap_set_proc with cap_sys_admin+i (ret %d errno %d)\n",
62 ret, errno);
77 tst_resm(TINFO, "(ret=%d, errno %d)\n", ret, errno);
83 tst_resm(TBROK, "Failed to execute check_pe (errno %d)\n", errno);
  /external/ltp/testcases/kernel/syscalls/mremap/
mremap02.c 30 * mremap() should return -1 and set errno to EINVAL.
41 * if errno set == expected errno
42 * Issue sys call fails with expected return value and errno.
44 * Issue sys call fails with unexpected errno.
49 * Print errno log and/or timing stats if options given
54 * -e : Turn on errno logging.
75 #include <errno.h>
111 errno = 0;
113 TEST_ERRNO = errno;
    [all...]
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sched_getparam/
6-1.c 11 * Test that sched_getparam() sets errno == EPERM if the requesting process
24 #include <errno.h>
48 if (errno == EPERM)
57 if (errno == EPERM)
91 if (result == -1 && errno == EPERM) {
99 if (errno != EPERM) {
100 perror("errno is not EPERM: The system allows a non-root"
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sched_rr_get_interval/
1-1.c 14 #include <errno.h>
34 errno, strerror(errno));
49 interval0.tv_nsec == interval1.tv_nsec && errno == 0) {
52 } else if (errno != 0) {
2-1.c 13 #include <errno.h>
29 errno, strerror(errno));
39 interval.tv_sec >= 0 && interval.tv_nsec >= 0 && errno == 0) {
59 if (errno != 0) {

Completed in 1843 milliseconds

<<11121314151617181920>>