Home
last modified time | relevance | path

Searched refs:errno (Results 1176 - 1200 of 6114) sorted by relevance

1...<<41424344454647484950>>...245

/third_party/ffmpeg/libavutil/
H A Davsscanf.c24 #include <errno.h>
145 errno = EINVAL; in ffintscan()
172 errno = EINVAL; in ffintscan()
196 errno = ERANGE; in ffintscan()
204 errno = ERANGE; in ffintscan()
207 errno = ERANGE; in ffintscan()
316 errno = EINVAL; in decfloat()
328 errno = ERANGE; in decfloat()
332 errno = ERANGE; in decfloat()
491 errno in decfloat()
[all...]
/third_party/libuv/src/unix/
H A Dos390.c120 return UV__ERR(errno); in uv__platform_loop_init()
297 return UV__ERR(errno); in uv__interface_addresses_v6()
316 errno = 0; in uv__interface_addresses_v6()
433 return UV__ERR(errno); in uv_interface_addresses()
452 return UV__ERR(errno); in uv_interface_addresses()
475 return UV__ERR(errno); in uv_interface_addresses()
560 return UV__ERR(errno); in uv_interface_addresses()
619 while (rv == -1 && errno == EINTR); in uv__io_check_fd()
652 return UV__ERR(errno); in os390_regfileint()
710 if (rc != 0 && errno ! in uv__fs_event_stop()
[all...]
/third_party/nghttp2/src/
H A Dshrpx_connection.cc1114 while ((nwrite = write(fd, data, len)) == -1 && errno == EINTR) in write_clear()
1117 if (errno == EAGAIN || errno == EWOULDBLOCK) { in write_clear()
1141 while ((nwrite = writev(fd, iov, iovcnt)) == -1 && errno == EINTR) in writev_clear()
1144 if (errno == EAGAIN || errno == EWOULDBLOCK) { in writev_clear()
1168 while ((nread = read(fd, data, len)) == -1 && errno == EINTR) in read_clear()
1171 if (errno == EAGAIN || errno == EWOULDBLOCK) { in read_clear()
1188 while ((nread = read(fd, data, len)) == -1 && errno in read_nolim_clear()
[all...]
/third_party/node/deps/uv/src/unix/
H A Dos390.c121 return UV__ERR(errno); in uv__platform_loop_init()
290 return UV__ERR(errno); in uv__interface_addresses_v6()
309 errno = 0; in uv__interface_addresses_v6()
426 return UV__ERR(errno); in uv_interface_addresses()
445 return UV__ERR(errno); in uv_interface_addresses()
468 return UV__ERR(errno); in uv_interface_addresses()
553 return UV__ERR(errno); in uv_interface_addresses()
612 while (rv == -1 && errno == EINTR); in uv__io_check_fd()
645 return UV__ERR(errno); in os390_regfileint()
703 if (rc != 0 && errno ! in uv__fs_event_stop()
[all...]
/third_party/ltp/testcases/kernel/fs/doio/
H A Dgrowfiles.c70 #include <errno.h>
84 #include <errno.h>
486 if (errno != EEXIST) { in main()
1260 num_files * PATH_MAX, strerror(errno)); in main()
1311 grow_incr, strerror(errno)); in main()
1451 "%s%s: %d %s/%d: open(%s, %#o, 0777) returned -1, errno:%d %s\n", in main()
1453 __LINE__, filename, ret, errno, in main()
1454 strerror(errno)); in main()
1980 "%s%s: %d %s/%d: Unable to fstat(%d, &buf), errno:%d %s\n", in growfile()
1981 Progname, TagName, Pid, __FILE__, __LINE__, fd, errno, in growfile()
[all...]
/third_party/ntfs-3g/ntfsprogs/
H A Dntfsfix.c60 #include <errno.h>
231 errno = EINVAL; in OLD_ntfs_volume_set_flags()
242 errno = EIO; in OLD_ntfs_volume_set_flags()
263 errno = EIO; in OLD_ntfs_volume_set_flags()
275 errno = EIO; in OLD_ntfs_volume_set_flags()
477 errno = EIO; in fix_mftmirr()
489 errno = EIO; in fix_mftmirr()
693 errno = EINVAL; in fix_upcase()
706 errno = EIO; in fix_upcase()
764 errno in rewrite_boot()
[all...]
/third_party/python/Lib/
H A Dshutil.py12 import errno namespace
101 if err.errno in {errno.EINVAL, errno.ENOTSUP}:
150 if err.errno == errno.ENOTSOCK:
157 if err.errno == errno.ENOSPC: # filesystem is full
324 if e.errno not in (errno
[all...]
H A Dasyncore.py56 from errno import EALREADY, EINPROGRESS, EWOULDBLOCK, ECONNRESET, EINVAL, \
121 if e.errno not in _DISCONNECTED:
244 if err.errno in (ENOTCONN, EINVAL):
354 if why.errno in (EWOULDBLOCK, ECONNABORTED, EAGAIN):
366 if why.errno == EWOULDBLOCK:
368 elif why.errno in _DISCONNECTED:
386 if why.errno in _DISCONNECTED:
401 if why.errno not in (ENOTCONN, EBADF):
565 if x.errno == EBADF:
/third_party/eudev/src/libudev/
H A Dlibudev-device.c25 #include <errno.h>
617 return log_debug_errno(errno, "no db file to read %s: %m", filename); in udev_device_read_db()
675 return -errno; in udev_device_read_uevent_file()
724 errno = EINVAL; in udev_device_new()
730 errno = ENOMEM; in udev_device_new()
768 errno = EINVAL; in udev_device_new_from_syspath()
773 errno = EINVAL; in udev_device_new_from_syspath()
780 errno = EINVAL; in udev_device_new_from_syspath()
788 errno = EINVAL; in udev_device_new_from_syspath()
809 errno in udev_device_new_from_syspath()
[all...]
/third_party/python/Python/
H A Dfileutils.c1119 POSIX, set errno and return nonzero on error. Fill status and return 0 on
1132 /* errno is already set by _get_osfhandle, but we also set in _Py_fstat_noraise()
1143 errno = winerror_to_errno(error); in _Py_fstat_noraise()
1158 /* The Win32 error is already set, but we also set errno for in _Py_fstat_noraise()
1160 errno = winerror_to_errno(GetLastError()); in _Py_fstat_noraise()
1183 error on error. On POSIX, set errno on error. Fill status and return 0 on
1225 errno = EINVAL; in _Py_wstat()
1404 if (errno == EBADF) { in set_inheritable()
1411 if (errno != ENOTTY && errno ! in set_inheritable()
1766 errno = 0; _Py_read() local
1830 errno = 0; _Py_write_impl() local
[all...]
/drivers/hdf_core/adapter/uhdf2/manager/src/
H A Ddevmgr_uevent.c16 #include <errno.h>
326 HDF_LOGE("realpath file: %{public}s failed, errno:%{public}d", path, errno); in DevMgrUeventParseConfig()
335 HDF_LOGE("%{public}s fopen %{public}s failed:%{public}d", __func__, resolvedPath, errno); in DevMgrUeventParseConfig()
362 HDF_LOGE("create socket failed, err = %{public}d", errno); in DevMgrUeventSocketInit()
368 HDF_LOGE("setsockopt: SO_RCVBUF failed err = %{public}d", errno); in DevMgrUeventSocketInit()
375 HDF_LOGE("setsockopt: SO_PASSCRED failed, err = %{public}d", errno); in DevMgrUeventSocketInit()
381 HDF_LOGE("bind socket failed, err = %{public}d", errno); in DevMgrUeventSocketInit()
548 HDF_LOGE("%{public}s poll fail %{public}d", __func__, errno); in DevMgrUeventThread()
553 int backErrno = errno; in DevMgrUeventThread()
[all...]
/third_party/eudev/src/shared/
H A Dlog.c22 #include <errno.h>
97 return -errno; in log_open_kmsg()
112 return -errno; in create_log_socket()
159 r = -errno; in log_open_syslog()
279 if (errno == EIO && getpid() == 1) { in write_to_console()
292 return -errno; in write_to_console()
294 return -errno; in write_to_console()
351 return -errno; in write_to_syslog()
392 return -errno; in write_to_kmsg()
/third_party/curl/lib/
H A Dstrerror.c820 * The 'err' argument passed in to this function MUST be a true errno number
830 * CRT (errno), Winsock (WSAGetLastError), Windows API (GetLastError).
841 int old_errno = errno; in Curl_strerror()
855 /* 'sys_nerr' is the maximum errno number, it is not widely portable */ in Curl_strerror()
872 * The POSIX-style strerror_r() may set errno to ERANGE if insufficient in Curl_strerror()
915 if(errno != old_errno) in Curl_strerror()
916 errno = old_errno; in Curl_strerror()
936 int old_errno = errno; in Curl_winapi_strerror()
955 if(errno != old_errno) in Curl_winapi_strerror()
956 errno in Curl_winapi_strerror()
[all...]
/third_party/mesa3d/src/gbm/main/
H A Dgbm.c42 #include <errno.h>
134 errno = EINVAL; in gbm_create_device()
420 * \return Returns 0 on success, otherwise -1 is returned an errno set
484 * returned and errno set.
494 errno = EINVAL; in gbm_bo_create()
535 errno = EINVAL; in gbm_bo_create_with_modifiers2()
540 errno = EINVAL; in gbm_bo_create_with_modifiers2()
545 errno = EINVAL; in gbm_bo_create_with_modifiers2()
575 * and errno is set.
610 * and errno i
[all...]
/third_party/skia/third_party/externals/harfbuzz/test/shape/
H A Dhb_test_tools.py3 import sys, os, re, difflib, unicodedata, errno, cgi, itertools namespace
147 if e.errno != errno.EPIPE:
330 if e.errno != errno.EPIPE:
343 if e.errno != errno.EPIPE:
374 if e.errno != errno.EPIPE:
/third_party/pulseaudio/src/pulsecore/
H A Dsocket-client.c29 #include <errno.h>
135 pa_log("getsockopt(): %s", pa_cstrerror(errno)); in do_call()
146 errno = error; in do_call()
200 if (errno != EINPROGRESS) {
201 pa_log_debug("connect(): %s (%d)", pa_cstrerror(errno), errno);
253 pa_log("socket(): %s", pa_cstrerror(errno));
395 errno = EHOSTUNREACH;
415 errno = ETIMEDOUT;
/third_party/protobuf/src/google/protobuf/io/
H A Dio_win32.cc56 #include <errno.h>
260 errno = ENOENT; in open()
273 errno = ENOENT; in mkdir()
286 errno = ENOENT; in access()
299 errno = ENOENT; in chdir()
312 errno = ENOENT; in stat()
324 errno = EINVAL; in fopen()
329 errno = ENOENT; in fopen()
334 errno = EINVAL; in fopen()
/third_party/python/Lib/test/
H A Dtest_posix.py12 import errno namespace
45 if e.errno == errno.ENOSYS:
151 self.assertEqual(e.errno, errno.EPERM)
326 if inst.errno in {errno.EINVAL, errno.ENOTSUP}:
341 self.assertEqual(cm.exception.errno, errno
[all...]
/third_party/ffmpeg/libavdevice/
H A Dkmsgrab.c102 err = errno; in kmsgrab_get_fb()
123 err = errno; in kmsgrab_get_fb()
167 err = errno; in kmsgrab_get_fb2()
232 err = errno; in kmsgrab_get_fb2()
287 err = errno; in kmsgrab_read_packet()
439 err = errno; in kmsgrab_read_header()
455 err = errno; in kmsgrab_read_header()
466 err = errno; in kmsgrab_read_header()
509 if (!fb2 && errno == ENOSYS) { in kmsgrab_read_header()
513 err = errno; in kmsgrab_read_header()
[all...]
H A Dfbdev_enc.c61 ret = AVERROR(errno); in fbdev_write_header()
69 ret = AVERROR(errno); in fbdev_write_header()
75 ret = AVERROR(errno); in fbdev_write_header()
89 ret = AVERROR(errno); in fbdev_write_header()
118 "Error refreshing variable info: %s\n", av_err2str(AVERROR(errno))); in fbdev_write_packet()
/applications/standard/app_samples/code/BasicFeature/Connectivity/VPN/entry/src/main/cpp/
H A Dvpn_client.cpp85 if (errno != ERRORAGAIN) { in HandleReadTunfd()
98 strerror(errno)); in HandleReadTunfd()
118 if (errno != EAGAIN) { in HandleTcpReceived()
119 NETMANAGER_VPN_LOGE("read tun device error: %{public}d %{public}d", errno, fdInfo.tunnelFd); in HandleTcpReceived()
128 NETMANAGER_VPN_LOGE("error Write To Tunfd, errno: %{public}d", errno); in HandleTcpReceived()
/third_party/f2fs-tools/tools/
H A Dfibmap.c24 #include <errno.h>
161 ret = errno;
173 ret = errno;
189 ret = errno;
202 ret = errno;
/third_party/eudev/src/udev/
H A Dudev-builtin-keyboard.c21 #include <errno.h>
98 log_error_errno(errno, "Error calling EVIOCSKEYCODE on device node '%s' (scan code 0x%x, key code %d): %m", devnode, map.scan, map.key); in map_keycode()
129 log_error_errno(errno, "Unable to EVIOCGABS device \"%s\"", devnode); in override_abs()
149 log_error_errno(errno, "Unable to EVIOCSABS device \"%s\"", devnode); in override_abs()
183 return log_error_errno(errno, "Error opening device \"%s\": %m", devnode); in open_device()
H A Dudevadm-monitor.c24 #include <errno.h>
163 log_error_errno(errno, "error creating epoll fd: %m"); in adm_monitor()
203 log_error_errno(errno, "fail to add fd to epoll: %m"); in adm_monitor()
237 log_error_errno(errno, "fail to add fd to epoll: %m"); in adm_monitor()
252 if (errno != EINTR) in adm_monitor()
/third_party/libunwind/libunwind/tests/
H A Dtest-ptrace.c39 #include <errno.h>
252 if (errno == EINTR) in main()
255 panic ("wait4() failed (errno=%d)\n", errno); in main()
317 panic ("ptrace(PTRACE_SINGLESTEP) failed (errno=%d)\n", errno); in main()
323 panic ("ptrace(PT_STEP) failed (errno=%d)\n", errno); in main()

Completed in 25 milliseconds

1...<<41424344454647484950>>...245