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

12

/external/webkit/WebCore/WebCore.gyp/scripts/
H A Drule_binding.py48 import errno namespace
H A Drule_bison.py39 import errno namespace
67 if e.errno != errno.ENOENT:
83 if e.errno != errno.ENOENT:
/external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/test_types/
H A Dfuzzy_image_diff.py34 import errno namespace
H A Dimage_diff.py37 import errno namespace
68 if errno.ENOENT != e.errno:
142 if errno.ENOENT != e.errno:
H A Dtext_diff.py36 import errno namespace
74 if errno.ENOENT != e.errno:
H A Dtest_type_base.py36 import errno 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/gtest/test/
H A Dgtest_xml_output_unittest.py36 import errno namespace
131 if e.errno != errno.ENOENT:
/external/protobuf/gtest/test/
H A Dgtest_xml_output_unittest.py36 import errno namespace
149 if e.errno != errno.ENOENT:
/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.c141 * errno. We define it as a global variable to simplify porting.
144 int errno = 0; variable
/external/chromium/base/
H A Dmessage_pump_libevent.cc7 #include <errno.h>
115 DLOG(ERROR) << "pipe() failed, errno: " << errno;
119 DLOG(ERROR) << "SetNonBlocking for pipe fd[0] failed, errno: " << errno;
123 DLOG(ERROR) << "SetNonBlocking for pipe fd[1] failed, errno: " << errno;
296 DCHECK(nwrite == 1 || errno == EAGAIN)
297 << "[nwrite:" << nwrite << "] [errno:" << errno << "]"; local
[all...]
H A Dfile_util_posix.cc8 #include <errno.h>
14 #include <sys/errno.h>
139 bool ret = (errno == ENOENT || errno == ENOTDIR);
250 from_path.value() << " errno = " << errno;
279 errno != EEXIST) {
281 target_path.value() << " errno = " << errno;
680 LOG(ERROR) << "Couldn't fstat " << file_ << ", errno " << errn local
688 LOG(ERROR) << "Couldn't mmap " << file_ << ", errno " << errno; local
[all...]
/external/chromium/third_party/zlib/
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/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
H A Dnet_wins.cpp405 int errno = pWSAGetLastError(); local
407 if (errno == WSAEWOULDBLOCK || errno == WSAECONNREFUSED)
/external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/port/
H A Dbase.py35 import errno namespace
102 if e.errno == errno.ENOENT or e.errno == errno.EACCES:
253 if e.errno != errno.EEXIST:
317 if e.errno != errno.EACCES:
503 if (e.errno
[all...]
/external/libpcap/
H A Dpcap-win32.c48 #define errno (*_errno()) macro
405 snprintf(ebuf, PCAP_ERRBUF_SIZE, "malloc: %s", pcap_strerror(errno));
548 snprintf(ebuf, PCAP_ERRBUF_SIZE, "malloc: %s", pcap_strerror(errno));
703 "setfilter, unable to install the filter: %s", pcap_strerror(errno));
/external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/
H A Drun_chromium_webkit_tests.py47 import errno namespace
105 if errno.ENOENT != e.errno:
/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...]

Completed in 372 milliseconds

12