Searched refs:errno (Results 251 - 275 of 387) sorted by relevance

<<111213141516

/fuchsia/zircon/system/utest/fs/
H A Dtest-overflow.c6 #include <errno.h>
95 assert(errno == ENAMETOOLONG);
H A Dmisc.c6 #include <errno.h>
H A Dtest-rw-workers.c6 #include <errno.h>
108 w->name, w->pos, errno);
119 w->name, w->pos, errno);
142 w->name, strerror(errno));
H A Dfilesystems.cpp6 #include <errno.h>
67 if ((r < 0) && errno != EEXIST) {
198 return errno;
/fuchsia/zircon/system/utest/fuzz-utils/
H A Dfixture.cpp8 #include <errno.h>
108 ASSERT_EQ(errno, ENOENT);
/fuchsia/zircon/system/utest/stdio/
H A Dstdio.c10 #include <errno.h>
44 ASSERT_EQ(errno, ESPIPE, "lseek error should have been pipe-related");
/fuchsia/zircon/third_party/ulib/jemalloc/include/jemalloc/internal/
H A Dutil_inlines.h195 errno = errnum;
206 return (errno);
/fuchsia/zircon/third_party/ulib/musl/src/network/
H A Dif_nameindex.c3 #include <errno.h>
111 errno = ENOBUFS;
H A Dgethostbyname2_r.c1 #include <errno.h>
H A Dnetlink.c2 #include <errno.h>
/fuchsia/zircon/kernel/lib/libc/include/
H A Derrno.h16 #define errno (*__geterrno()) macro
/fuchsia/zircon/system/uapp/fs-mount/
H A Dmain.c5 #include <errno.h>
/fuchsia/zircon/system/uapp/fs-fsck/
H A Dmain.c5 #include <errno.h>
/fuchsia/zircon/third_party/ulib/backtrace/
H A Dfileline.c37 #include <errno.h>
/fuchsia/zircon/third_party/ulib/musl/src/stdio/
H A Dvfwprintf.c3 #include <errno.h>
236 errno = EOVERFLOW;
382 arg.p = strerror(errno);
/fuchsia/zircon/third_party/ulib/musl/src/thread/
H A Dcnd_timedwait.c3 #include <errno.h>
/fuchsia/zircon/system/host/kernel-buildsig/
H A Dkernel-buildsig.cpp5 #include <errno.h>
223 argv[0], filename, strerror(errno));
237 argv[0], filename, strerror(errno));
/fuchsia/zircon/system/uapp/channel-perf/
H A Dmain.cpp6 #include <errno.h>
148 errno = 0;
151 if (errno != 0 || *endptr != '\0' || value > UINT32_MAX)
/fuchsia/zircon/system/uapp/dd/
H A Dmain.c6 #include <errno.h>
179 fprintf(stderr, "Couldn't open input file %s : %d\n", options.input, errno);
189 fprintf(stderr, "Couldn't open output file %s : %d\n", options.output, errno);
/fuchsia/zircon/third_party/uapp/dash/src/
H A Dprocess.c5 #include <errno.h>
148 errno = EBADF;
160 errno = ENOTTY;
/fuchsia/zircon/system/ulib/fs-test-utils/
H A Dfixture.cpp5 #include <errno.h>
129 strerror(errno), block_device_path.c_str());
158 strerror(errno), fvm_device_path.c_str());
179 LOG_ERROR(ZX_ERR_IO, "Could not locate FVM partition. %s\n", strerror(errno));
238 strerror(errno), GetFsBlockDevice().c_str());
H A Dperftest.cpp5 #include <errno.h>
282 LOG_ERROR(ZX_ERR_IO, "%s\n", strerror(errno));
293 LOG_ERROR(ZX_ERR_IO, "%s\n", strerror(errno));
/fuchsia/zircon/system/uapp/hid/
H A Dmain.cpp7 #include <errno.h>
285 printf("read errno=%d (%s)\n", errno, strerror(errno));
358 printf("could not open %s: %d\n", argv[0], errno);
410 printf("could not open %s: %d\n", argv[0], errno);
482 printf("could not open %s: %d\n", argv[0], errno);
539 printf("could not open %s: %d\n", argv[0], errno);
/fuchsia/zircon/system/host/fidl/compiler/
H A Dmain.cpp5 #include <errno.h>
117 if (mkdir(path.data(), 0755) != 0 && errno != EEXIST) {
119 path.data(), filename.data(), strerror(errno));
/fuchsia/zircon/system/ulib/runtests-utils/
H A Dlog-exporter.cpp7 #include <errno.h>
208 NotifyFileError(strerror(errno));
225 NotifyFileError(strerror(errno));

Completed in 148 milliseconds

<<111213141516