Symbol: _IO_stdin
src/libs/stdc++/legacy/stdstreams.cc
143
cin.base._strbuf = (streambuf*)_IO_stdin;
src/libs/stdc++/legacy/streambuf.cc
217
if (this != _IO_stdin && this != _IO_stdout && this != _IO_stderr)
src/system/libroot/posix/glibc/libio/getchar.c
36
_IO_acquire_lock (_IO_stdin);
src/system/libroot/posix/glibc/libio/getchar.c
37
result = _IO_getc_unlocked (_IO_stdin);
src/system/libroot/posix/glibc/libio/getchar.c
38
_IO_release_lock (_IO_stdin);
src/system/libroot/posix/glibc/libio/getchar_u.c
35
return _IO_getc_unlocked (_IO_stdin);
src/system/libroot/posix/glibc/libio/getwchar.c
36
_IO_acquire_lock (_IO_stdin);
src/system/libroot/posix/glibc/libio/getwchar.c
37
result = _IO_getwc_unlocked (_IO_stdin);
src/system/libroot/posix/glibc/libio/getwchar.c
38
_IO_release_lock (_IO_stdin);
src/system/libroot/posix/glibc/libio/getwchar_u.c
35
return _IO_getwc_unlocked (_IO_stdin);
src/system/libroot/posix/glibc/libio/iofclose.c
84
if (fp != _IO_stdin && fp != _IO_stdout && fp != _IO_stderr)
src/system/libroot/posix/glibc/libio/iofwide.c
106
&& (fp == _IO_stdin || fp == _IO_stdout || fp == _IO_stderr))
src/system/libroot/posix/glibc/libio/iogets.c
38
_IO_acquire_lock (_IO_stdin);
src/system/libroot/posix/glibc/libio/iogets.c
39
ch = _IO_getc_unlocked (_IO_stdin);
src/system/libroot/posix/glibc/libio/iogets.c
52
int old_error = _IO_stdin->_IO_file_flags & _IO_ERR_SEEN;
src/system/libroot/posix/glibc/libio/iogets.c
53
_IO_stdin->_IO_file_flags &= ~_IO_ERR_SEEN;
src/system/libroot/posix/glibc/libio/iogets.c
55
count = _IO_getline (_IO_stdin, buf + 1, INT_MAX, '\n', 0) + 1;
src/system/libroot/posix/glibc/libio/iogets.c
56
if (_IO_stdin->_IO_file_flags & _IO_ERR_SEEN)
src/system/libroot/posix/glibc/libio/iogets.c
62
_IO_stdin->_IO_file_flags |= old_error;
src/system/libroot/posix/glibc/libio/iogets.c
67
_IO_release_lock (_IO_stdin);
src/system/libroot/posix/glibc/libio/libio.h
330
extern _IO_FILE *_IO_stdin attribute_hidden;
src/system/libroot/posix/glibc/libio/vscanf.c
37
return _IO_vfscanf (_IO_stdin, format, args, NULL);
src/system/libroot/posix/glibc/libio/vwscanf.c
33
return _IO_vfwscanf (_IO_stdin, format, args, NULL);
src/system/libroot/stubbed/libroot_stubs_legacy.c
7
int _IO_stdin;