Home
last modified time | relevance | path

Searched refs:errno (Results 4976 - 5000 of 14635) sorted by relevance

1...<<191192193194195196197198199200>>...586

/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/
H A Dincludes.h28 #include <errno.h>
/test/xts/acts/kernel_lite/net_posix/src/
H A DActsNetTest.cpp20 #include <errno.h>
380 LOG("CommInitTcpServer errno = %d\n", errno); in TcpServerLoopTask()
539 fprintf(stderr, "[---][select process]select fail[%s]\n", strerror(errno)); in SelectServerForFork()
624 fprintf(stderr, "[---][poll process]poll fail[%s]\n", strerror(errno)); in PollServerForFork()
1099 ASSERT_EQ(0, ret) << "ioctl fail[SIOCGIFCONF], errinfo[" << strerror(errno) << "]"; in HWTEST_F()
1125 ASSERT_EQ(0, ret) << "ioctl fail[SIOCGIFADDR], errinfo[" << strerror(errno) << "]"; in HWTEST_F()
1144 EXPECT_EQ(0, ret) << "ioctl fail[FIONREAD], errinfo[" << strerror(errno) << "]"; in HWTEST_F()
1150 EXPECT_STREQ("Operation not permitted", strerror(errno)); in HWTEST_F()
1154 EXPECT_STREQ("Operation not permitted", strerror(errno)); in HWTEST_F()
[all...]
/third_party/libcoap/src/
H A Dcoap_mbedtls.c184 errno = EAGAIN; in coap_dgram_read()
206 errno = EAGAIN; in coap_dgram_read()
233 errno = ECONNRESET; in coap_dgram_write()
1297 errno = EAGAIN;
1408 if (errno == ECONNRESET) {
1415 errno = EAGAIN;
1440 (errno == EPIPE || errno == ECONNRESET)) {
1463 if (errno == EAGAIN || errno
[all...]
/third_party/backends/sanei/
H A Dsanei_usb.c57 #include <errno.h>
332 "of device %s failed: %s\n", name, strerror (errno)); in kernel_get_vendor_product()
338 "of device %s failed: %s\n", name, strerror (errno)); in kernel_get_vendor_product()
345 "of device %d failed: %s\n", fd, strerror (errno)); in kernel_get_vendor_product()
348 "of device %d failed: %s\n", fd, strerror (errno)); in kernel_get_vendor_product()
1729 strerror (errno)); in kernel_scan_devices()
1740 strerror (errno)); in kernel_scan_devices()
1765 strerror (errno)); in kernel_scan_devices()
2750 devname, strerror (errno)); in sanei_usb_open()
2751 if (errno in sanei_usb_open()
[all...]
/third_party/python/Lib/test/
H A Dtest_ssl.py21 import errno namespace
663 self.assertEqual(cm.exception.errno, errno.ENOENT)
668 self.assertEqual(cm.exception.errno, errno.ENOENT)
673 self.assertEqual(cm.exception.errno, errno.ENOENT)
1128 errno.ECONNREFUSED, errno.EHOSTUNREACH, errno
[all...]
/kernel/linux/linux-5.10/tools/perf/util/
H A Ddso.c11 #include <errno.h>
310 dso->load_errno = errno; in decompress_kmodule()
474 str_error_r(errno, sbuf, sizeof(sbuf))); in do_open()
475 if (!dso__data_open_cnt || errno != EMFILE) in do_open()
874 ret = -errno; in file_read()
995 ret = -errno; in file_size()
1001 ret = -errno; in file_size()
1003 str_error_r(errno, sbuf, sizeof(sbuf))); in file_size()
/third_party/mesa3d/src/gallium/winsys/virgl/drm/
H A Dvirgl_drm_winsys.c24 #include <errno.h>
120 if (ret && errno == EBUSY) in virgl_drm_resource_is_busy()
618 _debug_printf("failed to set resource type: %s", strerror(errno)); in virgl_drm_winsys_resource_set_type()
705 _debug_printf("waiting got error - %d, slow gpu or hang?\n", errno); in virgl_drm_resource_wait()
969 _debug_printf("got error from kernel - expect bad rendering %d\n", errno); in virgl_drm_winsys_submit_cmd()
1011 if (ret == -1 && errno == EINVAL) { in virgl_drm_get_caps()
1190 if (ret && errno != EEXIST) { in virgl_init_context()
1192 strerror(errno)); in virgl_init_context()
/third_party/skia/third_party/externals/expat/expat/xmlwf/
H A Dxmlwf.c50 #include <errno.h>
1057 errno = 0; in tmain()
1060 if ((errno != 0) || (afterValueText[0] != T('\0')) in tmain()
1064 errno = ERANGE; in tmain()
1080 errno = 0; in tmain()
1083 if ((errno != 0) || (afterValueText[0] != T('\0'))) { in tmain()
1085 errno = ERANGE; in tmain()
1150 errno = EINVAL; in tmain()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/drivers/
H A Ddriver_macsec_linux.c324 strerror(errno)); in macsec_drv_macsec_init()
331 strerror(errno)); in macsec_drv_macsec_init()
1455 strerror(errno)); in macsec_drv_handle_read()
1474 strerror(errno)); in macsec_drv_init_sockets()
1488 strerror(errno)); in macsec_drv_init_sockets()
1500 wpa_printf(MSG_ERROR, "bind: %s", strerror(errno)); in macsec_drv_init_sockets()
1516 strerror(errno)); in macsec_drv_init_sockets()
1606 __func__, (unsigned long) len, strerror(errno)); in macsec_drv_send_eapol()
/kernel/linux/linux-5.10/tools/testing/selftests/net/
H A Dtls.c6 #include <errno.h>
68 ASSERT_EQ(errno, ENOENT); in FIXTURE_SETUP()
672 err = (errno == EAGAIN || errno == EWOULDBLOCK); in TEST_F()
967 if (res == -1 && errno == EAGAIN) { in TEST_F()
991 if (res == -1 && errno == EAGAIN) { in TEST_F()
1214 EXPECT_EQ(errno, EINVAL); in TEST_F()
1218 EXPECT_EQ(errno, EISCONN); in TEST_F()
1248 if (errno == ENOENT) in TEST()
1250 EXPECT_EQ(errno, ENOTCON in TEST()
[all...]
/kernel/linux/linux-6.6/tools/perf/util/
H A Devlist.c9 #include <errno.h>
1405 errno = -err; in evlist__open()
1480 val.sival_int = errno; in evlist__prepare_workload()
1870 ret = -errno; in evlist__parse_control_fifo()
1881 ret = -errno; in evlist__parse_control_fifo()
1994 if (errno == EINTR) in evlist__ctlfd_recv()
1996 if (errno == EAGAIN || errno == EWOULDBLOCK) in evlist__ctlfd_recv()
2311 err = -errno; in evlist__parse_event_enable_time()
2312 pr_err("timerfd_create failed: %s\n", strerror(errno)); in evlist__parse_event_enable_time()
[all...]
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/
H A Dveristat.c272 errno = 0; in parse_arg()
274 if (errno) { in parse_arg()
283 errno = 0; in parse_arg()
285 if (errno) { in parse_arg()
524 errno = 0; in append_filter()
526 if (errno || end == p || *end != '\0' ) { in append_filter()
586 err = -errno; in append_filter_file()
1054 fprintf(stderr, "Failed to open '%s': %d\n", filename, -errno); in process_obj()
1078 err = -errno; in process_obj()
1412 err = -errno; in parse_stat_value()
[all...]
/third_party/gptfdisk/
H A Dgpt.cc22 #include <errno.h>
850 cout << "\aNOTE: Write test failed with error number " << errno in LoadPartitions() local
1061 cerr << "Warning! Read error " << errno << "; strange behavior now likely!\n"; in LoadHeader() local
1118 cerr << "Warning! Read error " << errno << "! Misbehavior now likely!\n"; in LoadPartitionTable() local
1160 cerr << "Warning! Error " << errno << " reading partition table for CRC check!\n"; in CheckTable() local
1315 << errno << "! Aborting write!\n"; in SaveGPTData()
1459 cerr << "Warning! Read error " << errno in LoadGPTBackup() local
1497 cerr << "Warning! GPT main header not overwritten! Error is " << errno << "\n"; in DestroyGPT() local
1512 cerr << "Warning! GPT main partition table not overwritten! Error is " << errno << "\n"; in DestroyGPT() local
1522 << errno << "\ in DestroyGPT() local
1530 cerr << "Warning! GPT backup header not overwritten! Error is " << errno << "\\n"; DestroyGPT() local
1556 cerr << "Warning! MBR not overwritten! Error is " << errno << "!\\n"; DestroyMBR() local
[all...]
/third_party/node/lib/internal/
H A Derrors.js289 errno: {
292 return context.errno;
295 context.errno = value;
512 const { 0: code, 1: uvmsg } = uvErrmapGet(ctx.errno) || uvUnmappedError;
586 ex.errno = err;
619 ex.errno = err;
663 ex.errno = err;
681 let errno;
685 // make them available in a property that's not error.errno (since they
690 errno
[all...]
/third_party/nghttp2/src/
H A DHttpServer.cc639 while ((nread = read(fd_, buf.data(), buf.size())) == -1 && errno == EINTR) in read_clear()
642 if (errno == EAGAIN || errno == EWOULDBLOCK) { in read_clear()
673 errno == EINTR) in write_clear()
676 if (errno == EAGAIN || errno == EWOULDBLOCK) { in write_clear()
1667 errno == EINTR) in send_data_callback()
1718 errno == EINTR) in on_data_chunk_recv_callback()
1960 auto error = errno; in make_status_body()
1961 std::cerr << "Could not open status response body file: errno in make_status_body()
[all...]
/third_party/libdrm/tests/modetest/
H A Dmodetest.c51 #include <errno.h>
612 strerror(errno)); in get_resources()
641 strerror(errno)); \ in get_resources()
677 strerror(errno)); \ in get_resources()
699 strerror(errno)); in get_resources()
1045 obj_type, p->obj_id, p->name, p->value, strerror(errno)); in set_property()
1150 fprintf(stderr, "failed to set gamma: %s\n", strerror(errno)); in set_gamma()
1168 fprintf(stderr, "failed to add fb (%ux%u): %s\n", w, h, strerror(errno)); in bo_fb_create()
1304 strerror(errno)); in set_plane()
1638 fprintf(stderr, "failed to set mode: %s\n", strerror(errno)); in set_mode()
[all...]
/third_party/mksh/
H A Dmisc.c67 if ((func argvec) && errno == EAGAIN) \
1641 if (!tried_reset && errno == EAGAIN) { in blocking_read()
1646 errno = EAGAIN; in blocking_read()
1788 if (errno == ENOENT) { in do_realpath()
1809 errno = ELOOP; in do_realpath()
1817 errno = ENAMETOOLONG; in do_realpath()
1897 if (errno != ENOENT) in do_realpath()
1900 errno = ENOTDIR; in do_realpath()
1913 llen = errno; in do_realpath()
1917 errno in do_realpath()
[all...]
/third_party/pulseaudio/src/modules/raop/
H A Draop-client.c29 #include <errno.h>
477 if (written < 0 && errno == EAGAIN) { in send_udp_audio_packet()
478 pa_log_debug("Discarding UDP (audio, seq=%d) packet due to EAGAIN (%s)", c->seq, pa_cstrerror(errno)); in send_udp_audio_packet()
532 if (written < 0 && errno == EAGAIN) { in resend_udp_audio_packets()
731 pa_log("socket() failed: %s", pa_cstrerror(errno)); in connect_udp_socket()
740 pa_log("connect() failed: %s", pa_cstrerror(errno)); in connect_udp_socket()
797 pa_log("socket() failed: %s", pa_cstrerror(errno)); in open_bind_udp_socket()
803 pa_log("setsockopt(SO_TIMESTAMP) failed: %s", pa_cstrerror(errno)); in open_bind_udp_socket()
813 pa_log("setsockopt(SO_REUSEADDR) failed: %s", pa_cstrerror(errno)); in open_bind_udp_socket()
824 if (ret < 0 && errno ! in open_bind_udp_socket()
[all...]
/device/qemu/hardware/display/
H A Ddisplay_layer.c17 #include <errno.h>
106 HDF_LOGE("%s: mmap fb address failure, errno: %d", __func__, errno); in CreateLayer()
/kernel/linux/linux-5.10/tools/testing/selftests/timers/
H A Dset-timer-lat.c23 #include <errno.h>
244 } while (err == -1 && errno == EINTR); in do_timer_oneshot()
/kernel/linux/linux-5.10/tools/testing/selftests/wireguard/qemu/
H A Dinit.c8 #include <errno.h>
39 fprintf(stderr, "\n\n\x1b[37m\x1b[41m\x1b[1mSOMETHING WENT HORRIBLY WRONG\x1b[0m\n\n \x1b[31m\x1b[1m%s: %s\x1b[0m\n\n\x1b[37m\x1b[44m\x1b[1mPower off...\x1b[0m\n\n", what, strerror(errno)); in panic()
/kernel/linux/linux-5.10/tools/testing/selftests/kvm/s390x/
H A Dresets.c85 TEST_ASSERT(irqs >= 0, "Could not fetch IRQs: errno %d\n", errno); in assert_noirq()
200 TEST_ASSERT(irqs >= 0, "Error injecting EMERGENCY IRQ errno %d\n", errno); in inject_irq()
/kernel/linux/linux-5.10/tools/testing/selftests/memfd/
H A Dfuse_test.c19 #include <errno.h>
115 if (r < 0 && errno != EBUSY) { in mfd_busy_add_seals()
/kernel/linux/linux-5.10/scripts/dtc/
H A Ddtc.c282 strerror(errno)); in main()
347 outname, strerror(errno)); in main()
/kernel/linux/linux-5.10/samples/bpf/
H A Dtrace_event_user.c12 #include <errno.h>
130 printf("failed to generate some load with dd: %s\n", strerror(errno)); in generate_load()

Completed in 45 milliseconds

1...<<191192193194195196197198199200>>...586