HomeSort by relevance Sort by last modified time
    Searched defs:errno (Results 1 - 25 of 117) sorted by null

1 2 3 4 5

  /bionic/tests/
errno_test.cpp 31 #include <errno.h>
33 // Some GNU source likes to declare errno itself for some reason.
34 extern "C" int errno; variable
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
errno.c 2 errno variable
15 #include <sys/errno.h>
21 int errno; variable
  /external/syslinux/core/
errno.c 2 #include <errno.h>
4 __export int errno; variable
  /external/syslinux/gpxe/src/core/
errno.c 1 #include <errno.h>
7 * This file provides the global variable #errno.
18 int errno; variable
  /bionic/libc/include/
errno.h 33 #include <linux/errno.h>
43 #define errno (*__errno()) macro
  /device/linaro/bootloader/edk2/StdLib/LibC/Main/
errno.c 2 Instantiate errno as declared in <errno.h>.
14 int errno = 0; variable
  /external/syslinux/gpxe/src/include/gpxe/
errortab.h 15 int errno; member in struct:errortab
  /external/libxml2/win32/wince/
wincecompat.c 20 int errno=0; variable
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
errno.h 25 # include <linux/errno.h>
46 /* Function to get address of global `errno' variable. */
50 /* When using threads, errno is a per-thread value. */
51 # define errno (*__errno_location ()) macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
errno.h 25 # include <linux/errno.h>
46 /* Function to get address of global `errno' variable. */
50 /* When using threads, errno is a per-thread value. */
51 # define errno (*__errno_location ()) macro
  /external/perf_data_converter/src/quipper/
scoped_temp_path.cc 7 #include <errno.h>
29 LOG(ERROR) << "Could not remove " << path << ", errno=" << errno; local
  /libcore/luni/src/main/java/android/system/
ErrnoException.java 25 * errno value, for comparison against the constants in {@link OsConstants}, should sophisticated
32 * The errno value, for comparison with the {@code E} constants in {@link OsConstants}.
34 public final int errno; field in class:ErrnoException
37 * Constructs an instance with the given function name and errno value.
39 public ErrnoException(String functionName, int errno) {
41 this.errno = errno;
45 * Constructs an instance with the given function name, errno value, and cause.
47 public ErrnoException(String functionName, int errno, Throwable cause) {
50 this.errno = errno
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/fs/
UnixException.java 38 private int errno; field in class:UnixException
41 UnixException(int errno) {
42 this.errno = errno;
47 this.errno = 0;
51 int errno() { method in class:UnixException
52 return errno;
55 void setError(int errno) {
56 this.errno = errno;
    [all...]
  /system/core/adb/
sysdeps_test.cpp 30 ASSERT_EQ(0, adb_socketpair(fds)) << strerror(errno);
52 ASSERT_EQ(EMFILE, errno) << strerror(errno);
67 ASSERT_EQ(0, adb_socketpair(fds)) << strerror(errno); variable
182 ASSERT_EQ(0, adb_socketpair(&sockets[i * 2])) << strerror(errno);
  /prebuilts/go/darwin-x86/src/runtime/
netpoll_solaris.go 87 func errno() int32 { func
120 print("runtime: port_create failed (errno=", errno(), ")\n")
161 print("runtime: port_associate failed (errno=", errno(), ")\n")
198 if e := errno(); e != _EINTR {
199 print("runtime: port_getn on fd ", portfd, " failed (errno=", e, ")\n")
  /prebuilts/go/linux-x86/src/runtime/
netpoll_solaris.go 87 func errno() int32 { func
120 print("runtime: port_create failed (errno=", errno(), ")\n")
161 print("runtime: port_associate failed (errno=", errno(), ")\n")
198 if e := errno(); e != _EINTR {
199 print("runtime: port_getn on fd ", portfd, " failed (errno=", e, ")\n")
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/
zutil.c 138 * errno. We define it as a global variable to simplify porting.
141 int errno = 0; variable
  /external/libchrome/base/process/
kill_posix.cc 7 #include <errno.h>
197 << " failed to deliver a SIGKILL signal (" << errno << ")."; local
  /external/python/cpython3/Modules/zlib/
zutil.c 141 * errno. We define it as a global variable to simplify porting.
144 int errno = 0; variable
  /external/zlib/src/
zutil.c 141 * errno. We define it as a global variable to simplify porting.
144 int errno = 0; variable
  /cts/tests/tests/net/src/android/net/cts/
MultinetworkApiTest.java 74 int errno = runGetaddrinfoCheck(network.getNetworkHandle()); local
75 if (errno != 0) {
77 "getaddrinfo on " + mCM.getNetworkInfo(network), -errno);
91 int errno = runSetprocnetwork(network.getNetworkHandle()); local
92 if (errno != 0) {
94 "setprocnetwork on " + mCM.getNetworkInfo(network), -errno);
110 int errno = runSetprocnetwork(network.getNetworkHandle()); local
111 if (errno != 0) {
113 "setprocnetwork on " + mCM.getNetworkInfo(network), -errno);
126 int errno = runSetsocknetwork(network.getNetworkHandle()) local
136 int errno = runDatagramCheck(network.getNetworkHandle()); local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
zutil.c 144 * errno. We define it as a global variable to simplify porting.
147 int errno = 0; variable
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
zutil.c 141 * errno. We define it as a global variable to simplify porting.
144 int errno = 0; variable
  /external/capstone/bindings/python/pyx/
ccapstone.pyx 158 def errno(self): member in class:CsInsn
  /external/gptfdisk/
diskio-unix.cc 25 #include <errno.h>
64 cerr << "Problem opening " << realFilename << " for reading! Error is " << errno << ".\n"; local
65 if (errno == EACCES) // User is probably not running as root
67 if (errno == ENOENT)
170 if ((errno != ENOTTY) && (errno != EINVAL)) {
171 cerr << "\aError " << errno << " when determining sector size! Setting sector size to "
434 if ((!*err) || (errno == EFBIG)) {

Completed in 2607 milliseconds

1 2 3 4 5