Searched defs:errno (Results 1 - 25 of 52) sorted by relevance

123

/external/webkit/Source/WebCore/WebCore.gyp/scripts/
H A Drule_binding.py48 import errno namespace
H A Daction_derivedsourcesallinone.py44 import errno namespace
H A Drule_bison.py39 import errno namespace
67 if e.errno != errno.ENOENT:
83 if e.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, select, subprocess, sys, time, zlib namespace
/external/dropbear/libtomcrypt/demos/
H A Dhashsum.c12 int errno; variable
54 if ((errno = hash_file(idx,argv[z],hash_buffer,&w)) != CRYPT_OK) {
55 printf("File hash error: %s\n", error_to_string(errno));
H A Dencrypt.c12 int errno; variable
161 if ((errno = hash_memory(hash_idx,tmpkey,strlen((char *)tmpkey),key,&outlen)) != CRYPT_OK) {
162 printf("Error hashing key: %s\n", error_to_string(errno));
173 if ((errno = ctr_start(cipher_idx,IV,key,ks,0,CTR_COUNTER_LITTLE_ENDIAN,&ctr)) != CRYPT_OK) {
174 printf("ctr_start error: %s\n",error_to_string(errno));
182 if ((errno = ctr_decrypt(inbuf,plaintext,y,&ctr)) != CRYPT_OK) {
183 printf("ctr_decrypt error: %s\n", error_to_string(errno));
198 if ((errno = rng_make_prng(128, find_prng("yarrow"), &prng, NULL)) != CRYPT_OK) {
199 printf("Error setting up PRNG, %s\n", error_to_string(errno));
215 if ((errno
[all...]
/external/llvm/utils/lit/lit/
H A DUtil.py26 import errno namespace
39 if e.errno != errno.EEXIST:
/external/webkit/Source/WebKit/chromium/scripts/
H A Dgenerate_devtools_grd.py35 import errno namespace
101 if e.errno != errno.EEXIST:
/external/chromium/build/mac/
H A Dstrip_save_dsym31 import errno namespace
205 if err != errno.EEXIST:
268 if err != errno.ENOENT:
/external/chromium/testing/gtest/test/
H A Dgtest_xml_output_unittest.py36 import errno namespace
167 if e.errno != errno.ENOENT:
/external/gtest/test/
H A Dgtest_xml_output_unittest.py36 import errno namespace
167 if e.errno != errno.ENOENT:
/external/libvpx/libvpx/third_party/googletest/src/test/
H A Dgtest_xml_output_unittest.py36 import errno namespace
167 if e.errno != errno.ENOENT:
/external/linux-tools-perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/
H A DUtil.py9 import errno, os namespace
84 return errno.errorcode[abs(nr)]
86 return "Unknown %d errno" % nr
/external/protobuf/gtest/test/
H A Dgtest_xml_output_unittest.py36 import errno namespace
149 if e.errno != errno.ENOENT:
/external/webkit/Tools/Scripts/webkitpy/layout_tests/
H A Drun_webkit_tests.py33 import errno namespace
99 if e.errno == errno.ENOENT:
/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/net/tools/flip_server/
H A Dcreate_listener.cc8 #include <errno.h> // for strerror
45 // we can't be sure that errno is properly set since we're using a
76 << " errno=" << errno; local
84 << " errno=" << errno; local
146 << port << "): " << strerror(errno) << "\n";
179 int saved_errno = errno;
180 if ( !wait_for_iface || errno != EADDRNOTAVAIL) {
182 << port << "): " << strerror(errno) << "\
[all...]
/external/qemu/distrib/zlib-1.2.3/
H A Dzutil.c141 * errno. We define it as a global variable to simplify porting.
144 int errno = 0; variable
/external/qemu/slirp/
H A Dslirp.h95 #include <errno.h>
329 #undef errno macro
330 #define errno (WSAGetLastError()) macro
/external/zlib/src/
H A Dzutil.c144 * errno. We define it as a global variable to simplify porting.
147 int errno = 0; variable
/external/chromium/base/
H A Dmessage_pump_libevent.cc7 #include <errno.h>
277 DCHECK(nwrite == 1 || errno == EAGAIN)
278 << "[nwrite:" << nwrite << "] [errno:" << errno << "]"; local
300 DLOG(ERROR) << "pipe() failed, errno: " << errno;
304 DLOG(ERROR) << "SetNonBlocking for pipe fd[0] failed, errno: " << errno;
308 DLOG(ERROR) << "SetNonBlocking for pipe fd[1] failed, errno: " << errno;
[all...]
/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/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:

Completed in 669 milliseconds

123