Searched refs:errno (Results 101 - 125 of 387) sorted by relevance

1234567891011>>

/fuchsia/zircon/system/ulib/xdc-host-utils/
H A Dclient.cpp5 #include <errno.h>
22 fprintf(stderr, "Could not create socket, err: %s\n", strerror(errno));
31 XDC_SOCKET_PATH, strerror(errno));
38 sizeof(stream_id), n, strerror(errno));
46 sizeof(connected_resp), n, strerror(errno));
/fuchsia/zircon/third_party/ulib/musl/src/dirent/
H A Dscandir.c2 #include <errno.h>
13 int old_errno = errno;
18 while ((errno = 0), (de = readdir(d))) {
38 if (errno) {
45 errno = old_errno;
/fuchsia/zircon/system/uapp/strerror/
H A Dstrerror.c5 #include <errno.h>
25 errno = 0;
27 if (errno)
/fuchsia/zircon/system/ulib/fdio/
H A Dstubs.c9 #include <errno.h>
22 errno = err;
35 errno = err;
45 errno = EBADF;
50 errno = err;
60 errno = EBADF;
66 errno = sock_err;
70 errno = err;
79 errno = ENOSYS;
91 errno
[all...]
/fuchsia/zircon/system/utest/errno/
H A Derrno.c6 #include <errno.h>
15 errno = -thread_no;
18 EXPECT_EQ(errno, -thread_no, "Incorrect errno for this thread");
H A Drules.mk12 $(LOCAL_DIR)/errno.c \
14 MODULE_NAME := errno-test
/fuchsia/zircon/system/utest/fdio/
H A Dfdio_root.c5 #include <errno.h>
42 ASSERT_EQ(errno, EBUSY, "");
45 ASSERT_EQ(errno, EBUSY, "");
H A Dfdio_open_max.c5 #include <errno.h>
/fuchsia/zircon/third_party/ulib/musl/src/mman/
H A Dshm_open.c1 #include <errno.h>
16 errno = EINVAL;
20 errno = ENAMETOOLONG;
/fuchsia/zircon/third_party/ulib/musl/src/multibyte/
H A Dwcrtomb.c2 #include <errno.h>
14 errno = EILSEQ;
35 errno = EILSEQ;
H A Dc16rtomb.c1 #include <errno.h>
36 errno = EILSEQ;
/fuchsia/zircon/third_party/ulib/musl/src/stdio/
H A Dtempnam.c1 #include <errno.h>
29 errno = ENAMETOOLONG;
42 if (r == -1 && errno == ENOENT) {
H A Dfopen.c2 #include <errno.h>
14 errno = EINVAL;
/fuchsia/zircon/third_party/ulib/musl/src/temp/
H A Dmkostemps.c3 #include <errno.h>
13 errno = EINVAL;
23 } while (--retries && errno == EEXIST);
/fuchsia/zircon/system/core/netsvc/
H A Dnetfile.c7 #include <errno.h>
43 if (errno == ENOENT) {
66 errno = EISDIR;
83 errno = ENAMETOOLONG;
90 if (netfile.fd < 0 && errno == ENOENT) {
99 errno = EINVAL;
111 return -errno;
121 return -errno;
135 printf("netsvc: error reading '%s': %d\n", netfile.filename, errno);
136 int result = (errno
[all...]
/fuchsia/zircon/third_party/ulib/musl/src/conf/
H A Dfpathconf.c1 #include <errno.h>
28 errno = EINVAL;
/fuchsia/zircon/third_party/ulib/musl/src/env/
H A Dsetenv.c1 #include <errno.h>
12 errno = EINVAL;
/fuchsia/zircon/third_party/ulib/musl/src/stat/
H A Dfutimesat.c3 #include <errno.h>
13 errno = EINVAL;
/fuchsia/zircon/third_party/ulib/musl/src/time/
H A Dclock_gettime.c3 #include <errno.h>
25 errno = EINVAL;
H A Dgetdate.c1 #include <errno.h>
22 if (errno == ENOMEM)
/fuchsia/zircon/system/uapp/i2c/
H A Di2c.c5 #include <errno.h>
53 errno = 0;
55 if (errno) {
57 return errno;
97 errno = 0;
100 if (errno) {
101 ret = errno;
128 errno = 0;
149 if (errno) {
151 return errno;
[all...]
/fuchsia/zircon/third_party/ulib/musl/pthread/
H A Dpthread_sigmask.c1 #include <errno.h>
H A Dsem_post.c11 errno = EOVERFLOW;
H A Dsem_trywait.c11 errno = EAGAIN;
/fuchsia/zircon/third_party/ulib/musl/src/process/
H A Dposix_spawnattr_sched.c1 #include <errno.h>

Completed in 91 milliseconds

1234567891011>>