Symbol: ESPIPE
bin/dd/dd.c
334
if (lseek(io->fd, (off_t)0, SEEK_CUR) == -1 && errno == ESPIPE)
bin/pax/ar_io.c
177
else if ((lseek(arfd, (off_t)0L, SEEK_CUR) == -1) && (errno == ESPIPE))
crypto/krb5/src/plugins/kdb/db2/libdb2/mpool/mpool.c
74
errno = ESPIPE;
crypto/krb5/src/plugins/kdb/db2/libdb2/recno/rec_open.c
128
if (lseek(rfd, (off_t)0, SEEK_CUR) == -1 && errno == ESPIPE) {
lib/libc/db/mpool/mpool.c
74
errno = ESPIPE;
lib/libc/db/recno/rec_open.c
117
if (lseek(rfd, (off_t)0, SEEK_CUR) == -1 && errno == ESPIPE) {
lib/libc/stdio/fseek.c
102
errno = ESPIPE; /* historic practice */
lib/libc/stdio/fseek.c
122
errno = ESPIPE;
lib/libc/stdio/ftell.c
75
errno = ESPIPE;
lib/libc/stdio/ftell.c
88
errno = ESPIPE; /* historic practice */
lib/libc/stdio/stdio.c
155
} else if (errret == ESPIPE)
lib/libfetch/ftp.c
561
errno = ESPIPE;
stand/liblua/lerrno.c
76
ENTRY(ESPIPE),
stand/libsa/pkgfs.c
385
errno = ESPIPE;
sys/compat/linux/linux_socket.c
2546
return (ESPIPE);
sys/compat/linux/linux_socket.c
2623
return (ESPIPE);
sys/compat/linuxkpi/common/include/linux/fs.h
308
return (-ESPIPE);
sys/dev/cfi/cfi_dev.c
281
return (ESPIPE);
sys/dev/ice/ice_strings.c
391
case ESPIPE:
sys/dev/ixl/i40e_adminq.h
144
-ESPIPE, /* I40E_AQ_RC_BAD_ADDR */
sys/fs/fuse/fuse_vnops.c
697
return (ESPIPE);
sys/gdb/gdb_main.c
456
error = ESPIPE;
sys/kern/sys_generic.c
330
error = ESPIPE;
sys/kern/sys_generic.c
532
error = ESPIPE;
sys/kern/sys_generic.c
863
error = ESPIPE;
sys/kern/sys_generic.c
931
error = ESPIPE;
sys/kern/vfs_syscalls.c
2138
fo_seek(fp, offset, whence, td) : ESPIPE;
sys/kern/vfs_syscalls.c
4968
error = ESPIPE;
sys/security/audit/bsm_errno.c
111
{ BSM_ERRNO_ESPIPE, ESPIPE, ES("Illegal seek") },
tests/sys/capsicum/capability-fd.cc
1232
EXPECT_EQ(ESPIPE, errno);
tests/sys/capsicum/capability-fd.cc
1239
EXPECT_EQ(ESPIPE, errno);
tests/sys/fifo/fifo_misc.c
123
if (errno != ESPIPE) {
tests/sys/file/path_test.c
740
ATF_REQUIRE_ERRNO(ESPIPE,
tests/sys/file/path_test.c
747
ATF_REQUIRE_MSG(error == ESPIPE, "posix_fallocate() returned %d", error);
tests/sys/file/path_test.c
749
ATF_REQUIRE_MSG(error == ESPIPE, "posix_fadvise() returned %d", error);
tools/bus_space/bus.c
141
errno = ESPIPE;
tools/bus_space/bus.c
239
errno = ESPIPE;
usr.bin/mkimg/mkimg.c
750
lseek(outfd, (off_t)0, SEEK_CUR) == -1 && errno == ESPIPE)
usr.bin/stat/stat.c
1135
errno = ESPIPE;
usr.bin/tail/tail.c
255
errno == ESPIPE) {
usr.bin/tcopy/tcopy.cc
297
if (where != 0 && errno == ESPIPE)