HomeSort by relevance Sort by last modified time
    Searched defs:errno (Results 51 - 75 of 117) sorted by null

1 23 4 5

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
socket.py 90 import errno
92 errno = None variable
93 EBADF = getattr(errno, 'EBADF', 9)
94 EINTR = getattr(errno, 'EINTR', 4)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
socket.py 90 import errno
92 errno = None variable
93 EBADF = getattr(errno, 'EBADF', 9)
94 EINTR = getattr(errno, 'EINTR', 4)
  /device/google/cuttlefish_common/host/commands/launch/
main.cc 280 LOG(ERROR) << "exec of " << command[0] << " failed (" << strerror(errno)
285 LOG(ERROR) << "fork of " << command[0] << " failed (" << strerror(errno)
299 return stat(path, &unused) != -1 || errno != ENOENT;
373 if (errno == EACCES) {
388 LOG(FATAL) << "Unable to create " << dir << ". Error: " << errno; local
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
errno.h 18 #define errno (*_errno()) macro
stddef.h 19 #define errno (*_errno()) macro
stdlib.h 143 #define errno (*_errno()) macro
  /device/linaro/bootloader/arm-trusted-firmware/include/lib/stdlib/sys/
errno.h 34 * @(#)errno.h 8.5 (Berkeley) 1/21/94
46 #define errno (* __error()) macro
182 #define ELAST 94 /* Must be equal largest errno */
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/
fileio.c 86 save_errno = errno;
89 save_errno = errno;
94 errno = save_errno;
149 errno = EISDIR;
162 if (!_PyVerify_fd(fd) || (fstat(fd, &buf) < 0 && errno == EBADF)) {
331 errno = 0; local
478 errno = 0; local
491 if (errno == EAGAIN)
556 errno = 0; local
573 if (errno == EINTR) {
633 errno = 0; local
675 errno = 0; local
838 errno = 0; local
870 errno = 0; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/
fileio.c 91 save_errno = errno;
94 save_errno = errno;
99 errno = save_errno;
113 errno = internal_close(self);
114 if (errno < 0)
173 if (!_PyVerify_fd(fd) || (fstat(fd, &buf) < 0 && errno == EBADF)) {
342 errno = 0; local
489 errno = 0; local
496 if (errno == EAGAIN)
572 errno = 0; local
630 errno = 0; local
670 errno = 0; local
826 errno = 0; local
858 errno = 0; local
    [all...]
  /device/linaro/bootloader/edk2/StdLib/EfiSocketLib/
Socket.c 557 @param[out] pErrno Address to receive the errno value upon completion.
560 @retval EFI_INVALID_PARAMETER - Invalid domain value, errno = EAFNOSUPPORT
561 @retval EFI_INVALID_PARAMETER - Invalid type value, errno = EINVAL
562 @retval EFI_INVALID_PARAMETER - Invalid protocol value, errno = EINVAL
579 int errno; local
592 errno = 0;
604 errno = EAFNOSUPPORT;
634 errno = EPROTOTYPE;
674 errno = EPROTONOSUPPORT;
681 errno = EPROTONOSUPPORT;
1343 int errno; local
1486 int errno; local
1898 int errno; local
2760 int errno; local
2980 int errno; local
    [all...]
  /external/libpcap/
pcap-win32.c 54 #define errno (*_errno()) macro
1071 pcap_snprintf(p->errbuf, PCAP_ERRBUF_SIZE, "malloc: %s", pcap_strerror(errno));
1295 "setfilter, unable to install the filter: %s", pcap_strerror(errno));
    [all...]
pcap.c 59 #include <errno.h>
194 "malloc: %s", pcap_strerror(errno));
404 "malloc: %s", pcap_strerror(errno));
416 "malloc: %s", pcap_strerror(errno));
526 pcap_strerror(errno));
950 "malloc: %s", pcap_strerror(errno));
959 "malloc: %s", pcap_strerror(errno));
1620 errno_t errno; local
    [all...]
  /external/libusb/libusb/
io.c 25 #include <errno.h>
1217 "failed to read monotonic clock, errno=%d", errno); local
1649 usbi_err(ITRANSFER_CTX(itransfer), "failed to set timer for next timeout, errno=%d", errno); local
1993 "async cancel failed %d errno=%d", r, errno); local
    [all...]
  /external/python/cpython2/Modules/_io/
fileio.c 86 save_errno = errno;
89 save_errno = errno;
94 errno = save_errno;
149 errno = EISDIR;
162 if (!_PyVerify_fd(fd) || (fstat(fd, &buf) < 0 && errno == EBADF)) {
344 errno = 0; local
491 errno = 0; local
504 if (errno == EAGAIN)
569 errno = 0; local
586 if (errno == EINTR)
646 errno = 0; local
688 errno = 0; local
851 errno = 0; local
883 errno = 0; local
    [all...]
  /external/python/cpython3/Lib/test/test_asyncio/
test_unix_events.py 4 import errno
114 errno = errno.EFAULT variable in class:SelectorEventLoopSignalTests.test_add_signal_handler_install_error.Err
128 errno = errno.EINVAL variable in class:SelectorEventLoopSignalTests.test_add_signal_handler_install_error2.Err
143 errno = errno.EINVAL variable in class:SelectorEventLoopSignalTests.test_add_signal_handler_install_error3.Err
211 errno = errno.EINVAL variable in class:SelectorEventLoopSignalTests.test_remove_signal_handler_error2.Err
    [all...]
  /external/python/cpython3/Modules/_io/
fileio.c 127 save_errno = errno;
132 errno = save_errno;
382 errno = 0;
392 } while (self->fd < 0 && errno == EINTR &&
453 if (errno == EBADF) {
465 errno = EISDIR;
643 /* copy errno because PyBuffer_Release() can indirectly modify it */
644 err = errno;
750 if (errno == EAGAIN) {
812 /* copy errno because Py_DECREF() can indirectly modify it *
1022 errno = 0; local
    [all...]
  /external/python/cpython3/Python/
fileutils.c 607 POSIX, set errno and return nonzero on error. Fill status and return 0 on
622 /* errno is already set by _get_osfhandle, but we also set
633 errno = winerror_to_errno(error);
648 /* The Win32 error is already set, but we also set errno for
650 errno = winerror_to_errno(GetLastError());
673 error on error. On POSIX, set errno on error. Fill status and return 0 on
848 if (errno != ENOTTY && errno != EACCES) {
900 Return 0 on success, set errno and return -1 on error. */
954 && errno == EINTR && !(async_err = PyErr_CheckSignals()))
1194 errno = 0; local
1253 errno = 0; local
    [all...]
  /frameworks/native/libs/vr/libpdx_uds/
service_endpoint.cpp 156 << strerror(errno); variable
166 CHECK_EQ(ret, 0) << "Endpoint::Endpoint: bind error: " << strerror(errno); variable
176 << "Endpoint::Endpoint: listen error: " << strerror(errno);
180 << "Endpoint::Endpoint: Failed to create event fd: " << strerror(errno);
184 << "Endpoint::Endpoint: Failed to create epoll fd: " << strerror(errno);
194 << strerror(errno);
205 << strerror(errno);
226 strerror(errno));
227 return ErrorStatus(errno);
289 strerror(errno));
    [all...]
  /test/vts/compilation_tools/vtsc/test/golden/DRIVER/
Bar.driver.cpp 1187 LOG(ERROR) << "Failed to open file: " << file_name << " error: " << errno; local
    [all...]
  /external/capstone/bindings/java/capstone/
Capstone.java 221 public int errno() { method in class:Capstone.CsInsn
  /external/capstone/bindings/python/capstone/
__init__.py 333 # access to error code via @errno of CsError
335 def __init__(self, errno):
336 self.errno = errno
340 return _cs.cs_strerror(self.errno)
344 return _cs.cs_strerror(self.errno).decode()
583 def errno(self): member in class:CsInsn
  /external/gptfdisk/
basicmbr.cc 21 #include <errno.h>
435 cerr << "Error " << errno << " when saving MBR!\n"; local
439 cerr << "Error " << errno << " when seeking to MBR to write it!\n"; local
    [all...]
  /external/harfbuzz_ng/src/
hb-private.hh 47 #include <errno.h>
190 static int errno = 0; /* Use something better? */ variable
765 errno = 0;
767 if (errno) return false;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
fileobject.c 26 #include <errno.h>
355 errno = 0;
380 /* MSVC 6 (Microsoft) leaves errno at 0 for bad mode strings,
389 if (errno == 0) /* bad mode string */
390 errno = EINVAL;
391 else if (errno == EINVAL) /* unknown, but not a mode string */
392 errno = ENOENT;
396 if (errno == EINVAL) {
401 v = Py_BuildValue("(isO)", errno, message, f->f_name);
455 errno = 0; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
fileobject.c 26 #include <errno.h>
355 errno = 0;
380 /* MSVC 6 (Microsoft) leaves errno at 0 for bad mode strings,
389 if (errno == 0) /* bad mode string */
390 errno = EINVAL;
391 else if (errno == EINVAL) /* unknown, but not a mode string */
392 errno = ENOENT;
396 if (errno == EINVAL) {
401 v = Py_BuildValue("(isO)", errno, message, f->f_name);
455 errno = 0; local
    [all...]

Completed in 1040 milliseconds

1 23 4 5