Searched defs:errno (Results 26 - 50 of 52) sorted by relevance

123

/external/qemu/distrib/zlib-1.2.3/
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/Tools/Scripts/webkitpy/common/system/
H A Dexecutive.py37 import errno namespace
220 if e.errno == errno.EAGAIN:
224 if e.errno == errno.ESRCH: # The process does not exist.
H A Dfilesystem.py34 import errno namespace
180 if e.errno != errno.EEXIST:
H A Dfilesystem_mock.py29 import errno namespace
60 raise IOError(errno.ENOENT, path, os.strerror(errno.ENOENT))
76 raise OSError(errno.ENOENT, path, os.strerror(errno.ENOENT))
83 raise IOError(errno.EISDIR, source, os.strerror(errno.ISDIR))
85 raise IOError(errno.EISDIR, destination, os.strerror(errno.ISDIR))
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
H A Dchromium.py32 import errno namespace
174 if e.errno == errno.ENOENT or e.errno == errno.EACCES:
446 if e.errno == errno.EACCES:
H A Dbase.py37 import errno namespace
192 if e.errno in [errno.ENOENT, errno.EACCES, errno.ECHILD]:
754 if e.errno in [errno.ENOENT, errno.EACCES, errno.ECHILD]:
/external/chromium/chrome/browser/
H A Dcrash_handler_host_linux.cc167 << " errno:" << errno; local
/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/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/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
H A Dtest_runner.py41 import errno namespace
1151 if e.errno == errno.ENOENT:
/external/chromium/net/tools/testserver/
H A Dtestserver.py20 import errno namespace
190 if err.args[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/libusb_aah/libusb/
H A Dio.c22 #include <errno.h>
1168 usbi_dbg("timerfd not available (code %d error %d)", ctx->timerfd, errno);
1220 "failed to read monotonic clock, errno=%d", errno); local
1826 usbi_err(ctx, "failed to read realtime clock, error %d", errno);
1852 "async cancel failed %d errno=%d", r, errno); local
1976 } else if (r == -1 && errno == EINTR) {
1981 usbi_err(ctx, "poll failed %d err=%d\n", r, errno);
2353 usbi_err(ctx, "failed to read monotonic clock, errno
[all...]
/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/base/
H A Dfile_util_posix.cc8 #include <errno.h>
16 #include <sys/errno.h>
153 bool ret = (errno == ENOENT || errno == ENOTDIR);
266 from_path.value() << " errno = " << errno;
295 errno != EEXIST) {
297 target_path.value() << " errno = " << errno;
550 } while (!result && errno
767 LOG(ERROR) << "Couldn't fstat " << file_ << ", errno " << errno; local
775 LOG(ERROR) << "Couldn't mmap " << file_ << ", errno " << errno; local
[all...]
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors.cc88 #define errno (*__errno_location()) macro
582 errno = EINVAL;
1790 // Insure that the handler does not spoil errno.
1791 const int saved_errno = errno;
1792 errno = 0;
1797 if (flags()->report_bugs && errno != 0) {
1811 errno = saved_errno;
/external/libusb/libusb/os/
H A Dlinux_usbfs.c24 #include <errno.h>
210 usbi_dbg("monotonic clock doesn't work, errno %d", errno);
290 "open %s failed ret=%d errno=%d", filename, fd, errno); local
313 usbi_err(DEVICE_CTX(dev), "read failed, ret=%d errno=%d", fd, errno); local
363 "read bConfigurationValue failed ret=%d errno=%d", r, errno); local
402 usbi_err(ctx, "read failed ret=%d errno
450 off, errno); local
460 usbi_err(DEVICE_CTX(dev), "seek failed, ret=%d errno=%d", off, errno); local
471 fd, errno); local
498 fd, errno); local
579 "open '%s' failed, ret=%d errno=%d", filename, fd, errno); local
714 usbi_err(DEVICE_CTX(dev), "open failed, ret=%d errno=%d", fd, errno); local
757 "read descriptor failed ret=%d errno=%d", fd, errno); local
1067 "open failed, code %d errno %d", hpriv->fd, errno); local
1404 "submiturb failed error %d errno=%d", r, errno); local
1439 "unrecognised discard errno %d", errno); local
1562 "submiturb failed error %d errno=%d", r, errno); local
1596 "unrecognised discard errno %d", errno); local
1692 "unrecognised DISCARD code %d", errno); local
1717 "unrecognised discard errno %d", errno); local
1739 "unrecognised discard errno %d", errno); local
1907 "unrecognised discard errno %d", errno); local
[all...]
/external/libusb_aah/libusb/os/
H A Dlinux_usbfs.c24 #include <errno.h>
265 usbi_dbg("monotonic clock doesn't work, errno %d", errno);
364 usbi_err(ctx, "opendir devices failed errno=%d", errno);
442 "open %s failed ret=%d errno=%d", filename, fd, errno); local
461 if (errno == ENOENT) {
466 usbi_err(ctx, "open %s failed errno=%d", filename, errno);
500 usbi_err(DEVICE_CTX(dev), "read failed, ret=%d errno=%d", fd, errno); local
550 "read bConfigurationValue failed ret=%d errno=%d", r, errno); local
637 off, errno); local
647 usbi_err(DEVICE_CTX(dev), "seek failed, ret=%d errno=%d", off, errno); local
658 fd, errno); local
685 fd, errno); local
766 "open '%s' failed, ret=%d errno=%d", filename, fd, errno); local
915 usbi_err(DEVICE_CTX(dev), "open failed, ret=%d errno=%d", fd, errno); local
958 "read descriptor failed ret=%d errno=%d", fd, errno); local
1235 "open failed, code %d errno %d", hpriv->fd, errno); local
1407 "reset failed error %d errno %d", r, errno); local
1554 "unrecognised discard errno %d", errno); local
1652 "submiturb failed error %d errno=%d", r, errno); local
1811 "submiturb failed error %d errno=%d", r, errno); local
[all...]
/external/netperf/
H A Dnetlib.h267 /* +*+ SAF Sorry about the hacks with errno; NT made me do it :(
269 WinNT does define an errno.
275 code that sets errno is likely to be overwriting the address of this
277 through errno.
281 assignment to errno. But on NT this calls SetLastError.
283 I also define errno (now only used on right side of assignments)
287 XENIX errors that errno covers. So on NT this is redefined to be
301 /* from public\sdk\inc\crt\errno.h */
304 #ifdef errno
306 /*#define errno (*_errn
307 #undef errno macro
309 #define errno macro
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.filesystem_1.3.1.R36x_v20100727-0745.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/robolectric/lib/main/
H A Dsqlite-jdbc-3.7.2.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/org. ...

Completed in 581 milliseconds

123