/third_party/ltp/utils/sctp/func_tests/ |
H A D | test_assoc_abort.c | 52 #include <sys/errno.h> 53 #include <errno.h> 214 strerror(errno)); in main() 225 if ((error != -1) && (errno != EINVAL)) in main() 228 "error:%d errno:%d", error, errno); in main()
|
H A D | test_assoc_shutdown.c | 51 #include <sys/errno.h> 52 #include <errno.h> 215 strerror(errno)); in main() 226 if ((error != -1) && (errno != EINVAL)) in main() 229 "error:%d errno:%d", error, errno); in main()
|
/third_party/libdrm/tests/proptest/ |
H A D | proptest.c | 29 #include <errno.h> 170 printf("\tNo properties: %s.\n", strerror(errno)); in listObjectProperties() 190 res->connectors[i], strerror(errno)); in listConnectorProperties() 215 res->crtcs[i], strerror(errno)); in listCrtcProperties() 307 strerror(errno)); in main()
|
/third_party/libinput/src/ |
H A D | timer.c | 27 #include <errno.h> 84 log_error(libinput, "timer: timerfd_settime error: %s\n", strerror(errno)); in libinput_timer_arm_timer_fd() 178 if (r == -1 && errno != EAGAIN) in libinput_timer_dispatch() 181 errno, in libinput_timer_dispatch() 182 strerror(errno)); in libinput_timer_dispatch()
|
/third_party/pulseaudio/src/pulse/ |
H A D | client-conf.c | 27 #include <errno.h> 183 c->cookie_file_from_env, pa_cstrerror(errno)); in pa_client_conf_load_cookie() 201 pa_cstrerror(errno)); in pa_client_conf_load_cookie() 210 pa_cstrerror(errno)); in pa_client_conf_load_cookie() 228 pa_log("Failed to load cookie file from %s: %s", PA_NATIVE_COOKIE_FILE, pa_cstrerror(errno)); in pa_client_conf_load_cookie()
|
/third_party/skia/third_party/externals/jinja2/ |
H A D | bccache.py | 9 import errno namespace 218 if e.errno != errno.EEXIST: 230 if e.errno != errno.EEXIST:
|
/third_party/pulseaudio/src/modules/rtp/ |
H A D | sap.c | 28 #include <errno.h> 83 pa_log("getsockname() failed: %s\n", pa_cstrerror(errno)); in pa_sap_send() 128 pa_log_warn("sendmsg() failed: %s\n", pa_cstrerror(errno)); in pa_sap_send() 155 pa_log_warn("FIONREAD failed: %s", pa_cstrerror(errno)); in pa_sap_recv() 174 pa_log_warn("recvmsg() failed: %s", r < 0 ? pa_cstrerror(errno) : "size mismatch"); in pa_sap_recv()
|
/third_party/toybox/porting/liteos_a/toys/lsb/ |
H A D | mount.c | 227 if (!rc || (errno != EACCES && errno != EROFS) || (flags&MS_RDONLY)) in mount_filesystem() 256 if (rc && errno == ENOTBLK) { in mount_filesystem() 265 if (fp && (errno == EINVAL || errno == EBUSY)) continue; in mount_filesystem()
|
/third_party/toybox/toys/other/ |
H A D | lsattr.c | 86 errno = EOPNOTSUPP; in ext2_getflag() 99 errno = EOPNOTSUPP; in print_file_attr() 196 errno = EOPNOTSUPP; in ext2_setflag() 226 errno = 0; in parse_cmdline_arg() 231 if (errno || *endptr) perror_exit("bad version '%s'", arg); in parse_cmdline_arg()
|
/third_party/musl/src/internal/ |
H A D | syscall_ret.c | 1 #include <errno.h> 7 errno = -r; in __syscall_ret()
|
/third_party/musl/src/include/ |
H A D | errno.h | 4 #include "../../include/errno.h" 11 #undef errno macro 12 #define errno (*___errno_location()) macro
|
/third_party/rust/crates/libc/src/unix/bsd/freebsdlike/dragonfly/ |
H A D | errno.rs | 6 &mut errno in __error() 12 pub static mut errno: ::c_int; consts
|
/kernel/linux/linux-5.10/samples/bpf/ |
H A D | xdp_router_ipv4_user.c | 8 #include <errno.h> 330 printf("open netlink socket: %s\n", strerror(errno)); in get_route_table() 336 printf("bind to netlink: %s\n", strerror(errno)); in get_route_table() 356 printf("send to netlink: %s\n", strerror(errno)); in get_route_table() 469 printf("open netlink socket: %s\n", strerror(errno)); in get_arp_table() 475 printf("bind to netlink: %s\n", strerror(errno)); in get_arp_table() 494 printf("send to netlink: %s\n", strerror(errno)); in get_arp_table() 531 printf("open netlink socket: %s\n", strerror(errno)); in monitor_route() 540 printf("bind to netlink: %s\n", strerror(errno)); in monitor_route() 549 printf("open netlink socket: %s\n", strerror(errno)); in monitor_route() [all...] |
H A D | lwt_len_hist_user.c | 9 #include <errno.h> 41 map_filename, strerror(errno), errno); in main()
|
/third_party/selinux/libselinux/src/ |
H A D | avc.c | 220 avc_prefix, errno); in avc_init_internal() 325 errno = ENOMEM; /* this was a panic in the kernel... */ in avc_reclaim_node() 465 * Otherwise, this function returns -%1 with @errno set to %EAGAIN. 478 errno = EAGAIN; in avc_insert() 505 errno = 0; in avc_reset() 535 errsave = errno; in avc_reset() 539 errno = errsave; in avc_reset() 791 if (rc && errno == EINVAL && !avc_enforcing) { in avc_has_perm_noaudit() 792 rc = errno = 0; in avc_has_perm_noaudit() 814 errno in avc_has_perm_noaudit() [all...] |
/kernel/linux/linux-5.10/tools/testing/selftests/openat2/ |
H A D | helpers.h | 13 #include <errno.h> 68 errno = 0; \ 70 ksft_exit_fail_msg("%s:%d %s failed - errno:%d\n", \ 71 __FILE__, __LINE__, #func, errno); \
|
/kernel/linux/linux-5.10/tools/testing/selftests/timens/ |
H A D | procfs.c | 3 #include <errno.h> 82 if (errno) { in read_proc_uptime() 84 return -errno; in read_proc_uptime()
|
/kernel/linux/linux-5.10/tools/testing/selftests/proc/ |
H A D | setns-sysvipc.c | 22 #include <errno.h> 54 if (errno == ENOSYS || errno == EPERM) { in main()
|
/kernel/linux/linux-5.10/tools/testing/selftests/net/ |
H A D | reuseaddr_conflict.c | 9 #include <errno.h> 94 error(1, errno, "Couldn't open listen socket"); in main() 102 error(1, errno, "Couldn't open ipv6 reuseport"); in main()
|
/kernel/linux/linux-5.10/tools/testing/selftests/pidfd/ |
H A D | pidfd.h | 7 #include <errno.h> 78 if (errno == EINTR) in wait_for_pid() 81 ksft_print_msg("waitpid returned -1, errno=%d\n", errno); in wait_for_pid()
|
/kernel/linux/linux-5.10/tools/testing/selftests/bpf/prog_tests/ |
H A D | fexit_stress.c | 52 "failed: %d errno %d\n", fexit_fd[i], errno)) in test_fexit_stress() 56 "prog %d failed: %d err %d\n", i, link_fd[i], errno)) in test_fexit_stress() 61 if (CHECK(filter_fd < 0, "test_program_loaded", "failed: %d errno %d\n", in test_fexit_stress() 62 filter_fd, errno)) in test_fexit_stress()
|
H A D | test_lsm.c | 70 if (CHECK(err < 0, "exec_cmd", "err %d errno %d\n", err, errno)) in test_test_lsm() 79 if (CHECK(errno != EPERM, "stack_mprotect", "want err=EPERM, got %d\n", in test_test_lsm() 80 errno)) in test_test_lsm()
|
/kernel/linux/linux-5.10/scripts/dtc/ |
H A D | fstree.c | 20 die("Couldn't opendir() \"%s\": %s\n", dirname, strerror(errno)); in read_fstree() 34 die("stat(%s): %s\n", tmpname, strerror(errno)); in read_fstree() 44 tmpname, strerror(errno)); in read_fstree()
|
/kernel/linux/linux-6.6/tools/perf/tests/ |
H A D | openat-syscall.c | 2 #include <errno.h> 34 tracing_path__strerror_open_tp(errno, errbuf, sizeof(errbuf), "syscalls", "sys_enter_openat"); in test__openat_syscall_event() 43 str_error_r(errno, sbuf, sizeof(sbuf))); in test__openat_syscall_event()
|
/kernel/linux/linux-6.6/samples/bpf/ |
H A D | lwt_len_hist_user.c | 9 #include <errno.h> 41 map_filename, strerror(errno), errno); in main()
|