Home
last modified time | relevance | path

Searched refs:m_path (Results 1 – 10 of 10) sorted by relevance

/openbsd-src/gnu/llvm/lldb/tools/lldb-fuzzer/utils/
H A DTempFile.cpp16 if (!m_path.empty()) in ~TempFile()
17 sys::fs::remove(m_path.str(), true); in ~TempFile()
24 temp_file->m_path); in Create()
H A DTempFile.h21 llvm::StringRef GetPath() { return m_path.str(); } in GetPath()
24 llvm::SmallString<128> m_path;
/openbsd-src/gnu/llvm/lldb/source/Plugins/ExpressionParser/Clang/
H A DCppModuleConfiguration.h25 std::string m_path; variable
37 return m_path; in Get()
H A DCppModuleConfiguration.cpp21 m_path = path.str(); in TrySet()
27 if (m_path == path) in TrySet()
/openbsd-src/gnu/llvm/lldb/tools/lldb-vscode/
H A DFifoFiles.cpp31 FifoFile::FifoFile(StringRef path) : m_path(path) {} in FifoFile()
35 unlink(m_path.c_str()); in ~FifoFile()
H A DFifoFiles.h29 std::string m_path; member
H A Dlldb-vscode.cpp1562 RunInTerminalDebugAdapterCommChannel comm_channel(comm_file.m_path); in request_runInTerminal()
1565 launch_request, g_vsc.debug_adaptor_path, comm_file.m_path); in request_runInTerminal()
/openbsd-src/gnu/llvm/lldb/tools/debugserver/source/MacOSX/
H A DMachProcess.h171 const char *Path() const { return m_path.c_str(); } in Path()
396 std::string m_path; // A path to the executable if we have one variable
H A DMachProcess.mm513 m_child_stderr(-1), m_path(), m_args(), m_task(this), function
1380 m_path.clear();
3320 m_path = path;
3708 m_path = path;
3924 m_path = path;
/openbsd-src/gnu/llvm/lldb/source/Host/common/
H A DEditline.cpp218 if (m_path.empty() && m_history && !m_prefix.empty()) { in GetHistoryFilePath()
232 m_path = std::string(lldb_history_file.str()); in GetHistoryFilePath()
236 if (m_path.empty()) in GetHistoryFilePath()
239 return m_path.c_str(); in GetHistoryFilePath()
310 std::string m_path; member in lldb_private::line_editor::EditlineHistory