HomeSort by relevance Sort by last modified time
    Searched refs:_errno (Results 1 - 25 of 27) sorted by null

1 2

  /bionic/libc/private/
bionic_mbstate.h 61 static inline __wur size_t mbstate_reset_and_return_illegal(int _errno, mbstate_t* ps) {
62 errno = _errno;
  /external/libusb/msvc/
errno.h 92 _CRTIMP int* __cdecl _errno(void);
93 #define errno (*_errno())
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
errno.h 17 _CRTIMP extern int *__cdecl _errno(void);
18 #define errno (*_errno())
stddef.h 18 _CRTIMP extern int *__cdecl _errno(void);
19 #define errno (*_errno())
stdlib.h 142 _CRTIMP extern int *__cdecl _errno(void);
143 #define errno (*_errno())
  /external/python/cpython2/Lib/
tempfile.py 34 import errno as _errno
208 if e.args[0] == _errno.EEXIST:
210 if (_os.name == 'nt' and e.args[0] == _errno.EACCES and
216 raise IOError, (_errno.ENOENT,
248 if e.errno == _errno.EEXIST:
250 if (_os.name == 'nt' and e.errno == _errno.EACCES and
257 raise IOError, (_errno.EEXIST, "No usable temporary file name found")
342 if e.errno == _errno.EEXIST:
344 if (_os.name == 'nt' and e.errno == _errno.EACCES and
351 raise IOError, (_errno.EEXIST, "No usable temporary directory name found"
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
ctrl_iface_unix.c 197 int _errno = errno; local
200 _errno, strerror(_errno));
201 if (_errno == ENOBUFS || _errno == EAGAIN) {
929 int _errno; local
946 _errno = errno;
948 _errno, strerror(_errno));
952 if (dst->errors > 10 || _errno == ENOENT || _errno == EPERM)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
tempfile.py 33 import errno as _errno
197 if e[0] != _errno.EEXIST:
200 raise IOError, (_errno.ENOENT,
232 if e.errno == _errno.EEXIST:
236 raise IOError, (_errno.EEXIST, "No usable temporary file name found")
321 if e.errno == _errno.EEXIST:
325 raise IOError, (_errno.EEXIST, "No usable temporary directory name found")
354 raise IOError, (_errno.EEXIST, "No usable temporary filename found")
  /external/curl/lib/
nwlib.c 41 int _errno; member in struct:__anon16372
253 thread_data->_errno = 0;
  /external/minijail/
bpf.h 159 #define set_bpf_ret_errno(_block, _errno) \
161 SECCOMP_RET_ERRNO | ((_errno) & SECCOMP_RET_DATA))
  /prebuilts/gdb/darwin-x86/lib/python2.7/
tempfile.py 34 import errno as _errno
208 if e.args[0] != _errno.EEXIST:
211 raise IOError, (_errno.ENOENT,
243 if e.errno == _errno.EEXIST:
247 raise IOError, (_errno.EEXIST, "No usable temporary file name found")
332 if e.errno == _errno.EEXIST:
336 raise IOError, (_errno.EEXIST, "No usable temporary directory name found")
365 raise IOError, (_errno.EEXIST, "No usable temporary filename found")
  /prebuilts/gdb/linux-x86/lib/python2.7/
tempfile.py 34 import errno as _errno
208 if e.args[0] != _errno.EEXIST:
211 raise IOError, (_errno.ENOENT,
243 if e.errno == _errno.EEXIST:
247 raise IOError, (_errno.EEXIST, "No usable temporary file name found")
332 if e.errno == _errno.EEXIST:
336 raise IOError, (_errno.EEXIST, "No usable temporary directory name found")
365 raise IOError, (_errno.EEXIST, "No usable temporary filename found")
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
tempfile.py 34 import errno as _errno
208 if e.args[0] != _errno.EEXIST:
211 raise IOError, (_errno.ENOENT,
243 if e.errno == _errno.EEXIST:
247 raise IOError, (_errno.EEXIST, "No usable temporary file name found")
332 if e.errno == _errno.EEXIST:
336 raise IOError, (_errno.EEXIST, "No usable temporary directory name found")
365 raise IOError, (_errno.EEXIST, "No usable temporary filename found")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
tempfile.py 34 import errno as _errno
208 if e.args[0] != _errno.EEXIST:
211 raise IOError, (_errno.ENOENT,
243 if e.errno == _errno.EEXIST:
247 raise IOError, (_errno.EEXIST, "No usable temporary file name found")
332 if e.errno == _errno.EEXIST:
336 raise IOError, (_errno.EEXIST, "No usable temporary directory name found")
365 raise IOError, (_errno.EEXIST, "No usable temporary filename found")
  /external/openssh/
sandbox-seccomp-filter.c 87 #define SC_DENY(_nr, _errno) \
89 BPF_STMT(BPF_RET+BPF_K, SECCOMP_RET_ERRNO|(_errno))
  /external/kmod/libkmod/python/kmod/
module.pyx 19 cimport libc.errno as _errno
143 if err == -_errno.EEXIST:
  /prebuilts/go/darwin-x86/src/runtime/
defs1_netbsd_386.go 93 _errno int32
defs1_netbsd_arm.go 93 _errno int32
defs1_netbsd_amd64.go 93 _errno int32
  /prebuilts/go/linux-x86/src/runtime/
defs1_netbsd_386.go 93 _errno int32
defs1_netbsd_arm.go 93 _errno int32
defs1_netbsd_amd64.go 93 _errno int32
  /external/wpa_supplicant_8/src/radius/
radius_client.c 337 int _errno = errno; local
339 if (_errno == ENOTCONN || _errno == EDESTADDRREQ || _errno == EINVAL ||
340 _errno == EBADF || _errno == ENETUNREACH || _errno == EACCES) {
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
eap_sim_db.c 867 int _errno = 0; local
870 _errno = errno;
875 if (_errno == ENOTCONN || _errno == EDESTADDRREQ || _errno == EINVAL ||
876 _errno == ECONNREFUSED) {
    [all...]
  /external/libpcap/
pcap-win32.c 53 int* _errno();
54 #define errno (*_errno())
    [all...]

Completed in 921 milliseconds

1 2