Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DTarget.h1286 class StopHook : public UserID {
1288 StopHook(const StopHook &rhs);
1289 virtual ~StopHook() = default;
1342 StopHook(lldb::TargetSP target_sp, lldb::user_id_t uid);
1345 class StopHookCommandLine : public StopHook {
1364 : StopHook(target_sp, uid) {} in StopHookCommandLine()
1368 class StopHookScripted : public StopHook {
1392 : StopHook(target_sp, uid) {} in StopHookScripted()
1396 typedef std::shared_ptr<StopHook> StopHookSP;
1400 StopHookSP CreateStopHook(StopHook::StopHookKind kind);
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DTarget.cpp2822 Target::StopHookSP Target::CreateStopHook(StopHook::StopHookKind kind) { in CreateStopHook()
2826 case StopHook::StopHookKind::CommandBased: in CreateStopHook()
2829 case StopHook::StopHookKind::ScriptBased: in CreateStopHook()
2981 StopHook::StopHookResult this_result = in RunStopHooks()
2986 case StopHook::StopHookResult::KeepStopped: in RunStopHooks()
2995 case StopHook::StopHookResult::RequestContinue: in RunStopHooks()
2998 case StopHook::StopHookResult::AlreadyContinued: in RunStopHooks()
3691 Target::StopHook::StopHook(lldb::TargetSP target_sp, lldb::user_id_t uid) in StopHook() function in Target::StopHook
3695 Target::StopHook::StopHook(const StopHook &rhs) in StopHook() function in Target::StopHook
3703 void Target::StopHook::SetSpecifier(SymbolContextSpecifier *specifier) { in SetSpecifier()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectTarget.cpp4968 Target::StopHook::StopHookKind::CommandBased in DoExecute()
4969 : Target::StopHook::StopHookKind::ScriptBased); in DoExecute()