Home
last modified time | relevance | path

Searched refs:errno (Results 5726 - 5750 of 14177) sorted by relevance

1...<<221222223224225226227228229230>>...568

/third_party/cups-filters/filter/foomatic-rip/
H A Dfoomaticrip.c36 #include <errno.h>
623 _log("Could not create temporary file: %s\n", strerror(errno)); in print_file()
716 _log("Could not create temporary file: %s\n", strerror(errno)); in print_file()
729 _log("ERROR: Cannot flush buffer: %s\n", strerror(errno)); in print_file()
/third_party/mesa3d/src/gallium/drivers/tegra/
H A Dtegra_screen.c24 #include <errno.h>
197 err = -errno; in tegra_screen_import_resource()
576 if (errno != ENOENT) in tegra_screen_create()
577 fprintf(stderr, "failed to open GPU device: %s\n", strerror(errno)); in tegra_screen_create()
/third_party/musl/src/stdio/
H A Dvfprintf.c2 #include <errno.h>
617 if (1) a = strerror(errno); else in printf_core()
677 errno = EINVAL; in printf_core()
680 errno = EOVERFLOW; in printf_core()
/third_party/musl/porting/liteos_a/kernel/src/stdio/
H A Dvfprintf.c2 #include <errno.h>
605 if (1) a = strerror(errno); else in printf_core()
664 errno = EINVAL; in printf_core()
667 errno = EOVERFLOW; in printf_core()
/third_party/musl/porting/linux/user/src/stdio/
H A Dvfprintf.c2 #include <errno.h>
610 if (1) a = strerror(errno); else in printf_core()
669 errno = EINVAL; in printf_core()
672 errno = EOVERFLOW; in printf_core()
/third_party/musl/porting/liteos_m/kernel/src/stdio/
H A Dvfprintf.c2 #include <errno.h>
606 if (1) a = strerror(errno); else in printf_core()
665 errno = EINVAL; in printf_core()
668 errno = EOVERFLOW; in printf_core()
/third_party/musl/porting/uniproton/kernel/src/stdio/
H A Dvfprintf.c2 #include <errno.h>
606 if (1) a = strerror(errno); else in printf_core()
665 errno = EINVAL; in printf_core()
668 errno = EOVERFLOW; in printf_core()
/third_party/node/deps/cares/src/lib/
H A Dares_getaddrinfo.c581 errno = 0; in ares_getaddrinfo_int()
583 if ((val == 0 && errno != 0) || val > 65535) { in ares_getaddrinfo_int()
593 errno = 0; in ares_getaddrinfo_int()
595 if ((val == 0 && errno != 0) || val > 65535) { in ares_getaddrinfo_int()
/third_party/ltp/testcases/network/nfsv4/locks/
H A Dlocktests.c771 errno = 0; in slave()
840 if (dp.verbose || errno != EAGAIN) in slave()
866 if (dp.verbose || errno != EAGAIN) in slave()
897 if (dp.verbose || errno != EAGAIN) in slave()
/third_party/mesa3d/src/gallium/drivers/vc4/
H A Dvc4_simulator.c177 errno); in vc4_create_simulator_bo()
308 strerror(errno)); in vc4_dump_to_file()
561 errno = -EINVAL; in vc4_simulator_get_param_ioctl()
610 errno = -EINVAL; in vc4_simulator_ioctl()
/third_party/python/Lib/
H A Dplatform.py1301 errno = None
1308 errno = e.errno
1311 errno,
H A Dssl.py264 import errno namespace
1056 if e.errno != errno.ENOTCONN:
1069 if e.errno not in (errno.ENOTCONN, errno.EINVAL):
1078 notconn_pre_handshake_data_error = SSLError(e.errno, reason)
/third_party/pulseaudio/src/pulsecore/
H A Dprotocol-simple.c26 #include <errno.h>
186 if (r < 0 && errno == EAGAIN) in do_read()
189 pa_log_debug("read(): %s", r == 0 ? "EOF" : pa_cstrerror(errno)); in do_read()
230 pa_log("write(): %s", pa_cstrerror(errno)); in do_write()
/third_party/rust/crates/rustix/src/backend/linux_raw/
H A Dconv.rs19 use super::io::errno::decode_usize_infallible;
21 use super::io::errno::try_decode_error;
23 use super::io::errno::try_decode_u64;
24 use super::io::errno::{
/third_party/rust/crates/nix/src/
H A Dfcntl.rs1 use crate::errno::Errno;
827 use crate::errno::Errno;
879 Ok(errno) => Err(Errno::from_i32(errno)), in posix_fallocate()
/kernel/linux/linux-6.6/tools/lib/bpf/
H A Dusdt.c411 err = -errno; in parse_elf_segs()
417 err = -errno; in parse_elf_segs()
469 lib_path, -errno); in parse_vma_segs()
477 err = -errno; in parse_vma_segs()
1049 err = -errno; in usdt_manager_attach_usdt()
1056 err = -errno; in usdt_manager_attach_usdt()
1101 err = -errno; in usdt_manager_attach_usdt()
/third_party/alsa-lib/src/pcm/
H A Dpcm_dmix.c80 err = -errno; in shm_sum_create_or_connect()
82 if (errno == EINVAL) in shm_sum_create_or_connect()
92 err = -errno; in shm_sum_create_or_connect()
102 err = -errno; in shm_sum_create_or_connect()
118 return -errno; in shm_sum_discard()
121 return -errno; in shm_sum_discard()
124 return -errno; in shm_sum_discard()
/third_party/googletest/googletest/src/
H A Dgtest-death-test.cc47 #include <errno.h>
320 // -1 on failure, and set errno to EINTR when it is interrupted and
323 // errno to EINTR. If the expression evaluates to -1 but errno is
330 } while (gtest_retval == -1 && errno == EINTR); \
339 // Returns the message describing the last system error in errno.
341 return errno == 0 ? "" : posix::StrError(errno); in GetLastErrnoDescription()
358 } while (num_read == -1 && errno == EINTR); in FailFromInternalError()
363 const int last_error = errno; in FailFromInternalError()
[all...]
/third_party/ninja/src/
H A Dninja.cc15 #include <errno.h>
975 errno = 0; in ToolCompilationDatabase()
977 } while (!success && errno == ERANGE); in ToolCompilationDatabase()
979 Error("cannot determine working directory: %s", strerror(errno)); in ToolCompilationDatabase()
1349 if (!disk_interface_.MakeDirs(build_dir_ + "/.") && errno != EEXIST) { in EnsureBuildDirExists()
1351 build_dir_.c_str(), strerror(errno)); in EnsureBuildDirExists()
1565 Fatal("chdir to '%s' - %s", options.working_dir, strerror(errno)); in real_main()
/third_party/node/deps/googletest/src/
H A Dgtest-death-test.cc51 #include <errno.h>
324 // -1 on failure, and set errno to EINTR when it is interrupted and
327 // errno to EINTR. If the expression evaluates to -1 but errno is
334 } while (gtest_retval == -1 && errno == EINTR); \
343 // Returns the message describing the last system error in errno.
345 return errno == 0 ? "" : posix::StrError(errno); in GetLastErrnoDescription()
362 } while (num_read == -1 && errno == EINTR); in FailFromInternalError()
367 const int last_error = errno; in FailFromInternalError()
[all...]
/third_party/mesa3d/src/gtest/src/
H A Dgtest-death-test.cc46 # include <errno.h>
318 // -1 on failure, and set errno to EINTR when it is interrupted and
321 // errno to EINTR. If the expression evaluates to -1 but errno is
328 } while (gtest_retval == -1 && errno == EINTR); \
337 // Returns the message describing the last system error in errno.
339 return errno == 0 ? "" : posix::StrError(errno); in GetLastErrnoDescription()
356 } while (num_read == -1 && errno == EINTR); in FailFromInternalError()
361 const int last_error = errno; in FailFromInternalError()
[all...]
/third_party/libbpf/src/
H A Dusdt.c411 err = -errno; in parse_elf_segs()
417 err = -errno; in parse_elf_segs()
469 lib_path, -errno); in parse_vma_segs()
477 err = -errno; in parse_vma_segs()
1049 err = -errno; in usdt_manager_attach_usdt()
1056 err = -errno; in usdt_manager_attach_usdt()
1101 err = -errno; in usdt_manager_attach_usdt()
/third_party/python/Modules/
H A Dtimemodule.c356 errno = err;
503 errno = 0;
862 errno = 0;
869 if (buflen == 0 && errno == EINVAL) {
2166 err = errno;
2169 err = errno;
2178 errno = err;
/third_party/musl/porting/linux/user/ldso/
H A Ddynlink.c18 #include <errno.h>
1272 if (errno==EINTR) continue; in read_loop()
1288 if (!DL_NOMMU_SUPPORT || q != MAP_FAILED || errno != EINVAL) in mmap_fixed()
1301 if (r < 0 && errno != EINTR) return MAP_FAILED; in mmap_fixed()
1604 errno = EBUSY; in map_library()
1650 && errno != ENOSYS) in map_library()
1661 errno = ENOEXEC; in map_library()
1678 switch (errno) { in path_open()
1724 if (l == -1) switch (errno) { in fixup_rpath()
1982 errno in load_library()
[all...]
/third_party/elfutils/debuginfod/
H A Ddebuginfod.cxx1618 throw libc_exception (errno, "cannot create temporary file"); in extract_section()
1621 throw libc_exception (errno, "cannot write to temporary file"); in extract_section()
1626 throw libc_exception (errno, "cannot fstat file"); in extract_section()
1659 throw libc_exception (errno, string("open ") + b_source0); in handle_buildid_f_match()
1670 throw libc_exception (errno, string("fstat ") + b_source0); in handle_buildid_f_match()
1700 throw libc_exception (errno, string ("fstat ") + b_source0 in handle_buildid_f_match()
1762 throw libc_exception (errno, string("stat ") + b_source0); in handle_buildid_r_match()
1806 throw libc_exception (errno, in handle_buildid_r_match()
1857 throw libc_exception (errno, string("popen ") + popen_cmd); in handle_buildid_r_match()
1864 throw libc_exception (errno, strin in handle_buildid_r_match()
[all...]

Completed in 45 milliseconds

1...<<221222223224225226227228229230>>...568