Home
last modified time | relevance | path

Searched refs:Open (Results 1 – 25 of 118) sorted by relevance

12345

/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandOptionsProcessLaunch.cpp45 if (action.Open(STDIN_FILENO, FileSpec(option_arg), true, false)) in SetOptionValue()
53 if (action.Open(STDOUT_FILENO, FileSpec(option_arg), false, true)) in SetOptionValue()
61 if (action.Open(STDERR_FILENO, FileSpec(option_arg), false, true)) in SetOptionValue()
74 if (action.Open(STDIN_FILENO, dev_null, true, false)) in SetOptionValue()
76 if (action.Open(STDOUT_FILENO, dev_null, false, true)) in SetOptionValue()
78 if (action.Open(STDERR_FILENO, dev_null, false, true)) in SetOptionValue()
/llvm-project-15.0.7/clang-tools-extra/pseudo/lib/
H A DBracket.cpp76 enum Direction : bool { Open, Close } Dir; enumerator
94 Add(Tok, Bracket::Paren, Bracket::Open); in findBrackets()
100 Add(Tok, Bracket::Brace, Bracket::Open); in findBrackets()
106 Add(Tok, Bracket::Square, Bracket::Open); in findBrackets()
131 if (Brackets[I].Dir == Bracket::Open) { in simplePairBrackets()
/llvm-project-15.0.7/lldb/unittests/Host/
H A DFileActionTest.cpp14 TEST(FileActionTest, Open) { in TEST() argument
16 Action.Open(47, FileSpec("/tmp"), /*read*/ true, /*write*/ false); in TEST()
/llvm-project-15.0.7/lldb/source/Host/common/
H A DProcessLaunchInfo.cpp50 if (file_action.Open(STDIN_FILENO, stdin_file_spec, read, write)) in ProcessLaunchInfo()
57 if (file_action.Open(STDOUT_FILENO, stdout_file_spec, read, write)) in ProcessLaunchInfo()
64 if (file_action.Open(STDERR_FILENO, stderr_file_spec, read, write)) in ProcessLaunchInfo()
92 if (file_action.Open(fd, file_spec, read, write)) { in AppendOpenFileAction()
102 if (file_action.Open(fd, FileSpec(FileSystem::DEV_NULL), read, write)) { in AppendSuppressFileAction()
H A DFileAction.cpp32 bool FileAction::Open(int fd, const FileSpec &file_spec, bool read, in Open() function in FileAction
/llvm-project-15.0.7/llvm/lib/ExecutionEngine/Orc/
H A DEPCGenericDylibManager.cpp68 {SAs.Open, rt::SimpleExecutorDylibManagerOpenWrapperName}, in CreateWithDefaultBootstrapSymbols()
79 SAs.Open, H, SAs.Instance, Path, Mode)) in open()
/llvm-project-15.0.7/compiler-rt/lib/xray/
H A Dxray_utils.cpp83 LogWriter *LogWriter::Open() XRAY_NEVER_INSTRUMENT { in Open() function in __xray::LogWriter
162 LogWriter *LogWriter::Open() XRAY_NEVER_INSTRUMENT {
H A Dxray_utils.h44 static LogWriter *Open();
/llvm-project-15.0.7/third-party/benchmark/docs/
H A Dplatform_specific_build_instructions.md35 * Open `CMake GUI`.
38 * Click `Configure`, `Generate`, `Open Project`.
/llvm-project-15.0.7/llvm/include/llvm/Demangle/
H A DUtility.h97 void printOpen(char Open = '(') {
99 *this += Open;
/llvm-project-15.0.7/libcxxabi/src/demangle/
H A DUtility.h97 void printOpen(char Open = '(') {
99 *this += Open;
/llvm-project-15.0.7/lldb/include/lldb/Host/
H A DFileAction.h34 bool Open(int fd, const FileSpec &file_spec, bool read, bool write);
H A DFileSystem.h55 int Open(const char *path, int flags, int mode);
58 Open(const FileSpec &file_spec, File::OpenOptions options,
/llvm-project-15.0.7/clang-tools-extra/clangd/index/
H A DSymbolOrigin.h24 Open = 1 << 1, // From the dynamic index of open files. enumerator
/llvm-project-15.0.7/llvm/include/llvm/ExecutionEngine/Orc/
H A DEPCGenericDylibManager.h34 ExecutorAddr Open; member
/llvm-project-15.0.7/lldb/source/Interpreter/
H A DScriptInterpreter.cpp155 auto nullin = FileSystem::Instance().Open(FileSpec(FileSystem::DEV_NULL), in Create()
160 auto nullout = FileSystem::Instance().Open(FileSpec(FileSystem::DEV_NULL), in Create()
/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Checkers/
H A DUnixAPIChecker.cpp32 Open, enumerator
144 CheckOpenVariant(C, CE, OpenVariant::Open); in CheckOpen()
160 case OpenVariant::Open: in CheckOpenVariant()
/llvm-project-15.0.7/flang/lib/Parser/
H A Dparsing.cpp40 sourceFile = allSources.Open(path, fileError); in Prescan()
43 allSources.Open(path, fileError, "."s /*prepend to search path*/); in Prescan()
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/android/
H A Dcloexec-open.rst9 sensitive data. Open-like functions including ``open()``, ``openat()``, and
/llvm-project-15.0.7/lldb/source/Core/
H A DStreamFile.cpp36 auto file = FileSystem::Instance().Open(FileSpec(path), options, permissions); in StreamFile()
/llvm-project-15.0.7/lldb/source/Host/posix/
H A DFileSystemPosix.cpp78 int FileSystem::Open(const char *path, int flags, int mode) { in Open() function in FileSystem
/llvm-project-15.0.7/flang/include/flang/Parser/
H A Dsource.h55 bool Open(std::string path, llvm::raw_ostream &error);
/llvm-project-15.0.7/llvm/lib/Target/Hexagon/
H A DHexagonScheduleV69.td5 // This file is distributed under the University of Illinois Open Source
/llvm-project-15.0.7/flang/unittests/Frontend/
H A DCompilerInstanceTest.cpp50 compInst.getAllSources().Open(testFilePath, errorStream); in TEST()
/llvm-project-15.0.7/flang/include/flang/Common/
H A DFortran.h46 ENUM_CLASS(IoStmtKind, None, Backspace, Close, Endfile, Flush, Inquire, Open,

12345