Searched refs:errno (Results 201 - 225 of 387) sorted by relevance

1234567891011>>

/fuchsia/zircon/system/utest/core/c11-thread/
H A Dthread.c5 #include <errno.h>
19 errno = thread_number;
22 EXPECT_EQ(errno, thread_number, "errno changed by someone!");
/fuchsia/zircon/system/uapp/fs-umount/
H A Dmain.c5 #include <errno.h>
/fuchsia/zircon/system/uapp/tpmctl/
H A Dtpmctl.c6 #include <errno.h>
/fuchsia/zircon/system/utest/stdio/
H A Dutil.c7 #include <errno.h>
/fuchsia/zircon/third_party/ulib/musl/src/misc/
H A Dsyslog.c3 #include <errno.h>
77 int errno_save = errno;
96 errno = errno_save;
106 (!is_lost_conn(errno) || connect(log_fd, (void*)&log_addr, sizeof log_addr) < 0 ||
H A Dwordexp.c2 #include <errno.h>
17 if (errno != EINTR)
/fuchsia/zircon/third_party/ulib/musl/src/stdio/
H A Dfmemopen.c2 #include <errno.h>
17 errno = EINVAL;
83 errno = EINVAL;
88 errno = ENOMEM;
/fuchsia/zircon/kernel/lib/libc/
H A Drules.mk20 $(LOCAL_DIR)/errno.c \
/fuchsia/zircon/system/host/netprotocol/
H A Dnetcp.c27 #include <errno.h>
124 ((errno == EAGAIN) || (errno == EWOULDBLOCK) ||
125 (errno == ENOBUFS && sched_yield() == 0)));
158 if ((errno == EAGAIN) || (errno == EWOULDBLOCK)) {
304 if (errno == ETIMEDOUT) {
307 fprintf(stderr, "%s: failed to connect to %s: %d\n", appname, hostname, errno);
/fuchsia/zircon/system/utest/core/
H A Dmain.c5 #include <errno.h>
84 #define ERROR() do { errno = ENOSYS; return -1; } while (0)
/fuchsia/zircon/third_party/ulib/musl/src/locale/
H A Dstrfmon.c3 #include <errno.h>
63 errno = E2BIG;
/fuchsia/zircon/third_party/ulib/musl/src/network/
H A Dgethostbyaddr_r.c3 #include <errno.h>
63 return errno;
H A Dinet_pton.c3 #include <errno.h>
36 errno = EAFNOSUPPORT;
H A Dns_parse.c3 #include <errno.h>
60 errno = EMSGSIZE;
87 errno = EMSGSIZE;
150 errno = ENODEV;
153 errno = EMSGSIZE;
162 errno = EMSGSIZE;
/fuchsia/zircon/third_party/ulib/musl/src/internal/
H A Dfloatscan.c2 #include <errno.h>
140 errno = EINVAL;
153 errno = ERANGE;
157 errno = ERANGE;
324 errno = ERANGE;
413 errno = ERANGE;
417 errno = ERANGE;
448 errno = ERANGE;
514 errno = EINVAL;
527 errno
[all...]
/fuchsia/zircon/system/host/bootserver/
H A Dnetboot.c20 #include <errno.h>
39 if (retry_allowed && errno == EAGAIN) {
42 fprintf(stderr, "\n%s: error: Socket read error %d\n", appname, errno);
103 if (retry_allowed && errno == ENOBUFS) {
112 fprintf(stderr, "\n%s: error: Socket write error %d\n", appname, errno);
153 fprintf(stderr, "\n%s: error: Select failed %d\n", appname, errno);
274 fprintf(stderr, "%s: error: Cannot create socket %d\n", appname, errno);
/fuchsia/zircon/system/ulib/runtests-utils/
H A Druntests-utils.cpp9 #include <errno.h>
73 if (mkdir(dir, 0755) && errno != EEXIST) {
79 if (mkdir(dir, 0755) && errno != EEXIST) {
80 return errno;
208 return EIO; // glob()'s return values aren't the same as errno. This is somewhat arbitrary.
229 printf("Error: Could not resolve path %s: %s\n", test_dir.c_str(), strerror(errno));
243 return errno;
277 return errno;
H A Ddiscover-and-run-tests.cpp7 #include <errno.h>
105 fprintf(stderr, "Warning: Could not open %s for syncing: %s", p, strerror(errno));
108 fprintf(stderr, "Warning: Could not sync %s: %s", p, strerror(errno));
111 fprintf(stderr, "Warning: Could not close %s: %s", p, strerror(errno));
240 strerror(errno));
/fuchsia/zircon/third_party/uapp/dash/src/
H A Dredir.c197 errno = EEXIST;
201 errno = EEXIST;
236 sh_error("cannot create %s: %s", fname, errmsg(errno, E_CREAT));
238 sh_error("cannot open %s: %s", fname, errmsg(errno, E_OPEN));
269 err = errno;
276 err = errno;
400 err = newfd < 0 ? errno : 0;
/fuchsia/zircon/system/host/xdc-server/
H A Dxdc-server.cpp12 #include <errno.h>
85 if (errno == EAGAIN) {
90 fprintf(stderr, "can't write to client, err: %s\n", strerror(errno));
125 fprintf(stderr, "recv got unhandled err: %s\n", strerror(errno));
171 fprintf(stderr, "failed to create socket, err: %s\n", strerror(errno));
185 fprintf(stderr, "Failed to acquire socket lock, err: %s.\n", strerror(errno));
192 XDC_SOCKET_PATH, strerror(errno));
197 socket_fd_.get(), strerror(errno));
272 fprintf(stderr, "poll failed, err: %s\n", strerror(errno));
357 fprintf(stderr, "Socket accept failed, err: %s\n", strerror(errno));
[all...]
/fuchsia/zircon/system/uapp/kstress/
H A Dmain.cpp13 #include <errno.h>
32 strerror(errno), errno);
/fuchsia/zircon/third_party/ulib/musl/src/conf/
H A Dsysconf.c2 #include <errno.h>
170 errno = EINVAL;
204 errno = EINVAL;
/fuchsia/zircon/system/uapp/fs-mkfs/
H A Dmain.c5 #include <errno.h>
66 fprintf(stderr, "Invalid Args: %s\n", strerror(errno));
/fuchsia/zircon/system/utest/runtests-utils/
H A Druntests-utils-test-utils.h8 #include <errno.h>
78 strerror(errno));
/fuchsia/zircon/third_party/ulib/musl/src/multibyte/
H A Dmbsrtowcs.c2 #include <errno.h>
135 errno = EILSEQ;

Completed in 152 milliseconds

1234567891011>>