/third_party/ffmpeg/tools/ |
H A D | ismindex.c | 187 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 D | canon_pp-dev.c | 60 #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 D | speaker-test.c | 50 #include <errno.h> 827 return -errno; in read_wav() 829 return -errno; in read_wav()
|
/third_party/alsa-lib/src/ucm/ |
H A D | ucm_subs.c | 526 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 D | sysinfo.cc | 475 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 D | uv-common.c | 27 #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 D | cert_write.c | 40 #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 D | openssl-server.c | 658 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 D | node_options.cc | 13 #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 D | ntfscp.c | 391 * -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 D | ntfsusermap.c | 110 #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 D | test-path.c | 27 #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 D | expression.c | 34 #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 D | iris_batch.c | 56 #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 D | crocus_batch.c | 52 #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 D | uv-common.c | 26 #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 D | ohos_daemon-conf.c | 25 #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 D | daemon-conf.c | 25 #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 D | smtpd.py | 75 import errno namespace 169 if err.errno != errno.ENOTCONN:
|
/third_party/python/Lib/test/test_asyncio/ |
H A D | test_sendfile.py | 4 import errno namespace 494 if e.errno == errno.EPROTOTYPE and sys.platform == "darwin":
|
/third_party/python/Lib/test/ |
H A D | test_asyncore.py | 7 import errno namespace 310 err = asyncore._strerror(errno.EPERM) 312 self.assertEqual(err, os.strerror(errno.EPERM))
|
H A D | test_support.py | 1 import errno namespace 318 self.assertEqual(cm.exception.errno, errno.EBADF)
|
/third_party/skia/third_party/externals/spirv-tools/utils/ |
H A D | generate_grammar_tables.py | 17 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 D | generate_grammar_tables.py | 17 import errno namespace 48 if e.errno == errno.EEXIST and os.path.isdir(dir):
|
/third_party/python/Lib/logging/ |
H A D | config.py | 27 import errno namespace 43 RESET_ERROR = errno.ECONNRESET 889 if e.errno != RESET_ERROR:
|