/third_party/ltp/testcases/kernel/syscalls/sigaltstack/ |
H A D | sigaltstack01.c | 40 * Log the errno and Issue a FAIL message. 48 * Print errno log and/or timing stats if options given 53 * -e : Turn on errno logging. 76 #include <errno.h> 114 "sigaltstack() Failed, errno=%d : %s", in main() 124 "error=%d", errno); in main() 191 "sigaction() fails in setup, errno=%d", errno); in setup()
|
/third_party/ltp/testcases/kernel/syscalls/timer_settime/ |
H A D | timer_settime03.c | 48 errno = 0; in sighandler() 50 saved_errno = errno; in sighandler() 97 errno = saved_errno; in run()
|
/third_party/ltp/utils/sctp/lib/ |
H A D | addrs.c | 29 #include <errno.h> 58 if (errno != ENOMEM ) { in sctp_getaddrs() 67 errno = ENOBUFS; in sctp_getaddrs()
|
/third_party/libevdev/test/ |
H A D | test-main.c | 8 #include <errno.h> 61 if (rc == -1 && errno == ENOENT) in device_nodes_exist() 65 if (rc == -1 && errno == ENOENT) in device_nodes_exist()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/aio_fsync/ |
H A D | 4-1.c | 16 #include <errno.h> 43 printf(TNAME " Error at open(): %s\n", strerror(errno)); in main() 55 printf(TNAME " Error at aio_write(): %s\n", strerror(errno)); in main() 78 * Otherwise, -1 shall be returned and errno set to indicate the error. in main()
|
/third_party/ltp/testcases/realtime/func/measurement/ |
H A D | preempt_timing.c | 51 #include <errno.h> 107 if (errno == EPERM) { in main() 114 fprintf(stderr, "Failed to set scheduler, errno %d\n", in main() 115 errno); in main()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/aio_return/ |
H A D | 4-1.c | 27 #include <errno.h> 58 printf(TNAME " Error at open(): %s\n", strerror(errno)); in main() 72 printf(TNAME " Error at aio_write(): %s\n", strerror(errno)); in main()
|
H A D | 1-1.c | 29 #include <errno.h> 56 printf(TNAME " Error at open(): %s\n", strerror(errno)); in main() 70 printf(TNAME " Error at aio_write(): %s\n", strerror(errno)); in main()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/mq_open/ |
H A D | 25-2.c | 22 #include <errno.h> 59 if (errno != EINVAL) { in main() 60 printf("errno != EINVAL for mq_maxmsg %ld\n", in main() 65 printf("mq_maxmsg %ld set errno==EINVAL as expected\n", in main() 89 if (errno != EINVAL) { in main() 90 printf("errno != EINVAL for mq_msgsize %ld\n", in main() 95 printf("mq_msgsize %ld set errno==EINVAL as expected\n", in main()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_atfork/ |
H A D | 1-2.c | 52 #include <errno.h> 132 UNRESOLVED(errno, "Failed to fork"); in threaded() 164 UNRESOLVED(errno, "Waitpid returned the wrong PID"); in threaded()
|
H A D | 3-2.c | 41 #include <errno.h> 121 UNRESOLVED(errno, "Failed to fork"); in threaded() 150 UNRESOLVED(errno, "Waitpid returned the wrong PID"); in threaded()
|
/third_party/lwip/src/include/lwip/ |
H A D | errno.h | 178 #ifndef errno 179 extern int errno; 184 /* Define LWIP_ERRNO_STDINCLUDE if you want to include <errno.h> here */ 186 #include <errno.h> 188 /* Define LWIP_ERRNO_INCLUDE to an equivalent of <errno.h> to include the error defines here */
|
/third_party/musl/libc-test/src/functionalext/supplement/linux/ |
H A D | sendfile.c | 16 #include <errno.h> 92 if (errno != EBADF) { in sendfile_0200() 93 t_error("%s failed: sendfile. errno = %d\n", __func__, errno); in sendfile_0200()
|
/third_party/musl/libc-test/src/functional/ |
H A D | ungetc.c | 3 #include <errno.h> 9 errno = 0, ((r) = (f)) == (x) || \ 10 (t_error("%s failed (" m ")\n", #f, r, x, strerror(errno)), 0) )
|
/third_party/musl/libc-test/src/functionalext/supplement/stdlib/ |
H A D | wcstold.c | 16 #include <errno.h> 113 errno = 0; in wcstold_0600() 117 if (errno != ERANGE) { in wcstold_0600() 118 t_error("%s errno is not set\n", __func__); in wcstold_0600()
|
/third_party/python/Tools/scripts/ |
H A D | dutree.py | 4 import os, sys, errno namespace 22 if e.errno != errno.EPIPE:
|
/third_party/python/Lib/ctypes/test/ |
H A D | test_errno.py | 1 import unittest, os, errno namespace 21 self.assertEqual(get_errno(), errno.ENOENT) 23 self.assertEqual(set_errno(32), errno.ENOENT)
|
/third_party/skia/third_party/externals/spirv-tools/utils/ |
H A D | update_build_version.py | 33 import errno namespace 53 if e.errno == errno.EEXIST and os.path.isdir(directory):
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/ |
H A D | update_build_version.py | 33 import errno namespace 53 if e.errno == errno.EEXIST and os.path.isdir(directory):
|
/third_party/skia/third_party/externals/libjpeg-turbo/md5/ |
H A D | md5hl.c | 51 #include <errno.h> 119 e = errno; in MD5FileChunk() 121 errno = e; in MD5FileChunk()
|
/third_party/pulseaudio/src/pulse/ |
H A D | xmalloc.c | 28 #include <errno.h> 128 saved_errno = errno; in pa_xfree() 130 errno = saved_errno; in pa_xfree()
|
/third_party/pulseaudio/src/pulsecore/ |
H A D | arpa-inet.c | 26 #include <errno.h> 72 errno = EAFNOSUPPORT; in inet_ntop() 99 errno = EAFNOSUPPORT; in inet_pton()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | RandomNumberGenerator.cpp | 74 Ret = std::error_code(errno, std::system_category()); in getRandomBytes() 78 Ret = std::error_code(errno, std::system_category()); in getRandomBytes() 82 return std::error_code(errno, std::system_category()); in getRandomBytes()
|
/third_party/selinux/libselinux/src/ |
H A D | compute_member.c | 6 #include <errno.h> 24 errno = ENOENT; in security_compute_member_raw() 42 errno = EOVERFLOW; in security_compute_member_raw()
|
H A D | compute_relabel.c | 6 #include <errno.h> 24 errno = ENOENT; in security_compute_relabel_raw() 42 errno = EOVERFLOW; in security_compute_relabel_raw()
|