/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.11-4.8/sysroot/usr/include/bits/ |
errno.h | 25 # include <linux/errno.h> 42 /* Function to get address of global `errno' variable. */ 46 /* When using threads, errno is a per-thread value. */ 47 # define errno (*__errno_location ()) macro
|
/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/ltp/testcases/kernel/containers/pidns/ |
pidns10.c | 43 #include <errno.h> 50 int errno; variable 73 if ((ret = kill(-1, SIGUSR1)) == -1 && errno == ESRCH) { 79 "(%d); failed with %d / %d instead", ESRCH, ret, errno);
|
pidns17.c | 44 #include <errno.h> 51 int errno; variable
|
pidns12.c | 51 int errno; variable 95 strerror(errno)); 140 tst_resm(TBROK, "parent: clone() failed(%s).", strerror(errno)); 154 tst_resm(TBROK, "parent: kill() failed(%s).", strerror(errno)); 159 strerror(errno));
|
pidns20.c | 56 int errno; variable
|
pidns30.c | 65 int errno; variable
|
/external/ltp/testcases/misc/math/nextafter/ |
nextafter01.c | 37 #include <errno.h> 50 int errno; variable
|
/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...] |
/external/ltp/testcases/misc/math/abs/ |
abs01.c | 44 #include <errno.h> 56 int errno; variable
|
/external/netperf/src/missing/ |
inet_ntop.c | 55 #include <errno.h> 68 #ifdef errno 70 /*#define errno (*_errno()) */ 71 #undef errno macro 73 #define errno GetLastError() macro 83 /* from public\sdk\inc\crt\errno.h */
|
/prebuilts/go/darwin-x86/src/runtime/ |
netpoll_solaris.go | 87 func errno() int32 { func 120 print("netpollinit: failed to create port (", errno(), ")\n") 157 print("netpollupdate: failed to associate (", errno(), ")\n") 194 if e := errno(); e != _EINTR {
|
/prebuilts/go/linux-x86/src/runtime/ |
netpoll_solaris.go | 87 func errno() int32 { func 120 print("netpollinit: failed to create port (", errno(), ")\n") 157 print("netpollupdate: failed to associate (", errno(), ")\n") 194 if e := errno(); e != _EINTR {
|
/system/core/adb/ |
sysdeps_test.cpp | 78 ASSERT_EQ(0, adb_socketpair(fds)) << strerror(errno); 100 ASSERT_EQ(EMFILE, errno) << strerror(errno); 115 ASSERT_EQ(0, adb_socketpair(fds)) << strerror(errno); variable 230 ASSERT_EQ(0, adb_socketpair(&sockets[i * 2])) << strerror(errno);
|
/external/libchrome/base/process/ |
kill_posix.cc | 7 #include <errno.h> 195 << " failed to deliver a SIGKILL signal (" << errno << ")."; local
|
/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/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> 281 DCHECK(nwrite == 1 || errno == EAGAIN) 282 << "[nwrite:" << nwrite << "] [errno:" << errno << "]"; local 296 DLOG(ERROR) << "pipe() failed, errno: " << errno; 300 DLOG(ERROR) << "SetNonBlocking for pipe fd[0] failed, errno: " << errno; 304 DLOG(ERROR) << "SetNonBlocking for pipe fd[1] failed, errno: " << errno; [all...] |
/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
|