| /src/sys/external/bsd/acpica/dist/tools/acpixtract/ |
| acpixtract.c | 69 FILE *InputFile; 85 InputFile = fopen (InputPathname, "r"); 86 if (!InputFile) 92 if (!AxIsFileAscii (InputFile)) 94 fclose (InputFile); 113 fclose (InputFile); 119 fclose (InputFile); 126 while (fgets (Gbl_LineBuffer, AX_LINE_BUFFER_SIZE, InputFile)) 197 fclose (InputFile); 267 fclose (InputFile); [all...] |
| axutils.c | 401 FILE *InputFile; 405 InputFile = fopen (InputPathname, "r"); 406 if (!InputFile) 414 while (fgets (Gbl_InstanceBuffer, AX_LINE_BUFFER_SIZE, InputFile)) 431 fclose (InputFile);
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/ |
| ExplainOutputStyle.h | 23 class InputFile; 28 ExplainOutputStyle(InputFile &File, uint64_t FileOffset); 60 InputFile &File;
|
| InputFile.h | 1 //===- InputFile.h -------------------------------------------- *- C++ --*-===// 33 class InputFile; 40 class InputFile { 41 InputFile(); 58 ~InputFile(); 59 InputFile(InputFile &&Other) = default; 61 static Expected<InputFile> open(StringRef Path, 92 explicit SymbolGroup(InputFile *File, uint32_t GroupIndex = 0); 109 const InputFile &getFile() const { return *File; [all...] |
| InputFile.cpp | 1 //===- InputFile.cpp ------------------------------------------ *- C++ --*-===// 9 #include "InputFile.h" 34 InputFile::InputFile() {} 35 InputFile::~InputFile() {} 130 SymbolGroup::SymbolGroup(InputFile *File, uint32_t GroupIndex) : File(File) { 254 Expected<InputFile> InputFile::open(StringRef Path, bool AllowUnknownFile) { 255 InputFile IF [all...] |
| TypeReferenceTracker.h | 12 #include "InputFile.h" 31 TypeReferenceTracker(InputFile &File); 54 InputFile &File;
|
| DumpOutputStyle.h | 36 class InputFile; 69 DumpOutputStyle(InputFile &File); 114 InputFile &File;
|
| /src/external/apache2/llvm/dist/llvm/tools/dsymutil/ |
| dsymutil.h | 39 StringRef InputFile, ArrayRef<std::string> Archs, 45 StringRef InputFile, ArrayRef<std::string> Archs,
|
| SymbolMap.h | 45 SymbolMapTranslator Load(StringRef InputFile, const DebugMap &Map) const;
|
| dsymutil.cpp | 430 getOutputFileName(StringRef InputFile, const DsymutilOptions &Options) { 437 return OutputLocation(std::string(InputFile)); 442 if (InputFile == "-") 444 return OutputLocation((InputFile + ".dwarf").str()); 459 std::string(InputFile == "-" ? StringRef("a.out") : InputFile); 542 for (auto &InputFile : Options.InputFiles) { 545 if (!dumpStab(Options.LinkOpts.VFS, InputFile, Options.Archs, 552 parseDebugMap(Options.LinkOpts.VFS, InputFile, Options.Archs, 557 WithColor::error() << "cannot parse the debug map for '" << InputFile [all...] |
| SymbolMap.cpp | 62 SymbolMapTranslator SymbolMapLoader::Load(StringRef InputFile, 76 sys::path::parent_path(sys::path::parent_path(InputFile))); 112 SymbolMapPath += (Twine("/") + sys::path::filename(InputFile) + "-" +
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/LTO/legacy/ |
| ThinLTOCodeGenerator.h | 255 const lto::InputFile &File); 262 const lto::InputFile &File); 269 const lto::InputFile &File); 277 const lto::InputFile &File); 283 const lto::InputFile &File); 312 std::vector<std::unique_ptr<lto::InputFile>> Modules;
|
| LTOModule.h | 159 static lto::InputFile *createInputFile(const void *buffer, size_t buffer_size, 162 static size_t getDependentLibraryCount(lto::InputFile *input); 164 static const char *getDependentLibrary(lto::InputFile *input, size_t index, size_t *size);
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/LTO/ |
| LTO.h | 104 class InputFile { 111 InputFile() = default; 125 ~InputFile(); 127 /// Create an InputFile. 128 static Expected<std::unique_ptr<InputFile>> create(MemoryBufferRef Object); 156 /// A range over the symbols in this InputFile. 165 /// Returns the path to the InputFile. 177 // Returns the only BitcodeModule from InputFile. 258 /// - Create lto::InputFile objects using lto::InputFile::create(), then us [all...] |
| /src/external/apache2/llvm/dist/llvm/examples/OrcV2Examples/LLJITWithGDBRegistrationListener/ |
| LLJITWithGDBRegistrationListener.cpp | 97 for (auto &InputFile : InputFiles) { 100 std::unique_ptr<Module> M = parseIRFile(InputFile, Err, *Ctx);
|
| /src/external/apache2/llvm/dist/clang/include/clang/Serialization/ |
| ModuleFile.h | 64 class InputFile { 73 InputFile() = default; 75 InputFile(FileEntryRef File, bool isOverridden = false, 87 static InputFile getNotFound() { 88 InputFile File; 236 std::vector<InputFile> InputFilesLoaded;
|
| /src/external/apache2/llvm/dist/llvm/tools/bugpoint/ |
| ToolRunner.cpp | 158 const std::string &InputFile, const std::string &OutputFile, 167 const std::string &InputFile, 198 return RunProgramWithTimeout(LLIPath, LLIArgs, InputFile, OutputFile, 254 const std::string &InputFile, const std::string &OutputFile, 303 const std::string &InputFile, const std::string &OutputFile, 312 const std::string &InputFile, const std::string &OutputFile, 328 return RunProgramWithTimeout(ExecutionCommand, ProgramArgs, InputFile, 484 const std::string &InputFile, 501 return cc->ExecuteProgram(OutputAsmFile, Args, *FileKind, InputFile, 546 const std::string &InputFile, const std::string &OutputFile [all...] |
| ToolRunner.h | 57 /// arguments. Standard input is specified with InputFile, and standard 64 FileType fileType, const std::string &InputFile, 72 Error MakeSharedObject(const std::string &InputFile, FileType fileType, 137 const std::string &InputFile, const std::string &OutputFile, 171 const std::string &InputFile, const std::string &OutputFile,
|
| /src/external/apache2/llvm/dist/llvm/lib/Support/ |
| Signals.cpp | 154 SmallString<32> InputFile, OutputFile; 155 sys::fs::createTemporaryFile("symbolizer-input", "", InputFD, InputFile); 157 FileRemover InputRemover(InputFile.c_str()); 168 Optional<StringRef> Redirects[] = {StringRef(InputFile),
|
| /src/external/apache2/llvm/dist/llvm/lib/LTO/ |
| ThinLTOCodeGenerator.cpp | 147 static StringMap<lto::InputFile *> 148 generateModuleMap(std::vector<std::unique_ptr<lto::InputFile>> &Modules) { 149 StringMap<lto::InputFile *> ModuleMap; 187 static std::unique_ptr<Module> loadModuleFromInput(lto::InputFile *Input, 212 StringMap<lto::InputFile *> &ModuleMap, 266 addUsedSymbolToPreservedGUID(const lto::InputFile &File, 275 static void computeGUIDPreservedSymbols(const lto::InputFile &File, 289 computeGUIDPreservedSymbols(const lto::InputFile &File, 417 StringMap<lto::InputFile *> &ModuleMap, TargetMachine &TM, 538 auto InputOrError = lto::InputFile::create(Buffer) [all...] |
| LTO.cpp | 469 InputFile::~InputFile() = default; 471 Expected<std::unique_ptr<InputFile>> InputFile::create(MemoryBufferRef Object) { 472 std::unique_ptr<InputFile> File(new InputFile); 500 StringRef InputFile::getName() const { 504 BitcodeModule &InputFile::getSingleBitcodeModule() { 533 void LTO::addModuleToGlobalRes(ArrayRef<InputFile::Symbol> Syms, 539 for (const InputFile::Symbol &Sym : Syms) [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/llvm-lto2/ |
| llvm-lto2.cpp | 322 std::unique_ptr<InputFile> Input = 323 check(InputFile::create(MB->getMemBufferRef()), F); 326 for (const InputFile::Symbol &Sym : Input->symbols()) { 403 std::unique_ptr<InputFile> Input = 404 check(InputFile::create(MB->getMemBufferRef()), std::string(F)); 422 for (const InputFile::Symbol &Sym : Input->symbols()) {
|
| /src/sys/external/bsd/acpica/dist/compiler/ |
| aslsupport.l | 193 "\nPop InputFile Stack, Fnode %p\n", Fnode); 232 * PARAMETERS: InputFile - Open file pointer 237 * DESCRIPTION: Push the InputFile onto the file stack, and point the parser 245 FILE *InputFile, 268 State = yy_create_buffer (InputFile, YY_BUF_SIZE); 272 "\nPush InputFile Stack, returning %p\n\n", InputFile); 282 yyin = InputFile;
|
| /src/external/apache2/llvm/dist/clang/lib/Frontend/ |
| ChainedIncludesSource.cpp | 139 FrontendInputFile InputFile(includes[i], IK); 140 CInvok->getFrontendOpts().Inputs.push_back(InputFile); 197 if (!Clang->InitializeSourceManager(InputFile))
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-rc/ |
| llvm-rc.cpp | 196 std::string InputFile; 372 Opts.InputFile = InputArgs.getLastArgValue(WINDRES_input).str(); 374 Opts.InputFile = FileArgs.front(); 395 deduceFormat(Opts.InputFormat, Opts.InputFile); 533 Opts.InputFile = InArgsInfo[0]; 555 SmallString<128> OutputFile(Opts.InputFile); 628 SmallString<128> InputFile(Src); 629 llvm::sys::fs::make_absolute(InputFile); 630 Params.InputFilePath = InputFile; 743 doRc(Opts.InputFile, ResFile, Opts, Argv[0]) [all...] |