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

12

/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.py13 import errno, optparse, os, select, subprocess, sys, time, zlib, config 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/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
H A Dzutil.h29 * errno. We define it as a global variable to simplify porting.
33 # define errno z_errno macro
35 extern int errno;
38 # include <errno.h>
/external/qemu/slirp/
H A Dslirp.h95 #include <errno.h>
329 #undef errno macro
330 #define errno (WSAGetLastError()) macro
/external/zlib/
H A Dzutil.c121 * errno. We define it as a global variable to simplify porting.
124 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/quake/quake/src/QW/client/
H A Dnet_wins.c147 Sys_Error ("NET_IsClientLegal: socket:", strerror(errno));
178 int errno = WSAGetLastError(); local
180 if (errno == WSAEWOULDBLOCK)
182 if (errno == WSAEMSGSIZE) {
189 Sys_Error ("NET_GetPacket: %s", strerror(errno));
225 Con_Printf ("NET_SendPacket ERROR: %i\n", errno);
239 Sys_Error ("UDP_OpenSocket: socket:", strerror(errno));
242 Sys_Error ("UDP_OpenSocket: ioctl FIONBIO:", strerror(errno));
258 Sys_Error ("UDP_OpenSocket: bind: %s", strerror(errno));
276 Sys_Error ("NET_Init: getsockname:", strerror(errno));
[all...]
/external/quake/quake/src/WinQuake/
H A Dnet_mp.cpp272 int errno = WSAGetLastError(); local
274 if (errno == WSAEWOULDBLOCK || errno == WSAECONNREFUSED)
H A Dnet_wipx.cpp246 int errno = pWSAGetLastError(); local
248 if (errno == WSAEWOULDBLOCK || errno == WSAECONNREFUSED)
360 int errno = pWSAGetLastError(); local

Completed in 746 milliseconds

12