Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/API/
DSBAttachInfo.cpp126 bool SBAttachInfo::GetWaitForLaunch() { in GetWaitForLaunch() function in SBAttachInfo
127 LLDB_RECORD_METHOD_NO_ARGS(bool, SBAttachInfo, GetWaitForLaunch); in GetWaitForLaunch()
129 return m_opaque_sp->GetWaitForLaunch(); in GetWaitForLaunch()
283 LLDB_REGISTER_METHOD(bool, SBAttachInfo, GetWaitForLaunch, ()); in RegisterMethods()
/external/llvm-project/lldb/bindings/interface/
DSBAttachInfo.i37 GetWaitForLaunch ();
/external/llvm-project/lldb/include/lldb/API/
DSBAttachInfo.h75 bool GetWaitForLaunch();
/external/llvm-project/lldb/include/lldb/Target/
DProcess.h130 bool GetWaitForLaunch() const { return m_wait_for_launch; } in GetWaitForLaunch() function
/external/llvm-project/lldb/source/Plugins/Process/gdb-remote/
DProcessGDBRemote.cpp1176 if (attach_info.GetWaitForLaunch()) { in DoAttachToProcessWithName()
/external/llvm-project/lldb/source/Target/
DProcess.cpp2874 const bool wait_for_launch = attach_info.GetWaitForLaunch(); in Attach()