Searched defs:errno (Results 1 - 25 of 114) sorted by path

12345

/external/antlr/antlr-3.4/runtime/Python/tests/
H A Dt059debug.py10 import errno namespace
30 if exc.args[0] != errno.ECONNREFUSED:
H A Dtestbase.py4 import errno namespace
19 if exc.errno != errno.ENOENT:
/external/chromium-trace/
H A Dsystrace-legacy.py13 import errno, optparse, os, select, subprocess, sys, time, zlib namespace
H A Dsystrace.py13 import errno, optparse, os, re, select, subprocess, sys, time, zlib namespace
/external/chromium-trace/trace-viewer/build/
H A Dgenerate_about_tracing_contents.py6 import errno namespace
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
H A Dutil.py36 import errno namespace
448 block. To make this portable, we check availability of errno and then
453 if (error_name in dir(errno) and
454 error_number == getattr(errno, error_name)):
475 # e can be either a pair (errno, string) or just a string (or
478 # exceptions can be parsed as a pair (errno, string).
/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/base/message_loop/
H A Dmessage_pump_libevent.cc7 #include <errno.h>
291 DCHECK(nwrite == 1 || errno == EAGAIN)
292 << "[nwrite:" << nwrite << "] [errno:" << errno << "]"; local
314 DLOG(ERROR) << "pipe() failed, errno: " << errno;
318 DLOG(ERROR) << "SetNonBlocking for pipe fd[0] failed, errno: " << errno;
322 DLOG(ERROR) << "SetNonBlocking for pipe fd[1] failed, errno: " << errno;
[all...]
/external/chromium_org/base/process/
H A Dkill_posix.cc73 // usleep() will return 0 and set errno to EINTR on receipt of a signal
161 if (errno == ECHILD) {
283 if (errno == ESRCH) {
317 if (result == -1 && errno == EINTR) {
446 << " failed to deliver a SIGKILL signal (" << errno << ")."; local
/external/chromium_org/build/android/pylib/device/
H A Dadb_wrapper.py11 import errno namespace
33 raise IOError(errno.ENOENT, os.strerror(errno.ENOENT), path)
/external/chromium_org/build/
H A Dget_syzygy_binaries.py10 import errno namespace
191 if func in (os.rmdir, os.remove) and excvalue.errno == errno.EACCES:
H A Dlandmines.py17 import errno namespace
60 if e.errno == errno.EEXIST:
H A Dsymlink.py9 import errno namespace
31 if e.errno == errno.EEXIST and options.force:
/external/chromium_org/build/mac/
H A Dstrip_save_dsym31 import errno namespace
205 if err != errno.EEXIST:
268 if err != errno.ENOENT:
/external/chromium_org/build/toolchain/win/
H A Dsetup_toolchain.py5 import errno namespace
/external/chromium_org/chrome/tools/
H A Dinconsistent-eol.py19 import errno namespace
83 if e.errno != errno.ENOENT:
H A Dwebforms_aggregator.py25 import errno namespace
698 if e.errno != errno.EEXIST:
/external/chromium_org/components/crash/browser/
H A Dcrash_handler_host_linux.cc203 << " errno:" << errno; local
/external/chromium_org/components/crash/tools/
H A Dgenerate_breakpad_symbols.py12 import errno namespace
135 if e.errno == errno.EEXIST and os.path.isdir(path):
/external/chromium_org/components/metrics/serialization/
H A Dserialization_utils.cc124 if (errno != ENOENT)
186 DLOG(ERROR) << "error locking" << filename << " : " << errno; local
202 DLOG(ERROR) << "error writing message length " << errno;
209 DLOG(ERROR) << "error writing message" << errno;
/external/chromium_org/content/browser/tracing/
H A Dgenerate_trace_viewer_grd.py11 import errno namespace
/external/chromium_org/content/common/sandbox_linux/
H A Dsandbox_seccomp_bpf_linux.cc7 #include <errno.h>
118 errno = 0;
123 CHECK_EQ(EPERM, errno);
131 CHECK_EQ(SandboxBPFBasePolicy::GetFSDeniedErrno(), errno); local
136 CHECK_EQ(EPERM, errno);
/external/chromium_org/native_client_sdk/src/build_tools/sdk_tools/
H A Dsdk_update_common.py7 import errno namespace
94 if err.errno != errno.EACCES:
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dneed_errno.h2 * errno.h - system wide error numbers (set by system calls)
72 /* declare reference to errno */
76 #define errno (*_errno()) macro
78 _CRTIMP extern int errno;

Completed in 7623 milliseconds

12345