Searched defs:errno (Results 1 - 25 of 114) sorted by last modified time

12345

/external/zlib/src/
H A Dzutil.c144 * errno. We define it as a global variable to simplify porting.
147 int errno = 0; variable
/external/sqlite/dist/orig/
H A Dsqlite3.c19350 # include <errno.h> /* amalgamator: dontcache */
24158 #include <errno.h>
24251 int lastErrno; /* The unix errno from last I/O error */
24848 if( errno==EINTR ) continue;
24953 savedErrno = errno;
24973 errno = savedErrno;
24985 do{ rc = osFtruncate(h,sz); }while( rc<0 && errno==EINTR );
24990 ** This routine translates a standard POSIX errno code into something
25005 ** the value of errno as the first argument. Since a system call has failed,
25006 ** errno shoul
30910 sqlite3_snprintf(sizeof(errmsg), errmsg, "create failed (%d)", errno); local
30914 sqlite3_snprintf(sizeof(errmsg), errmsg, "write failed (%d)", errno); local
30918 sqlite3_snprintf(sizeof(errmsg), errmsg, "rename failed (%d)", errno); local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c19350 # include <errno.h> /* amalgamator: dontcache */
24165 #include <errno.h>
24258 int lastErrno; /* The unix errno from last I/O error */
24866 if( errno==EINTR ) continue;
24971 savedErrno = errno;
24991 errno = savedErrno;
25003 do{ rc = osFtruncate(h,sz); }while( rc<0 && errno==EINTR );
25008 ** This routine translates a standard POSIX errno code into something
25023 ** the value of errno as the first argument. Since a system call has failed,
25024 ** errno shoul
30930 sqlite3_snprintf(sizeof(errmsg), errmsg, "create failed (%d)", errno); local
30934 sqlite3_snprintf(sizeof(errmsg), errmsg, "write failed (%d)", errno); local
30938 sqlite3_snprintf(sizeof(errmsg), errmsg, "rename failed (%d)", errno); local
[all...]
/external/skia/tools/tests/
H A Dbase_unittest.py13 import errno namespace
41 if exc.errno != errno.EEXIST:
/external/robolectric/lib/main/
H A Dsqlite-jdbc-3.7.2.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/org. ...
/external/qemu/distrib/zlib-1.2.8/
H A Dzutil.c144 * errno. We define it as a global variable to simplify porting.
147 int errno = 0; variable
/external/qemu/scripts/
H A Dqapi-commands.py18 import errno namespace
440 if e.errno != errno.EEXIST:
H A Dqapi-types.py17 import errno namespace
323 if e.errno != errno.EEXIST:
H A Dqapi-visit.py18 import errno namespace
424 if e.errno != errno.EEXIST:
/external/qemu/slirp/
H A Dslirp.h95 #include <errno.h>
329 #undef errno macro
330 #define errno (WSAGetLastError()) macro
/external/protobuf/gtest/test/
H A Dgtest_xml_output_unittest.py36 import errno namespace
149 if e.errno != errno.ENOENT:
/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/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/llvm/utils/lit/lit/
H A Dutil.py1 import errno namespace
45 if e.errno != errno.EEXIST:
/external/linux-tools-perf/perf-3.12.0/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/lldb/test/pexpect-2.4/
H A Dpexpect.py79 import errno namespace
1009 ###C return (errno == EWOULDBLOCK) ? n : -1;
1139 if e[0] == errno.ECHILD:
1151 if e[0] == errno.ECHILD:
1544 select.select raises a select.error exception and errno is an EINTR
1548 # if select() is interrupted by a signal (errno==EINTR) then
1556 if e[0] == errno.EINTR:
/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/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/libpcap/Win32/Src/
H A Dinet_pton.c46 #include <errno.h>
50 #define EAFNOSUPPORT 97 /* not present in errno.h provided with VC */
56 #define errno (*_errno()) macro
67 errno = EAFNOSUPPORT;
/external/libpcap/
H A Dpcap-win32.c57 #define errno (*_errno()) macro
639 snprintf(p->errbuf, PCAP_ERRBUF_SIZE, "malloc: %s", pcap_strerror(errno));
833 "setfilter, unable to install the filter: %s", pcap_strerror(errno));
/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:
/external/gtest/test/
H A Dgtest_xml_output_unittest.py37 import errno namespace
213 if e.errno != errno.ENOENT:
/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/compiler-rt/SDKs/darwin/usr/include/sys/
H A Derrno.h1 /* ===-- errno.h - stub SDK header for compiler-rt --------------------------===
25 #define errno (*__error()) macro
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors.cc94 #define errno (*__errno_location()) macro
691 errno = EINVAL;
1688 // Ensure that the handler does not spoil errno.
1689 const int saved_errno = errno;
1690 errno = 99;
1700 // We do not detect errno spoiling for SIGTERM,
1701 // because some SIGTERM handlers do spoil errno but reraise SIGTERM,
1707 if (flags()->report_bugs && !sync && sig != SIGTERM && errno != 99) {
1717 errno = saved_errno;

Completed in 845 milliseconds

12345