Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Host/common/
DNativeProcessProtocol.cpp299 NativeDelegate &native_delegate) { in RegisterNativeDelegate() argument
301 if (llvm::is_contained(m_delegates, &native_delegate)) in RegisterNativeDelegate()
304 m_delegates.push_back(&native_delegate); in RegisterNativeDelegate()
305 native_delegate.InitializeDelegate(this); in RegisterNativeDelegate()
310 NativeDelegate &native_delegate) { in UnregisterNativeDelegate() argument
315 remove(m_delegates.begin(), m_delegates.end(), &native_delegate), in UnregisterNativeDelegate()
328 for (auto native_delegate : m_delegates) in SynchronouslyNotifyProcessStateChanged() local
329 native_delegate->ProcessStateChanged(this, state); in SynchronouslyNotifyProcessStateChanged()
353 for (auto native_delegate : m_delegates) in NotifyDidExec() local
354 native_delegate->DidExec(this); in NotifyDidExec()
/external/llvm-project/lldb/include/lldb/Host/common/
DNativeProcessProtocol.h242 bool RegisterNativeDelegate(NativeDelegate &native_delegate);
253 bool UnregisterNativeDelegate(NativeDelegate &native_delegate);
283 Launch(ProcessLaunchInfo &launch_info, NativeDelegate &native_delegate,
305 Attach(lldb::pid_t pid, NativeDelegate &native_delegate,
/external/llvm-project/lldb/source/Plugins/Process/FreeBSDRemote/
DNativeProcessFreeBSD.h33 Launch(ProcessLaunchInfo &launch_info, NativeDelegate &native_delegate,
37 Attach(lldb::pid_t pid, NativeDelegate &native_delegate,
DNativeProcessFreeBSD.cpp55 NativeDelegate &native_delegate, in Launch() argument
93 pid, launch_info.GetPTY().ReleasePrimaryFileDescriptor(), native_delegate, in Launch()
109 lldb::pid_t pid, NativeProcessProtocol::NativeDelegate &native_delegate, in Attach() argument
122 pid, -1, native_delegate, Info.GetArchitecture(), mainloop)); in Attach()
/external/llvm-project/lldb/source/Plugins/Process/NetBSD/
DNativeProcessNetBSD.h33 Launch(ProcessLaunchInfo &launch_info, NativeDelegate &native_delegate,
37 Attach(lldb::pid_t pid, NativeDelegate &native_delegate,
DNativeProcessNetBSD.cpp60 NativeDelegate &native_delegate, in Launch() argument
98 pid, launch_info.GetPTY().ReleasePrimaryFileDescriptor(), native_delegate, in Launch()
114 lldb::pid_t pid, NativeProcessProtocol::NativeDelegate &native_delegate, in Attach() argument
127 pid, -1, native_delegate, Info.GetArchitecture(), mainloop)); in Attach()
/external/llvm-project/lldb/source/Plugins/Process/Windows/Common/
DNativeProcessWindows.h37 Launch(ProcessLaunchInfo &launch_info, NativeDelegate &native_delegate,
41 Attach(lldb::pid_t pid, NativeDelegate &native_delegate,
DNativeProcessWindows.cpp584 NativeProcessProtocol::NativeDelegate &native_delegate, in Launch() argument
588 new NativeProcessWindows(launch_info, native_delegate, E)); in Launch()
596 lldb::pid_t pid, NativeProcessProtocol::NativeDelegate &native_delegate, in Attach() argument
601 new NativeProcessWindows(pid, -1, native_delegate, E)); in Attach()
/external/llvm-project/lldb/source/Plugins/Process/Linux/
DNativeProcessLinux.h44 Launch(ProcessLaunchInfo &launch_info, NativeDelegate &native_delegate,
48 Attach(lldb::pid_t pid, NativeDelegate &native_delegate,
DNativeProcessLinux.cpp213 NativeDelegate &native_delegate, in Launch() argument
259 pid, launch_info.GetPTY().ReleasePrimaryFileDescriptor(), native_delegate, in Launch()
265 lldb::pid_t pid, NativeProcessProtocol::NativeDelegate &native_delegate, in Attach() argument
282 pid, -1, native_delegate, Info.GetArchitecture(), mainloop, *tids_or)); in Attach()