Home
last modified time | relevance | path

Searched refs:HostNativeProcessBase (Results 1 – 6 of 6) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Host/
H A DHostNativeProcessBase.h22 class HostNativeProcessBase {
23 DISALLOW_COPY_AND_ASSIGN(HostNativeProcessBase);
26 HostNativeProcessBase() : m_process(LLDB_INVALID_PROCESS) {} in HostNativeProcessBase() function
27 explicit HostNativeProcessBase(lldb::process_t process) in HostNativeProcessBase() function
29 virtual ~HostNativeProcessBase() {} in ~HostNativeProcessBase()
H A DHostProcess.h34 class HostNativeProcessBase; variable
52 HostNativeProcessBase &GetNativeProcess();
53 const HostNativeProcessBase &GetNativeProcess() const;
56 std::shared_ptr<HostNativeProcessBase> m_native_process;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Host/common/
H A DHostProcess.cpp42 HostNativeProcessBase &HostProcess::GetNativeProcess() { in GetNativeProcess()
46 const HostNativeProcessBase &HostProcess::GetNativeProcess() const { in GetNativeProcess()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Host/posix/
H A DHostProcessPosix.cpp27 : HostNativeProcessBase(kInvalidPosixProcess) {} in HostProcessPosix()
30 : HostNativeProcessBase(process) {} in HostProcessPosix()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Host/posix/
H A DHostProcessPosix.h21 class HostProcessPosix : public HostNativeProcessBase {
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/
H A Dmodule.modulemap25 module HostNativeProcessBase { header "Host/HostNativeProcessBase.h" export * }