Home
last modified time | relevance | path

Searched refs:errno (Results 1 – 10 of 10) sorted by relevance

/optee_os/lib/libmbedtls/mbedtls/library/
H A Dnet_sockets.c291 int err = errno; in net_would_block()
297 errno = err; in net_would_block()
301 switch (errno = err) { in net_would_block()
563 if (errno == EPIPE || errno == ECONNRESET) { in mbedtls_net_recv()
567 if (errno == EINTR) { in mbedtls_net_recv()
614 if (errno == EINTR) { in mbedtls_net_recv_timeout()
652 if (errno == EPIPE || errno == ECONNRESET) { in mbedtls_net_send()
656 if (errno == EINTR) { in mbedtls_net_send()
H A Dentropy_poll.c163 } else if (errno != ENOSYS) { in mbedtls_platform_entropy_poll()
H A Dx509_crt.c1622 if (errno == ENOENT) { in mbedtls_x509_crt_parse_path()
/optee_os/core/lib/zlib/
H A Dgzguts.h134 # define zstrerror() strerror(errno)
H A Dzutil.c145 int errno = 0; variable
/optee_os/scripts/
H A Dsymbolize.py9 import errno
147 if e.errno == errno.ENOENT:
/optee_os/scripts/kconfig/kconfiglib/
H A Dguiconfig.py55 import errno
1714 errno.errorcode[e.errno]))
1734 .format(filename, e.strerror, errno.errorcode[e.errno]))
H A Dmenuconfig.py213 import errno
1861 .format(filename, e.strerror, errno.errorcode[e.errno]))
1914 errno.errorcode[e.errno]))
H A Dkconfiglib.py546 import errno
1855 if e.errno == errno.ENOENT:
2133 .format(filename, errno.errorcode[e.errno], e.strerror,
2196 errno.errorcode[e.errno], e.strerror))
5977 ioerror.errno, ioerror.strerror, ioerror.filename)
6253 return IOError(e.errno, e.strerror, e.filename)
/optee_os/lib/libmbedtls/mbedtls/
H A DChangeLog4168 * Fix net_would_block() to avoid modification by errno through fcntl() call.