Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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;
/llvm-project-15.0.7/lldb/source/Plugins/ExpressionParser/Clang/
H A DCppModuleConfiguration.h25 std::string m_path; variable
37 return m_path; in Get()
H A DCppModuleConfiguration.cpp20 m_path = path.str(); in TrySet()
26 if (m_path == path) in TrySet()
/llvm-project-15.0.7/lldb/tools/lldb-vscode/
H A DFifoFiles.cpp30 FifoFile::FifoFile(StringRef path) : m_path(path) {} in FifoFile()
34 unlink(m_path.c_str()); in ~FifoFile()
H A DFifoFiles.h29 std::string m_path; member
H A Dlldb-vscode.cpp1552 RunInTerminalDebugAdapterCommChannel comm_channel(comm_file.m_path); in request_runInTerminal()
1555 launch_request, g_vsc.debug_adaptor_path, comm_file.m_path); in request_runInTerminal()
/llvm-project-15.0.7/lldb/tools/debugserver/source/MacOSX/
H A DMachProcess.h170 const char *Path() const { return m_path.c_str(); } in Path()
393 std::string m_path; // A path to the executable if we have one variable
H A DMachProcess.mm514 m_child_stderr(-1), m_path(), m_args(), m_task(this), function
1374 m_path.clear();
3235 m_path = path;
3623 m_path = path;
3839 m_path = path;
/llvm-project-15.0.7/lldb/source/Host/common/
H A DEditline.cpp217 if (m_path.empty() && m_history && !m_prefix.empty()) { in GetHistoryFilePath()
231 m_path = std::string(lldb_history_file.str()); in GetHistoryFilePath()
235 if (m_path.empty()) in GetHistoryFilePath()
238 return m_path.c_str(); in GetHistoryFilePath()
309 std::string m_path; member in lldb_private::line_editor::EditlineHistory