/third_party/musl/libc-test/src/functional/ |
H A D | tgkill.c | 1 #include <errno.h>
16 if (tgkill(tgid, tid, SIGPROF) == -1 && errno != ESRCH) {
in main()
|
/third_party/musl/compat/time32/ |
H A D | mktime32.c | 3 #include <errno.h> 11 errno = EOVERFLOW; in __mktime32()
|
H A D | time32.c | 3 #include <errno.h> 10 errno = EOVERFLOW; in __time32()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/base/internal/ |
H A D | errno_saver.h | 26 // `ErrnoSaver` captures the value of `errno` upon construction and restores it 31 ErrnoSaver() : saved_errno_(errno) {} in ErrnoSaver() 32 ~ErrnoSaver() { errno = saved_errno_; } in ~ErrnoSaver()
|
/third_party/mksh/ |
H A D | shf.c | 69 eno = errno; in shf_open() 71 errno = eno; in shf_open() 78 eno = errno; in shf_open() 82 errno = eno; in shf_open() 301 errno = shf->errnosv; in shf_flush() 309 shf->errnosv = errno; in shf_flush() 334 errno = shf->errnosv; in shf_emptybuf() 372 if (errno == EINTR && in shf_emptybuf() 376 shf->errnosv = errno; in shf_emptybuf() 421 errno in shf_fillbuf() [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/drivers/ |
H A D | driver_wext.c | 54 if (errno != EOPNOTSUPP) { in wpa_driver_wext_set_auth_param() 57 idx, value, strerror(errno)); in wpa_driver_wext_set_auth_param() 59 ret = errno == EOPNOTSUPP ? -2 : -1; in wpa_driver_wext_set_auth_param() 82 wpa_printf(MSG_ERROR, "ioctl[SIOCGIWAP]: %s", strerror(errno)); in wpa_driver_wext_get_bssid() 112 wpa_printf(MSG_ERROR, "ioctl[SIOCSIWAP]: %s", strerror(errno)); in wpa_driver_wext_set_bssid() 139 strerror(errno)); in wpa_driver_wext_get_ssid() 198 strerror(errno)); in wpa_driver_wext_set_ssid() 225 strerror(errno)); in wpa_driver_wext_set_freq() 760 buf, strerror(errno)); in wext_get_phy_name() 768 buf, strerror(errno)); in wext_get_phy_name() [all...] |
/third_party/python/Objects/ |
H A D | complexobject.c | 80 errno = EDOM; in _Py_c_quot() 100 errno = EDOM; in _Py_c_quot() 139 errno = EDOM; in _Py_c_pow() 187 /* sets errno = ERANGE on overflow; otherwise errno = 0 */ in _Py_c_abs() 196 errno = 0; in _Py_c_abs() 201 errno = 0; in _Py_c_abs() 210 errno = ERANGE; in _Py_c_abs() 212 errno = 0; in _Py_c_abs() 498 errno in complex_div() [all...] |
/third_party/alsa-utils/axfer/ |
H A D | waiter-poll.c | 13 #include <errno.h> 28 return -errno; in poll_wait_event()
|
/third_party/backends/lib/ |
H A D | sigprocmask.c | 20 #include <errno.h> 43 errno = EINVAL; in sigprocmask()
|
/third_party/ltp/lib/ |
H A D | tst_thread_state.c | 9 #include <errno.h> 32 errno = ETIMEDOUT; in tst_thread_state_wait()
|
/third_party/ltp/testcases/kernel/controllers/pids/ |
H A D | pids_task1.c | 31 #include <errno.h> 53 if (newpid == -1 && errno == EAGAIN) in main()
|
/third_party/musl/libc-test/src/regression/ |
H A D | syscall-sign-extend.c | 4 #include <errno.h> 11 #define T(f) (!(f) && (t_error(#f " failed: %s\n", strerror(errno)), 0))
|
/third_party/musl/porting/liteos_a/user/src/misc/ |
H A D | realpath.c | 5 #include <errno.h> 16 errno = EINVAL; in realpath()
|
/third_party/musl/porting/liteos_a/user/src/conf/ |
H A D | confstr.c | 3 #include <errno.h> 14 errno = EINVAL; in confstr()
|
/third_party/musl/porting/linux/user/src/signal/ |
H A D | siginterrupt.c | 17 #include <errno.h> 24 errno = EINVAL; in siginterrupt()
|
/third_party/musl/src/misc/ |
H A D | getdomainname.c | 5 #include <errno.h> 12 errno = EINVAL; in getdomainname()
|
/third_party/musl/src/passwd/ |
H A D | getspnam.c | 11 int orig_errno = errno; in getspnam() 16 errno = e ? e : orig_errno; in getspnam()
|
/third_party/musl/src/conf/ |
H A D | confstr.c | 3 #include <errno.h> 13 errno = EINVAL; in confstr()
|
/third_party/musl/src/misc/liteos_a/ |
H A D | realpath.c | 20 #include <errno.h> 31 errno = EINVAL; in realpath()
|
/third_party/mesa3d/src/util/ |
H A D | reallocarray.h | 30 #include <errno.h> 48 errno = ENOMEM; in reallocarray()
|
/third_party/ltp/testcases/kernel/syscalls/umount2/ |
H A D | umount2.h | 28 if (ret == 0 || errno != EBUSY) in umount2_retry() 40 errno = EBUSY; in umount2_retry()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/behavior/timers/ |
H A D | 1-1.c | 13 #include <errno.h> 33 "%s\n", i, strerror(errno)); in main()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/aio_cancel/ |
H A D | 9-1.c | 12 * io_cancel() shall return -1 and set errno in all other case. 17 * and errno is not 0 27 #include <errno.h> 46 if (errno == 0) { in main() 47 printf(TNAME " bad errno value()\n"); in main()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/clock_getres/ |
H A D | 6-2.c | 8 * Test that clock_getres() sets errno=EINVAL for a variety of 25 #include <errno.h> 44 if (EINVAL != errno) { in main() 45 printf("errno != EINVAL\n"); in main()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/clock_settime/ |
H A D | 17-1.c | 8 * Test that clock_settime() sets errno to EINVAL if clock_id does not 14 #include <errno.h> 35 if (EINVAL == errno) { in main() 39 printf("errno != EINVAL\n"); in main()
|