Home
last modified time | relevance | path

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

/arkcompiler/toolchain/tooling/test/
Djs_pt_hooks_test.cpp64 std::unique_ptr<JSPtHooks> jspthooks = std::make_unique<JSPtHooks>(debugger.get()); in HWTEST_F_L0()
75 std::unique_ptr<JSPtHooks> jspthooks = std::make_unique<JSPtHooks>(debugger.get()); in HWTEST_F_L0()
83 std::unique_ptr<JSPtHooks> jspthooks = std::make_unique<JSPtHooks>(debugger.get()); in HWTEST_F_L0()
94 std::unique_ptr<JSPtHooks> jspthooks = std::make_unique<JSPtHooks>(debugger.get()); in HWTEST_F_L0()
104 std::unique_ptr<JSPtHooks> jspthooks = std::make_unique<JSPtHooks>(debugger.get()); in HWTEST_F_L0()
112 std::unique_ptr<JSPtHooks> jspthooks = std::make_unique<JSPtHooks>(debugger.get()); in HWTEST_F_L0()
120 std::unique_ptr<JSPtHooks> jspthooks = std::make_unique<JSPtHooks>(debugger.get()); in HWTEST_F_L0()
/arkcompiler/toolchain/tooling/backend/
Djs_pt_hooks.h28 class JSPtHooks : public PtHooks {
30 explicit JSPtHooks(DebuggerImpl *debugger) : debugger_(debugger) {} in JSPtHooks() function
31 ~JSPtHooks() override = default;
43 NO_COPY_SEMANTIC(JSPtHooks);
44 NO_MOVE_SEMANTIC(JSPtHooks);
Djs_pt_hooks.cpp21 void JSPtHooks::DebuggerStmt(const JSPtLocation &location) in DebuggerStmt()
29 void JSPtHooks::Breakpoint(const JSPtLocation &location) in Breakpoint()
38 void JSPtHooks::Exception([[maybe_unused]] const JSPtLocation &location) in Exception()
46 bool JSPtHooks::SingleStep(const JSPtLocation &location) in SingleStep()
70 void JSPtHooks::LoadModule(std::string_view pandaFileName, std::string_view entryPoint) in LoadModule()
82 void JSPtHooks::NativeCalling(const void *nativeAddress) in NativeCalling()
/arkcompiler/toolchain/test/fuzztest/backend/backendbreakpoint_fuzzer/
Dbackendbreakpoint_fuzzer.cpp53 std::unique_ptr<JSPtHooks> jspthooks = std::make_unique<JSPtHooks>(debugger.get()); in BackendBreakpointFuzzTest()
/arkcompiler/toolchain/test/fuzztest/backend/backendnativecalling_fuzzer/
Dbackendnativecalling_fuzzer.cpp53 std::unique_ptr<JSPtHooks> jspthooks = std::make_unique<JSPtHooks>(debugger.get()); in BackendNativeCallingFuzzTest()
/arkcompiler/toolchain/test/fuzztest/backend/backendexception_fuzzer/
Dbackendexception_fuzzer.cpp53 std::unique_ptr<JSPtHooks> jspthooks = std::make_unique<JSPtHooks>(debugger.get()); in BackendExceptionFuzzTest()
/arkcompiler/toolchain/test/fuzztest/backend/backendsinglestep_fuzzer/
Dbackendsinglestep_fuzzer.cpp53 std::unique_ptr<JSPtHooks> jspthooks = std::make_unique<JSPtHooks>(debugger.get()); in BackendSingleStepFuzzTest()
/arkcompiler/toolchain/test/fuzztest/backend/backendloadmodule_fuzzer/
Dbackendloadmodule_fuzzer.cpp53 std::unique_ptr<JSPtHooks> jspthooks = std::make_unique<JSPtHooks>(debugger.get()); in BackendLoadModuleFuzzTest()
/arkcompiler/toolchain/tooling/agent/
Ddebugger_impl.h207 std::unique_ptr<JSPtHooks> hooks_ {nullptr};
223 friend class JSPtHooks; variable
Ddebugger_impl.cpp46 hooks_ = std::make_unique<JSPtHooks>(this); in DebuggerImpl()