Searched defs:errno (Results 76 - 100 of 137) sorted by relevance

123456

/external/libmojo/third_party/catapult/devil/devil/android/
H A Dlogcat_monitor.py7 import errno namespace
208 if e.errno != errno.EEXIST:
/external/libusb/msvc/
H A Derrno.h2 * 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/libyuv/files/
H A Dsetup_links.py23 import errno namespace
197 if e.errno != errno.EEXIST:
/external/ltp/testcases/misc/math/atof/
H A Datof01.c41 #include <errno.h>
60 int errno; variable
/external/syslinux/com32/lib/zlib/
H A Dzutil.c141 * errno. We define it as a global variable to simplify porting.
144 int errno = 0; variable
/external/syslinux/core/include/
H A Dthread.h27 int errno; member in struct:thread_stack
/external/syslinux/dos/
H A Derrno.h39 int errno; variable
/external/webrtc/
H A Dsetup_links.py23 import errno namespace
218 if e.errno != errno.EEXIST:
/external/zlib/src/
H A Dzutil.c144 * errno. We define it as a global variable to simplify porting.
147 int errno = 0; variable
/external/autotest/client/cros/
H A Dhttpd.py12 import cgi, errno, logging, os, posixpath, SimpleHTTPServer, socket, ssl, sys namespace
24 if e.errno == errno.EPIPE or e.errno == errno.ECONNRESET:
/external/autotest/client/cros/networking/
H A Dandroid_xmlrpc_server.py9 import errno namespace
120 if v[0] != errno.EINTR:
/external/autotest/client/site_tests/video_VDAPerf/
H A Dvideo_VDAPerf.py5 import errno namespace
65 if e.errno != errno.ENOENT: # no such file
/external/autotest/client/site_tests/video_VEAPerf/
H A Dvideo_VEAPerf.py5 import errno namespace
70 if e.errno != errno.ENOENT: # no such file
/external/autotest/site_utils/
H A Dtest_runner_utils.py5 import errno namespace
595 if e.errno != errno.ENOENT:
602 if e.errno != errno.EEXIST:
/external/autotest/tko/
H A Dparse.py5 import errno namespace
612 if e.errno == errno.EWOULDBLOCK:
/external/chromium-trace/catapult/telemetry/third_party/web-page-replay/
H A Dhttpproxy.py19 import errno namespace
204 if e[0] == errno.ECONNRESET:
/external/gptfdisk/
H A Dgptcl.cc25 #include <errno.h>
223 cerr << "Error " << errno << " deleting partition!\n"; local
/external/libchrome/base/message_loop/
H A Dmessage_pump_libevent.cc7 #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/ltp/testcases/kernel/containers/pidns/
H A Dpidns30.c65 int errno; variable
H A Dpidns31.c67 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/
H A Dverify_caps_exec.c37 #include <errno.h>
51 int errno; variable
128 if (ret == -1 && errno != EEXIST)
/external/ltp/testcases/kernel/syscalls/epoll/
H A Depoll-ltp.c61 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
486 PROTECT_REGION_START errno = 0; local
[all...]
/external/toolchain-utils/binary_search_tool/
H A Dbinary_search_state.py8 import errno namespace
164 if e.errno == errno.E2BIG:
/external/autotest/client/common_lib/
H A Dpexpect.py78 import errno namespace
1004 ###C return (errno == EWOULDBLOCK) ? n : -1;
1134 if e[0] == errno.ECHILD:
1146 if e[0] == errno.ECHILD:
1539 select.select raises a select.error exception and errno is an EINTR
1543 # if select() is interrupted by a signal (errno==EINTR) then
1551 if e[0] == errno.EINTR:
/external/autotest/server/cros/
H A Dtradefed_test.py22 import errno namespace
385 if not (e.errno == errno.EEXIST and os.path.isdir(path)):

Completed in 735 milliseconds

123456