reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/LineEditor/LineEditor.h
   33   LineEditor(StringRef ProgName, StringRef HistoryPath = "", FILE *In = stdin,
lib/Support/Unix/DynamicLibrary.inc
  114     EXPLICIT_SYMBOL(stdin);
tools/clang/tools/extra/clangd/tool/ClangdMain.cpp
  632         stdin, llvm::outs(),
tools/lldb/source/Core/Debugger.cpp
  701       m_input_file_sp(std::make_shared<NativeFile>(stdin, false)),
  983       in = std::make_shared<NativeFile>(stdin, false);
tools/lldb/tools/driver/Driver.cpp
  478   ::setbuf(stdin, nullptr);
  485   m_debugger.SetInputFileHandle(stdin, false);
  660     m_debugger.SetInputFileHandle(stdin, true);
  681   fclose(stdin);
tools/lldb/tools/lldb-vscode/lldb-vscode.cpp
 2615     g_vsc.input.descriptor = StreamDescriptor::from_file(fileno(stdin), false);
tools/llvm-c-test/helpers.c
   24   while (fgets(line, sizeof(line), stdin)) {
tools/llvm-symbolizer/llvm-symbolizer.cpp
  321     while (fgets(InputString, sizeof(InputString), stdin)) {
usr/include/x86_64-linux-gnu/bits/stdio.h
   46   return _IO_getc (stdin);
   72   return _IO_getc_unlocked (stdin);
utils/count/count.c
   31     NumRead = fread(Buffer, 1, sizeof(Buffer), stdin);
   38   if (!feof(stdin)) {