Home
last modified time | relevance | path

Searched refs:errno (Results 1 – 7 of 7) 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/lib/libmbedtls/mbedtls/
H A DChangeLog4125 * Fix net_would_block() to avoid modification by errno through fcntl() call.