Symbol: fileno
headers/posix/stdio.h
77
extern int fileno(FILE *stream);
src/add-ons/media/plugins/ape_reader/MAClib/StdLibFileIO.cpp
54
# define FILENO(__fp) fileno ((__fp))
src/add-ons/media/plugins/ape_reader/MAClib/StdLibFileIO.cpp
56
# define FILENO(__fp) fileno ((__fp))
src/bin/multiuser/multiuser_utils.cpp
43
int inFD = fileno(in);
src/bin/network/ftpd/ftpcmd.y
1610
if (fstat(fileno(fin), &stbuf) < 0) {
src/bin/network/ftpd/ftpd.c
1742
if (fstat(fileno(fin), &st) < 0) {
src/bin/network/ftpd/ftpd.c
1777
} else if (lseek(fileno(fin), restart_point, L_SET) < 0) {
src/bin/network/ftpd/ftpd.c
1866
} else if (lseek(fileno(fout), restart_point, L_SET) < 0) {
src/bin/network/ftpd/ftpd.c
2046
data = fileno(file);
src/bin/network/ftpd/ftpd.c
2159
netfd = fileno(outstr);
src/bin/network/ftpd/ftpd.c
2160
filefd = fileno(instr);
src/bin/network/ftpd/ftpd.c
2284
cnt = read(fileno(instr), buf, sizeof(buf));
src/bin/network/ftpd/ftpd.c
2293
cnt = write(fileno(outstr), bp, len);
src/bin/network/ftpd/popen.c
175
pids[fileno(iop)] = pid;
src/bin/network/ftpd/popen.c
193
if (pids == NULL || pids[fdes = fileno(iop)] == 0)
src/bin/network/telnet/sys_bsd.c
126
tout = fileno(stdout);
src/bin/network/telnet/sys_bsd.c
127
tin = fileno(stdin);
src/bin/network/telnet/sys_bsd.c
222
(void) ioctl(fileno(stdout), TIOCFLUSH, (char *) 0);
src/bin/network/telnet/sys_bsd.c
224
(void) ioctl(fileno(stdout), TCFLSH, (char *) 0);
src/bin/network/telnet/sys_bsd.c
717
if (ioctl(fileno(stdin), TIOCGWINSZ, (char *)&ws) >= 0) {
src/bin/pkgman/command_search.cpp
85
int fd = fileno(stdout);
src/bin/unzip/extract.c
1409
setmode(fileno(G.outfile), O_BINARY);
src/bin/unzip/fileio.c
94
((extent)write(fileno(strm),(char *)(buf),(extent)(len)) != (extent)(len))
src/libs/bsd/getpass.c
26
if (tcgetattr(fileno(stdin), &termios) == 0) {
src/libs/bsd/getpass.c
30
changed = tcsetattr(fileno(stdin), TCSAFLUSH, &noEchoTermios) == 0;
src/libs/bsd/getpass.c
52
tcsetattr(fileno(stdin), TCSAFLUSH, &termios);
src/libs/compat/freebsd_iflib/nvlist.c
680
nvlist_dump(nvl, fileno(fp));
src/libs/libsolv/solv/repopage.c
785
store->pagefd = dup(fileno(fp));
src/libs/stdc++/legacy/stdiostream.cc
55
stdiobuf::stdiobuf(FILE *f) : filebuf(fileno(f))
src/system/libnetwork/netresolv/resolv/res_init.c
480
statp->_u._ext.ext->resfd = fcntl(fileno(fp), F_DUPFD_CLOEXEC, 0);
src/system/libroot/posix/glibc/include/stdio_private.h
108
libc_hidden_proto (fileno)
src/system/libroot/posix/glibc/libio/fileno.c
44
libc_hidden_def (fileno)
src/system/libroot/posix/glibc/libio/fileno.c
51
weak_alias (fileno, fileno_unlocked)
src/system/libroot/posix/glibc/libio/stdio.h
868
extern int fileno (FILE *__stream) __THROW __wur;
src/system/libroot/posix/glibc/stdio-common/perror.c
60
|| (fd = fileno (stderr)) == -1
src/tests/system/kernel/fifo_poll_test.cpp
17
int fd = fileno(f);
src/tests/system/kernel/null_poll_test.cpp
14
int fd = fileno(f);
src/tests/system/libroot/posix/fseek_test.cpp
318
} else if (fstat(fileno(fp), &st1) < 0) {
src/tests/system/libroot/posix/fseek_test.cpp
337
} else if (fstat(fileno(fp), &st1) < 0) {