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

12345

/external/chromium_org/tools/auto_bisect/
H A Dbisect_utils.py11 import errno namespace
167 if e.errno != errno.EEXIST: # EEXIST indicates that it already exists.
217 if e.errno != errno.EEXIST: # EEXIST means the directory already exists.
327 e.errno, path_to_dir, str(e))
328 if e.errno != errno.ENOENT:
/external/chromium_org/tools/
H A Dcheck_git_config.py20 import errno namespace
116 if exc.errno != errno.ENOENT:
141 if exc.errno != errno.ENOENT:
178 if exc.errno != errno.ENOENT:
/external/chromium_org/tools/gyp/pylib/gyp/
H A Dcommon.py8 import errno namespace
360 if e.errno != errno.ENOENT:
/external/chromium_org/tools/gyp/pylib/gyp/generator/
H A Dxcode.py9 import errno namespace
128 if e.errno != errno.EEXIST:
453 if e.errno != errno.ENOENT:
/external/chromium_org/tools/real_world_impact/
H A Dreal_world_impact.py23 import errno namespace
58 if e.errno != errno.EEXIST:
/external/harfbuzz_ng/test/shaping/
H A Dhb_test_tools.py3 import sys, os, re, difflib, unicodedata, errno, cgi namespace
144 if e.errno != errno.EPIPE:
355 if e.errno != errno.EPIPE:
370 if e.errno != errno.EPIPE:
399 if e.errno != errno.EPIPE:
/external/qemu/scripts/
H A Dqapi-commands.py18 import errno namespace
440 if e.errno != errno.EEXIST:
H A Dqapi-types.py17 import errno namespace
323 if e.errno != errno.EEXIST:
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
H A Dfilesystem_mock.py30 import errno namespace
69 raise IOError(errno.ENOENT, path, os.strerror(errno.ENOENT))
104 raise OSError(errno.ENOENT, path, os.strerror(errno.ENOENT))
111 raise IOError(errno.EISDIR, source, os.strerror(errno.EISDIR))
113 raise IOError(errno.EISDIR, destination, os.strerror(errno.EISDIR))
115 raise IOError(errno
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
H A Dport_testcase.py32 import errno namespace
166 self.assertTrue(e.errno in (errno.ECONNREFUSED, errno.ECONNRESET))
/external/chromium_org/third_party/jinja2/
H A Dutils.py12 import errno namespace
152 if e.errno not in (errno.ENOENT, errno.EISDIR):
/external/chromium_org/third_party/libusb/src/libusb/
H A Dio.c23 #include <errno.h>
1154 usbi_dbg("timerfd not available (code %d error %d)", ctx->timerfd, errno);
1212 "failed to read monotonic clock, errno=%d", errno); local
1282 usbi_warn(ctx, "failed to arm first timerfd (errno %d)", errno);
1821 usbi_err(ctx, "failed to read realtime clock, error %d", errno);
1847 "async cancel failed %d errno=%d", r, errno); local
1968 } else if (r == -1 && errno
[all...]
/external/chromium_org/third_party/pexpect/
H A Dpexpect.py80 import errno namespace
1057 ###C return (errno == EWOULDBLOCK) ? n : -1;
1192 if e[0] == errno.ECHILD:
1210 if e[0] == errno.ECHILD:
1625 select.select raises a select.error exception and errno is an EINTR
1629 # if select() is interrupted by a signal (errno==EINTR) then
1637 if e[0] == errno.EINTR:
/external/chromium_org/tools/telemetry/third_party/pyserial/serial/
H A Dserialposix.py15 import sys, os, fcntl, termios, struct, select, errno, time namespace
292 raise SerialException(msg.errno, "could not open port %s: %s" % (self._port, msg))
480 if e[0] != errno.EAGAIN:
484 if e.errno != errno.EAGAIN:
517 if v.errno != errno.EAGAIN:
/external/libpcap/
H A Dpcap-win32.c57 #define errno (*_errno()) macro
639 snprintf(p->errbuf, PCAP_ERRBUF_SIZE, "malloc: %s", pcap_strerror(errno));
833 "setfilter, unable to install the filter: %s", pcap_strerror(errno));
/external/libusb/libusb/
H A Dio.c22 #include <errno.h>
1037 usbi_dbg("timerfd not available (code %d error %d)", ctx->timerfd, errno);
1071 "failed to read monotonic clock, errno=%d", errno); local
1657 usbi_err(ctx, "failed to read realtime clock, error %d", errno);
1683 "async cancel failed %d errno=%d", r, errno); local
1816 } else if (r == -1 && errno == EINTR) {
1821 usbi_err(ctx, "poll failed %d err=%d\n", r, errno);
2131 usbi_err(ctx, "failed to read monotonic clock, errno
[all...]
/external/lldb/test/pexpect-2.4/
H A Dpexpect.py79 import errno namespace
1009 ###C return (errno == EWOULDBLOCK) ? n : -1;
1139 if e[0] == errno.ECHILD:
1151 if e[0] == errno.ECHILD:
1544 select.select raises a select.error exception and errno is an EINTR
1548 # if select() is interrupted by a signal (errno==EINTR) then
1556 if e[0] == errno.EINTR:
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
H A Dclient_for_testing.py49 import errno namespace
1070 if (error_name in dir(errno) and
1071 error_number == getattr(errno, error_name)):
/external/chromium_org/base/android/jni_generator/
H A Djni_generator.py10 import errno namespace
1389 if e.errno != errno.EEXIST:
/external/chromium_org/remoting/host/linux/
H A Dlinux_me2me_host.py13 import errno namespace
698 if e.errno != errno.EINTR:
905 OSError with errno==EINTR causes the wait to be retried (this can happen,
907 OSError with errno==ECHILD means there are no child processes, and so
919 if e.errno == errno.EINTR:
921 elif e.errno == errno.ECHILD:
/external/chromium_org/tools/gyp/test/lib/
H A DTestCmd.py221 import errno namespace
726 if why[0] in (109, errno.ESHUTDOWN):
747 if why[0] in (109, errno.ESHUTDOWN):
766 if why[0] == errno.EPIPE: #broken pipe
/external/oprofile/libpopt/
H A Dpopt.c27 static char * strerror(int errno) argument
32 if ((0 <= errno) && (errno < sys_nerr))
33 return sys_errlist[errno];
35 return POPT_("unknown errno");
942 int saveerrno = errno;
943 errno = 0;
945 if (errno == ERANGE)
947 errno = saveerrno;
1204 return strerror(errno);
[all...]
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dpthread.h264 #include <errno.h>
1251 # if !defined(errno)
1254 # define errno (*_errno()) macro
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DModuleNode.py382 import errno namespace
383 if e.errno != errno.EEXIST:
/external/chromium_org/third_party/libusb/src/libusb/os/
H A Dwince_usb.c28 #include <errno.h>
39 int errno; variable

Completed in 2933 milliseconds

12345