Home
last modified time | relevance | path

Searched refs:errno (Results 4726 - 4750 of 5776) sorted by relevance

1...<<181182183184185186187188189190>>...232

/third_party/ffmpeg/tools/
H A Dismindex.c187 ret = AVERROR(errno); in write_fragments()
197 if (mkdir(dirname, 0777) == -1 && errno != EEXIST) { in write_fragments()
198 ret = AVERROR(errno); in write_fragments()
/third_party/backends/backend/
H A Dcanon_pp-dev.c60 #include <errno.h>
233 if (errno == EINTR) continue; in safe_write()
253 if (errno == EINTR) continue; in safe_read()
/third_party/alsa-utils/speaker-test/
H A Dspeaker-test.c50 #include <errno.h>
827 return -errno; in read_wav()
829 return -errno; in read_wav()
/third_party/alsa-lib/src/ucm/
H A Ducm_subs.c526 uc_error("sysfs: cannot read link '%s' (%d)", path, errno); in rval_sysfs()
542 uc_error("sysfs open failed for '%s' (%d)", path, errno); in rval_sysfs()
548 uc_error("sysfs unable to read value '%s' (%d)", path, errno); in rval_sysfs()
/third_party/benchmark/src/
H A Dsysinfo.cc475 fprintf(stderr, "Err: %s\n", strerror(errno)); in GetNumCPUs()
491 strerror(errno)); in GetNumCPUs()
727 freqStr, strerror(errno)); in GetCPUCyclesPerSecond()
/third_party/libuv/src/
H A Duv-common.c27 #include <errno.h>
85 /* Libuv expects that free() does not clobber errno. The system allocator in uv__free()
88 saved_errno = errno; in uv__free()
90 errno = saved_errno; in uv__free()
/third_party/mbedtls/programs/x509/
H A Dcert_write.c40 #include <errno.h>
261 errno = 0; in parse_serial_decimal_format()
264 if ((errno != 0) || (end_ptr == ibuf)) { in parse_serial_decimal_format()
/third_party/libwebsockets/lib/tls/openssl/
H A Dopenssl-server.c658 errno = 0;
662 lwsl_err("SSL_new failed: %d (errno %d)\n",
663 lws_ssl_get_error(wsi, 0), errno);
719 errno = 0;
/third_party/node/src/
H A Dnode_options.cc13 #include <errno.h>
15 #include <cstdlib> // strtoul, errno
1010 errno = 0; in ParseAndValidatePort()
1013 if (errno != 0 || *endptr != '\0'|| in ParseAndValidatePort()
/third_party/ntfs-3g/ntfsprogs/
H A Dntfscp.c391 * -1 otherwise, with errno set accordingly
427 * -1 otherwise, with errno set accordingly
553 * -1 otherwise, with errno set accordingly
608 * -1 otherwise, with errno set accordingly
648 * -1 otherwise, with errno set accordingly
701 * -1 otherwise, with errno set accordingly
745 errno = ENOSPC; in find_best_runs()
759 * -1 otherwise, with errno set accordingly
1061 if (errno != ENOENT) { in main()
1166 if (errno ! in main()
[all...]
H A Dntfsusermap.c110 #include <errno.h>
223 if (errno == EACCES) in open_volume()
805 if (stat(fullname,&st) && (errno == ENOENT)) { in outputmap()
/third_party/libinput/test/
H A Dtest-path.c27 #include <errno.h>
51 return fd < 0 ? -errno : fd; in open_restricted_count()
72 return fd < 0 ? -errno : fd; in open_restricted()
/third_party/ltp/tools/sparse/sparse-src/
H A Dexpression.c34 #include <errno.h>
271 errno = 0; in get_number_value()
275 if (value == ULLONG_MAX && errno == ERANGE) in get_number_value()
/third_party/mesa3d/src/gallium/drivers/iris/
H A Diris_batch.c56 #include <errno.h>
774 DBG("DRM_IOCTL_I915_GET_RESET_STATS failed: %s\n", strerror(errno)); in iris_batch_check_for_reset()
995 ret = -errno; in submit_batch()
/third_party/mesa3d/src/gallium/drivers/crocus/
H A Dcrocus_batch.c52 #include <errno.h>
799 DBG("DRM_IOCTL_I915_GET_RESET_STATS failed: %s\n", strerror(errno)); in crocus_batch_check_for_reset()
895 ret = -errno; in submit_batch()
/third_party/node/deps/uv/src/
H A Duv-common.c26 #include <errno.h>
84 /* Libuv expects that free() does not clobber errno. The system allocator in uv__free()
87 saved_errno = errno; in uv__free()
89 errno = saved_errno; in uv__free()
/third_party/pulseaudio/src/daemon/
H A Dohos_daemon-conf.c25 #include <errno.h>
684 if (!f && errno != ENOENT) { in pa_daemon_conf_load()
685 pa_log_warn(_("Failed to open configuration file: %s"), pa_cstrerror(errno)); in pa_daemon_conf_load()
H A Ddaemon-conf.c25 #include <errno.h>
684 if (!f && errno != ENOENT) { in pa_daemon_conf_load()
685 pa_log_warn(_("Failed to open configuration file: %s"), pa_cstrerror(errno)); in pa_daemon_conf_load()
/third_party/python/Lib/
H A Dsmtpd.py75 import errno namespace
169 if err.errno != errno.ENOTCONN:
/third_party/python/Lib/test/test_asyncio/
H A Dtest_sendfile.py4 import errno namespace
494 if e.errno == errno.EPROTOTYPE and sys.platform == "darwin":
/third_party/python/Lib/test/
H A Dtest_asyncore.py7 import errno namespace
310 err = asyncore._strerror(errno.EPERM)
312 self.assertEqual(err, os.strerror(errno.EPERM))
H A Dtest_support.py1 import errno namespace
318 self.assertEqual(cm.exception.errno, errno.EBADF)
/third_party/skia/third_party/externals/spirv-tools/utils/
H A Dgenerate_grammar_tables.py17 import errno namespace
48 if e.errno == errno.EEXIST and os.path.isdir(dir):
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/
H A Dgenerate_grammar_tables.py17 import errno namespace
48 if e.errno == errno.EEXIST and os.path.isdir(dir):
/third_party/python/Lib/logging/
H A Dconfig.py27 import errno namespace
43 RESET_ERROR = errno.ECONNRESET
889 if e.errno != RESET_ERROR:

Completed in 34 milliseconds

1...<<181182183184185186187188189190>>...232