Searched refs:errno (Results 276 - 300 of 387) sorted by relevance

<<111213141516

/fuchsia/zircon/system/host/fidl/include/fidl/
H A Dflat_ast.h9 #include <errno.h>
660 errno = 0;
662 if (errno != 0)
668 errno = 0;
670 if (errno != 0) {
692 errno = 0;
694 if (errno != 0)
700 errno = 0;
702 if (errno != 0) {
/fuchsia/zircon/system/host/netprotocol/
H A Dnetls.c10 #include <errno.h>
/fuchsia/zircon/system/uapp/gfxfractal/
H A Dmain.c6 #include <errno.h>
/fuchsia/zircon/system/ulib/fs-management/
H A Dfsck.cpp7 #include <errno.h>
H A Dmkfs.cpp7 #include <errno.h>
/fuchsia/zircon/system/ulib/fvm/include/fvm/
H A Dfvm-lz4.h6 #include <errno.h>
/fuchsia/zircon/system/ulib/unittest/
H A Dwatchdog.cpp8 #include <errno.h>
/fuchsia/zircon/system/utest/blobfs-bench/
H A Dblobfs-bench.cpp5 #include <errno.h>
186 ASSERT_TRUE(fd, strerror(errno));
187 ASSERT_EQ(ftruncate(fd.get(), info_.blob_size), 0, strerror(errno));
189 strerror(errno));
/fuchsia/zircon/system/utest/fs/
H A Dtest-resize.cpp5 #include <errno.h>
H A Dtest-rename.c6 #include <errno.h>
231 ASSERT_EQ(errno, EBADF, "");
H A Dtest-truncate.cpp296 ASSERT_EQ(errno, EINVAL);
297 errno = 0;
299 ASSERT_EQ(errno, EINVAL);
/fuchsia/zircon/third_party/uapp/dash/src/bltin/
H A Dzircon.c6 #include <errno.h>
356 if (mkdir(dir, 0755) && errno != EEXIST) {
364 if (mkdir(dir, 0755) && !(parents && errno == EEXIST)) {
446 if (errno != ENOENT || !force) {
/fuchsia/zircon/third_party/ulib/musl/src/internal/
H A Dthreads_impl.h7 #include <errno.h>
/fuchsia/zircon/system/core/pwrbtn-monitor/
H A Dpwrbtn-monitor.cpp5 #include <errno.h>
181 printf("pwrbtn-monitor: Failed to open " INPUT_PATH ": %d\n", errno);
/fuchsia/zircon/system/uapp/iotime/
H A Diotime.c5 #include <errno.h>
71 fprintf(stderr, "error: %s() error %d\n", fn_name, errno);
/fuchsia/zircon/system/ulib/mdns/
H A Dmdns-test.cpp7 #include <errno.h>
155 EXPECT_EQ(errno, ENAMETOOLONG, "errno should be ENAMETOOLONG");
221 EXPECT_EQ(errno, EINVAL, "errno should be EINVAL when given bad rr type");
237 EXPECT_EQ(errno, EINVAL, "errno should be EINVAL when given bad rr class");
303 EXPECT_EQ(errno, EINVAL, "errno should be EINVAL when given bad rr type");
319 EXPECT_EQ(errno, EINVA
[all...]
/fuchsia/zircon/system/utest/fdio/
H A Dfdio_handle_fd.c6 #include <errno.h>
257 ASSERT_EQ(EAGAIN, errno, "errno incorrect");
/fuchsia/zircon/third_party/lib/acpica/source/common/
H A Dacfileio.c49 #include <errno.h>
102 if (errno == ENOENT)
/fuchsia/zircon/third_party/uapp/dash/src/
H A Dmiscbltin.c154 if (errno == EINTR && !pendingsigs)
499 sh_error("error setting limit (%s)", strerror(errno));
/fuchsia/zircon/third_party/ulib/backtrace/
H A Dmmap.c35 #include <errno.h>
150 error_callback (data, "mmap", errno);
/fuchsia/zircon/third_party/ulib/musl/src/network/
H A Dres_msend.c5 #include <errno.h>
62 if (fd < 0 && family == AF_INET6 && errno == EAFNOSUPPORT) {
/fuchsia/zircon/system/ulib/fdio/
H A Dunistd.c7 #include <errno.h>
76 errno = EMFILE;
80 errno = EINVAL;
882 // No specific translation, so return a generic errno value.
1289 // Although 'ESPIPE' is a bit of a misnomer, it is the valid errno
1292 errno = ESPIPE;
1569 errno = EINVAL;
1580 errno = ENAMETOOLONG;
1590 errno = EINVAL;
1597 errno
[all...]
/fuchsia/zircon/third_party/lib/acpica/source/os_specific/service_layers/
H A Dosunixxf.c61 #include <errno.h>
933 while (((RetVal = sem_timedwait (Sem, &Time)) == -1) && (errno == EINTR))
940 if (errno != ETIMEDOUT)
/fuchsia/zircon/third_party/ulib/musl/src/locale/
H A Diconv.c2 #include <errno.h>
110 errno = EINVAL;
512 errno = err;
/fuchsia/zircon/system/host/merkleroot/
H A Dmerkleroot.cpp5 #include <errno.h>

Completed in 167 milliseconds

<<111213141516