HomeSort by relevance Sort by last modified time
    Searched defs:errno (Results 126 - 150 of 191) sorted by null

1 2 3 4 56 7 8

  /external/ltp/testcases/kernel/containers/pidns/
pidns31.c 67 int errno; variable
180 strerror(errno));
187 strerror(errno));
275 strerror(errno));
283 tst_resm(TBROK, "parent: clone() failed(%s)", strerror(errno));
296 strerror(errno));
307 strerror(errno));
317 tst_resm(TBROK, "parent: pipe is broken(%s)", strerror(errno));
325 tst_resm(TBROK, "parent: wait() failed(%s)", strerror(errno));
  /external/ltp/testcases/kernel/security/filecaps/
verify_caps_exec.c 37 #include <errno.h>
51 int errno; variable
128 if (ret == -1 && errno != EEXIST)
  /external/ltp/testcases/misc/math/atof/
atof01.c 41 #include <errno.h>
60 int errno; variable
  /external/syslinux/com32/lib/zlib/
zutil.c 141 * errno. We define it as a global variable to simplify porting.
144 int errno = 0; variable
  /external/syslinux/core/include/
thread.h 27 int errno; member in struct:thread_stack
  /external/syslinux/dos/
errno.h 39 int errno; variable
  /external/zlib/src/
zutil.c 144 * errno. We define it as a global variable to simplify porting.
147 int errno = 0; variable
  /frameworks/base/core/java/android/net/metrics/
ConnectStats.java 38 /** How many events resulted in a given errno. */
60 public void addEvent(int errno, int latencyMs, String ipAddr) {
61 if (isSuccess(errno)) {
62 countConnect(errno, ipAddr);
63 countLatency(errno, latencyMs);
65 countError(errno);
69 private void countConnect(int errno, String ipAddr) {
71 if (!isNonBlocking(errno)) {
79 private void countLatency(int errno, int ms) {
80 if (isNonBlocking(errno)) {
124 String errno = OsConstants.errnoName(errnos.keyAt(i)); local
    [all...]
  /system/update_engine/
p2p_manager_unittest.cc 281 if (ea_size == -1 && errno == ENODATA) {
285 << "ea_size=" << ea_size << ", errno=" << 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)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-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/CryptoPkg/Library/BaseCryptLib/SysCall/
CrtWrapper.c 18 int errno = 0; variable
  /external/gptfdisk/
gptcl.cc 25 #include <errno.h>
223 cerr << "Error " << errno << " deleting partition!\n"; local
  /external/ltp/testcases/kernel/syscalls/epoll/
epoll-ltp.c 61 TODO: change errno test code to build lists of possible errno values for
62 each erroneous parameter. Check that the errno value is in one
63 of the lists. Currently errno is not checked at all when multiple
88 #include <errno.h>
212 errno = 0;
222 if (errno != EINVAL) {
224 "epoll_create with negative set size didn't set errno to EINVAL");
240 if (errno != ENOMEM) {
262 errno = 0
486 PROTECT_REGION_START errno = 0; local
    [all...]
  /frameworks/base/core/java/com/android/server/
NetworkManagementSocketTagger.java 88 final int errno = native_tagSocketFd(fd, tag, uid); local
89 if (errno < 0) {
92 + uid + ") failed with errno" + errno);
110 final int errno = native_untagSocketFd(fd); local
111 if (errno < 0) {
112 Log.w(TAG, "untagSocket(" + fd.getInt$() + ") failed with errno " + errno);
124 final int errno = native_setCounterSet(counterSet, uid); local
125 if (errno < 0)
134 int errno = native_deleteTagData(0, uid); local
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
socket.py 90 import errno
92 errno = None variable
93 EBADF = getattr(errno, 'EBADF', 9)
94 EINTR = getattr(errno, 'EINTR', 4)
  /prebuilts/gdb/linux-x86/lib/python2.7/
socket.py 90 import errno
92 errno = None variable
93 EBADF = getattr(errno, 'EBADF', 9)
94 EINTR = getattr(errno, 'EINTR', 4)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
socket.py 90 import errno
92 errno = None variable
93 EBADF = getattr(errno, 'EBADF', 9)
94 EINTR = getattr(errno, 'EINTR', 4)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
socket.py 90 import errno
92 errno = None variable
93 EBADF = getattr(errno, 'EBADF', 9)
94 EINTR = getattr(errno, 'EINTR', 4)
  /external/libpcap/
pcap-win32.c 52 #define errno (*_errno()) macro
669 snprintf(p->errbuf, PCAP_ERRBUF_SIZE, "malloc: %s", pcap_strerror(errno));
898 "setfilter, unable to install the filter: %s", pcap_strerror(errno));
  /hardware/libhardware/modules/input/evdev/
InputHub.cpp 23 #include <errno.h>
65 ALOGE("Could not get linux version: %s", strerror(errno));
78 "Could not get process capabilities. errno=%d", errno); local
159 ALOGE("could not open evdev device %s. err=%d", path.c_str(), errno);
171 ALOGW("Could not set input clock id to CLOCK_MONOTONIC. errno=%d", errno);
177 ALOGE("could not open evdev device %s: failed to read properties. errno=%d",
197 ALOGE("could not get driver version for %s. err=%d", mPath.c_str(), errno);
198 return -errno;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
errno.h 18 #define errno (*_errno()) macro
stddef.h 19 #define errno (*_errno()) macro

Completed in 2967 milliseconds

1 2 3 4 56 7 8