Searched refs:errno (Results 126 - 150 of 387) sorted by relevance

1234567891011>>

/fuchsia/zircon/third_party/ulib/musl/src/stdio/
H A Dpopen.c3 #include <errno.h>
20 errno = EINVAL;
42 e = errno;
69 errno = e;
H A Dftell.c2 #include <errno.h>
25 errno = EOVERFLOW;
H A Dtmpnam.c1 #include <errno.h>
/fuchsia/zircon/third_party/ulib/musl/src/unistd/
H A Dgetlogin_r.c1 #include <errno.h>
/fuchsia/zircon/system/uapp/audio/
H A Dwav-common.cpp5 #include <errno.h>
57 printf("Read error (errno %d)\n", errno);
58 return static_cast<zx_status_t>(errno);
74 printf("Write error (errno %d)\n", errno);
75 return static_cast<zx_status_t>(errno);
92 printf("Seek error (errno %d)\n", errno);
93 return static_cast<zx_status_t>(errno);
[all...]
/fuchsia/zircon/system/utest/fs/
H A Dtest-access.cpp6 #include <errno.h>
45 ASSERT_EQ(errno, EBADF);
46 errno = 0;
50 ASSERT_EQ(errno, EBADF);
51 errno = 0;
77 ASSERT_EQ(errno, EBADF);
78 errno = 0;
119 ASSERT_EQ(errno, EISDIR);
122 ASSERT_EQ(errno, EISDIR);
160 ASSERT_EQ(errno, EBAD
[all...]
H A Dtest-random-op.c6 #include <errno.h>
174 int errnum = errno;
186 // errno may be one of EEXIST
187 if (errno != EEXIST) {
210 // errno may be one of EEXIST
211 if (errno != EEXIST) {
234 // errno may be one of ENOENT
235 if (errno != ENOENT) {
248 // errno may be one of ENOENT
249 if (errno !
[all...]
/fuchsia/zircon/third_party/ulib/musl/src/internal/
H A Dintscan.c3 #include <errno.h>
27 errno = EINVAL;
58 errno = EINVAL;
86 errno = ERANGE;
95 errno = ERANGE;
98 errno = ERANGE;
/fuchsia/zircon/system/uapp/lsdev/
H A Dlsdev.c9 #include <errno.h>
23 fprintf(stderr, "could not open %s: %s\n", argv[1], strerror(errno));
/fuchsia/zircon/system/ulib/fdio/
H A Duname.c5 #include <errno.h>
24 errno = EFAULT;
/fuchsia/zircon/third_party/ulib/musl/src/env/
H A Dunsetenv.c1 #include <errno.h>
13 errno = EINVAL;
/fuchsia/zircon/third_party/ulib/musl/src/multibyte/
H A Dmbtowc.c2 #include <errno.h>
54 errno = EILSEQ;
/fuchsia/zircon/third_party/ulib/musl/src/time/
H A Dmktime.c2 #include <errno.h>
27 errno = EOVERFLOW;
/fuchsia/zircon/system/utest/fs-host/
H A Dtest-maxfile.cpp5 #include <errno.h>
41 fprintf(stderr, "bigfile received error: %s\n", strerror(errno));
42 if ((errno == EFBIG) || (errno == ENOSPC)) {
/fuchsia/zircon/third_party/lib/acpica/source/tools/acpibin/
H A Dacpibin.h49 #include <errno.h>
/fuchsia/zircon/third_party/ulib/backtrace/
H A Dalloc.c35 #include <errno.h>
61 error_callback (data, "malloc", errno);
104 error_callback (data, "realloc", errno);
151 error_callback (data, "realloc", errno);
/fuchsia/zircon/third_party/ulib/musl/pthread/
H A Dsem_timedwait.c21 errno = r;
/fuchsia/zircon/third_party/ulib/musl/src/errno/
H A Dstrerror.c2 #include <errno.h>
/fuchsia/zircon/third_party/ulib/musl/src/misc/
H A Dpty.c2 #include <errno.h>
/fuchsia/zircon/third_party/ulib/musl/src/process/
H A Dposix_spawn_file_actions_adddup2.c2 #include <errno.h>
H A Dposix_spawn_file_actions_addclose.c2 #include <errno.h>
/fuchsia/zircon/third_party/ulib/musl/src/string/
H A Dstrerror_r.c2 #include <errno.h>
/fuchsia/zircon/third_party/ulib/musl/src/thread/
H A D__timedwait.c3 #include <errno.h>
/fuchsia/zircon/kernel/lib/libc/
H A Dstrtoll.c34 #include <errno.h>
121 errno = ERANGE;
131 errno = ERANGE;
H A Dstrtol.c32 #include <errno.h>
119 errno = ERANGE;
129 errno = ERANGE;

Completed in 79 milliseconds

1234567891011>>