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.h1332 class StopHook : public UserID {
1334 StopHook(const StopHook &rhs);
1335 virtual ~StopHook() = default;
1396 StopHook(lldb::TargetSP target_sp, lldb::user_id_t uid);
1399 class StopHookCommandLine : public StopHook {
1418 : StopHook(target_sp, uid) {} in StopHookCommandLine()
1422 class StopHookScripted : public StopHook {
1445 : StopHook(target_sp, uid) {} in StopHookScripted()
1449 typedef std::shared_ptr<StopHook> StopHookSP;
1453 StopHookSP CreateStopHook(StopHook::StopHookKind kind);
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DTarget.cpp2999 Target::StopHookSP Target::CreateStopHook(StopHook::StopHookKind kind) { in CreateStopHook()
3003 case StopHook::StopHookKind::CommandBased: in CreateStopHook()
3006 case StopHook::StopHookKind::ScriptBased: in CreateStopHook()
3161 case StopHook::StopHookResult::KeepStopped: in RunStopHooks()
3167 case StopHook::StopHookResult::RequestContinue: in RunStopHooks()
3170 case StopHook::StopHookResult::NoPreference: in RunStopHooks()
3173 case StopHook::StopHookResult::AlreadyContinued: in RunStopHooks()
3847 Target::StopHook::StopHook(lldb::TargetSP target_sp, lldb::user_id_t uid) in StopHook() function in Target::StopHook
3851 Target::StopHook::StopHook(const StopHook &rhs) in StopHook() function in Target::StopHook
3859 void Target::StopHook::SetSpecifier(SymbolContextSpecifier *specifier) { in SetSpecifier()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectTarget.cpp4993 Target::StopHook::StopHookKind::CommandBased in DoExecute()
4994 : Target::StopHook::StopHookKind::ScriptBased); in DoExecute()