Home
last modified time | relevance | path

Searched refs:StopHook (Results 1 – 3 of 3) sorted by relevance

/external/llvm-project/lldb/include/lldb/Target/
DTarget.h1155 class StopHook : public UserID {
1157 StopHook(const StopHook &rhs);
1158 virtual ~StopHook() = default;
1211 StopHook(lldb::TargetSP target_sp, lldb::user_id_t uid);
1214 class StopHookCommandLine : public StopHook {
1233 : StopHook(target_sp, uid) {} in StopHookCommandLine()
1237 class StopHookScripted : public StopHook {
1262 : StopHook(target_sp, uid) {} in StopHookScripted()
1266 typedef std::shared_ptr<StopHook> StopHookSP;
1270 StopHookSP CreateStopHook(StopHook::StopHookKind kind);
/external/llvm-project/lldb/source/Target/
DTarget.cpp2543 Target::StopHookSP Target::CreateStopHook(StopHook::StopHookKind kind) { in CreateStopHook()
2547 case StopHook::StopHookKind::CommandBased: in CreateStopHook()
2550 case StopHook::StopHookKind::ScriptBased: in CreateStopHook()
2696 StopHook::StopHookResult this_result = in RunStopHooks()
2701 case StopHook::StopHookResult::KeepStopped: in RunStopHooks()
2710 case StopHook::StopHookResult::RequestContinue: in RunStopHooks()
2713 case StopHook::StopHookResult::AlreadyContinued: in RunStopHooks()
3223 Target::StopHook::StopHook(lldb::TargetSP target_sp, lldb::user_id_t uid) in StopHook() function in Target::StopHook
3227 Target::StopHook::StopHook(const StopHook &rhs) in StopHook() function in Target::StopHook
3235 void Target::StopHook::SetSpecifier(SymbolContextSpecifier *specifier) { in SetSpecifier()
[all …]
/external/llvm-project/lldb/source/Commands/
DCommandObjectTarget.cpp4714 Target::StopHook::StopHookKind::CommandBased in DoExecute()
4715 : Target::StopHook::StopHookKind::ScriptBased); in DoExecute()