Home
last modified time | relevance | path

Searched refs:openFile (Results 1 – 19 of 19) sorted by relevance

/openbsd-src/gnu/llvm/lld/MachO/
H A DLTO.cpp37 static std::unique_ptr<raw_fd_ostream> openFile(StringRef file) { in openFile() function
95 indexFile = openFile(config->thinLTOIndexOnlyArg); in BitcodeCompiler()
183 std::unique_ptr<raw_fd_ostream> os = openFile(path + ".thinlto.bc"); in thinLTOCreateEmptyIndexFiles()
191 openFile(path + ".imports"); in thinLTOCreateEmptyIndexFiles()
224 openFile(path + ".thinlto.bc"); in compile()
226 openFile(path + ".imports"); in compile()
H A DWriter.cpp59 void openFile();
1135 void Writer::openFile() { in openFile() function in Writer
1254 openFile(); in writeOutputFile()
/openbsd-src/gnu/llvm/lld/ELF/
H A DLTO.cpp45 static std::unique_ptr<raw_fd_ostream> openFile(StringRef file) { in openFile() function
66 return openFile(file); in openLTOOutputFile()
194 indexFile = openFile(config->thinLTOIndexOnlyArg); in BitcodeCompiler()
307 std::unique_ptr<raw_fd_ostream> os = openFile(path + ".thinlto.bc"); in thinLTOCreateEmptyIndexFiles()
315 openFile(path + ".imports"); in thinLTOCreateEmptyIndexFiles()
349 openFile(path + ".thinlto.bc"); in compile()
351 openFile(path + ".imports"); in compile()
H A DWriter.cpp75 void openFile();
578 openFile(); in run()
2857 template <class ELFT> void Writer<ELFT>::openFile() { in openFile() function in Writer
/openbsd-src/gnu/llvm/lld/COFF/
H A DLTO.cpp46 static std::unique_ptr<raw_fd_ostream> openFile(StringRef file) { in openFile() function
107 indexFile = openFile(ctx.config.thinLTOIndexOnlyArg); in BitcodeCompiler()
194 openFile(path + ".thinlto.bc"); in compile()
196 openFile(path + ".imports"); in compile()
H A DWriter.cpp226 void openFile(StringRef outputPath);
674 openFile(ctx.config.outputFile); in run()
1615 void Writer::openFile(StringRef path) { in openFile() function in Writer
/openbsd-src/gnu/llvm/clang/lib/Basic/
H A DFileManager.cpp198 FileManager::getFile(StringRef Filename, bool openFile, bool CacheFailure) { in getFile() argument
199 auto Result = getFileRef(Filename, openFile, CacheFailure); in getFile()
206 FileManager::getFileRef(StringRef Filename, bool openFile, bool CacheFailure) { in getFileRef() argument
252 openFile ? &F : nullptr); in getFileRef()
263 assert((openFile || !F) && "undesired open file"); in getFileRef()
364 } else if (!openFile) { in getFileRef()
/openbsd-src/gnu/llvm/llvm/lib/ToolDrivers/llvm-dlltool/
H A DDlltoolDriver.cpp61 std::unique_ptr<MemoryBuffer> openFile(const Twine &Path) { in openFile() function
145 openFile(Args.getLastArg(OPT_d)->getValue()); in dlltoolDriverMain()
/openbsd-src/gnu/llvm/llvm/tools/llvm-gsymutil/
H A Dllvm-gsymutil.cpp496 CurrentGsym = GsymReader::openFile(GSYMPath); in main()
520 auto Gsym = GsymReader::openFile(GSYMPath); in main()
/openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/GSYM/
H A DGsymReader.h77 static llvm::Expected<GsymReader> openFile(StringRef Path);
/openbsd-src/gnu/llvm/lldb/tools/lldb-test/
H A Dlldb-test.cpp78 std::unique_ptr<MemoryBuffer> openFile(const std::string &Filename);
352 std::unique_ptr<MemoryBuffer> opts::openFile(const std::string &Filename) { in openFile() function in opts
418 std::unique_ptr<MemoryBuffer> MB = opts::openFile(breakpoint::CommandFile); in evaluateBreakpoints()
1161 std::unique_ptr<MemoryBuffer> MB = opts::openFile(irmemorymap::CommandFile); in evaluateMemoryMapCommands()
/openbsd-src/gnu/llvm/llvm/include/llvm/Support/
H A DFileSystem.h965 std::error_code openFile(const Twine &Name, int &ResultFD,
1068 return openFile(Name, ResultFD, Disp, FA_Write, Flags, Mode);
1110 return openFile(Name, ResultFD, Disp, FA_Write | FA_Read, Flags, Mode);
/openbsd-src/gnu/llvm/lld/wasm/
H A DWriter.cpp56 void openFile();
1684 openFile(); in run()
1701 void Writer::openFile() { in openFile() function in lld::wasm::Writer
/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/GSYM/
H A DGsymReader.cpp34 llvm::Expected<GsymReader> GsymReader::openFile(StringRef Filename) { in openFile() function in GsymReader
H A DDwarfTransformer.cpp502 auto Gsym = GsymReader::openFile(GsymPath); in verify()
/openbsd-src/gnu/llvm/llvm/lib/Support/Unix/
H A DPath.inc1010 std::error_code openFile(const Twine &Name, int &ResultFD,
1119 std::error_code EC = openFile(Name, FD, Disp, Access, Flags, Mode);
1129 openFile(Name, ResultFD, CD_OpenExisting, FA_Read, Flags, 0666);
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/FreeBSD/
H A DNativeProcessFreeBSD.cpp1042 openFile(path, pc.pc_fd, CD_CreateNew, FA_Write, OF_None)) { in SaveCore()
/openbsd-src/gnu/llvm/llvm/lib/Support/Windows/
H A DPath.inc1202 std::error_code openFile(const Twine &Name, int &ResultFD,
/openbsd-src/gnu/llvm/llvm/docs/
H A DCodingStandards.rst1101 and start with a lower case letter (e.g. ``openFile()`` or ``isFoo()``).