| /llvm-project-15.0.7/lldb/source/Commands/ |
| H A D | CommandOptionsProcessLaunch.cpp | 45 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 D | Bracket.cpp | 76 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 D | FileActionTest.cpp | 14 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 D | ProcessLaunchInfo.cpp | 50 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 D | FileAction.cpp | 32 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 D | EPCGenericDylibManager.cpp | 68 {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 D | xray_utils.cpp | 83 LogWriter *LogWriter::Open() XRAY_NEVER_INSTRUMENT { in Open() function in __xray::LogWriter 162 LogWriter *LogWriter::Open() XRAY_NEVER_INSTRUMENT {
|
| H A D | xray_utils.h | 44 static LogWriter *Open();
|
| /llvm-project-15.0.7/third-party/benchmark/docs/ |
| H A D | platform_specific_build_instructions.md | 35 * Open `CMake GUI`. 38 * Click `Configure`, `Generate`, `Open Project`.
|
| /llvm-project-15.0.7/llvm/include/llvm/Demangle/ |
| H A D | Utility.h | 97 void printOpen(char Open = '(') { 99 *this += Open;
|
| /llvm-project-15.0.7/libcxxabi/src/demangle/ |
| H A D | Utility.h | 97 void printOpen(char Open = '(') { 99 *this += Open;
|
| /llvm-project-15.0.7/lldb/include/lldb/Host/ |
| H A D | FileAction.h | 34 bool Open(int fd, const FileSpec &file_spec, bool read, bool write);
|
| H A D | FileSystem.h | 55 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 D | SymbolOrigin.h | 24 Open = 1 << 1, // From the dynamic index of open files. enumerator
|
| /llvm-project-15.0.7/llvm/include/llvm/ExecutionEngine/Orc/ |
| H A D | EPCGenericDylibManager.h | 34 ExecutorAddr Open; member
|
| /llvm-project-15.0.7/lldb/source/Interpreter/ |
| H A D | ScriptInterpreter.cpp | 155 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 D | UnixAPIChecker.cpp | 32 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 D | parsing.cpp | 40 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 D | cloexec-open.rst | 9 sensitive data. Open-like functions including ``open()``, ``openat()``, and
|
| /llvm-project-15.0.7/lldb/source/Core/ |
| H A D | StreamFile.cpp | 36 auto file = FileSystem::Instance().Open(FileSpec(path), options, permissions); in StreamFile()
|
| /llvm-project-15.0.7/lldb/source/Host/posix/ |
| H A D | FileSystemPosix.cpp | 78 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 D | source.h | 55 bool Open(std::string path, llvm::raw_ostream &error);
|
| /llvm-project-15.0.7/llvm/lib/Target/Hexagon/ |
| H A D | HexagonScheduleV69.td | 5 // This file is distributed under the University of Illinois Open Source
|
| /llvm-project-15.0.7/flang/unittests/Frontend/ |
| H A D | CompilerInstanceTest.cpp | 50 compInst.getAllSources().Open(testFilePath, errorStream); in TEST()
|
| /llvm-project-15.0.7/flang/include/flang/Common/ |
| H A D | Fortran.h | 46 ENUM_CLASS(IoStmtKind, None, Backspace, Close, Endfile, Flush, Inquire, Open,
|