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

1 2 3

  /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/u-boot/lib/
errno.c 1 int errno = 0; variable
  /bionic/libc/include/
errno.h 32 * @file errno.h
37 #include <linux/errno.h>
47 * Returns the address of the calling thread's `errno` storage.
48 * Non-portable and should not be used directly. Use `errno` instead.
55 * [errno(3)](http://man7.org/linux/man-pages/man3/errno.3.html) is the last error on the calling
58 #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/libxml2/win32/wince/
wincecompat.c 20 int errno=0; variable
  /external/perf_data_converter/src/quipper/
scoped_temp_path.cc 7 #include <errno.h>
29 LOG(ERROR) << "Could not remove " << path << ", errno=" << errno; local
  /art/runtime/gc/space/
image_space_test.cc 174 CHECK_EQ(result, 0) << strerror(errno); variable
176 CHECK_EQ(result, 0) << strerror(errno); variable
182 CHECK_NE(fd, -1) << strerror(errno); variable
184 CHECK_EQ(result, 0) << strerror(errno); variable
190 CHECK_EQ(result, 0) << strerror(errno); variable
192 CHECK_EQ(result, 0) << strerror(errno); variable
194 CHECK_EQ(result, 0) << strerror(errno); variable
  /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/python/cpython2/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
  /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
zutil.h 37 * errno. We define it as a global variable to simplify porting.
41 # define errno z_errno macro
43 extern int errno;
46 # include <errno.h>
  /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)) {
  /external/libchrome/base/message_loop/
message_pump_libevent.cc 7 #include <errno.h>
272 DCHECK(nwrite == 1 || errno == EAGAIN)
273 << "[nwrite:" << nwrite << "] [errno:" << errno << "]"; local
  /external/libusb/msvc/
errno.h 2 * errno.h
19 * names given by strerror and the defines in the Cygnus errno.h. A lot
20 * of the names from the Cygnus errno.h are not represented, and a few
85 * Definitions of errno. For _doserrno, sys_nerr and * sys_errlist, see
89 #undef errno macro
90 extern int errno;
93 #define errno (*_errno()) macro
  /external/ltp/testcases/kernel/security/filecaps/
verify_caps_exec.c 37 #include <errno.h>
52 int errno; variable
128 if (ret == -1 && errno != EEXIST)
  /external/u-boot/lib/zlib/
zutil.h 29 * errno. We define it as a global variable to simplify porting.
33 # define errno z_errno macro
35 extern int errno;
38 # include <errno.h>
  /cts/tests/tests/net/src/android/net/cts/
MultinetworkApiTest.java 80 int errno = runGetaddrinfoCheck(network.getNetworkHandle()); local
81 if (errno != 0) {
83 "getaddrinfo on " + mCM.getNetworkInfo(network), -errno);
97 int errno = runSetprocnetwork(network.getNetworkHandle()); local
98 if (errno != 0) {
100 "setprocnetwork on " + mCM.getNetworkInfo(network), -errno);
116 int errno = runSetprocnetwork(network.getNetworkHandle()); local
117 if (errno != 0) {
119 "setprocnetwork on " + mCM.getNetworkInfo(network), -errno);
132 int errno = runSetsocknetwork(network.getNetworkHandle()) local
142 int errno = runDatagramCheck(network.getNetworkHandle()); local
    [all...]
  /device/google/cuttlefish_common/host/commands/launch/
flags.cc 478 << ": " << strerror(errno);
624 << FLAGS_instance_dir << ". Error: " << errno; local
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Modules/zlib/
zutil.h 37 * errno. We define it as a global variable to simplify porting.
41 # define errno z_errno macro
43 extern int errno;
46 # include <errno.h>
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
socket.py 94 import errno
96 errno = None variable
97 EBADF = getattr(errno, 'EBADF', 9)
98 EINTR = getattr(errno, 'EINTR', 4)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
socket.py 90 import errno
92 errno = None variable
93 EBADF = getattr(errno, 'EBADF', 9)
94 EINTR = getattr(errno, 'EINTR', 4)

Completed in 2112 milliseconds

1 2 3