Home
last modified time | relevance | path

Searched refs:nativeAddress (Results 1 – 12 of 12) sorted by relevance

/arkcompiler/toolchain/tooling/backend/
Djs_pt_hooks.cpp82 void JSPtHooks::NativeCalling(const void *nativeAddress) in NativeCalling() argument
84 LOG_DEBUGGER(INFO) << "JSPtHooks: NativeCalling, addr = " << nativeAddress; in NativeCalling()
88 debugger_->NotifyNativeCalling(nativeAddress); in NativeCalling()
Djs_pt_hooks.h38 void NativeCalling(const void *nativeAddress) override;
/arkcompiler/ets_runtime/ecmascript/debugger/
Dnotification_manager.h40 virtual void NativeCalling(const void *nativeAddress) = 0;
85 void NativeCallingEvent(const void *nativeAddress) const in NativeCallingEvent() argument
88 listener_->NativeCalling(nativeAddress); in NativeCallingEvent()
Djs_debugger.h144 void NativeCalling(const void *nativeAddress) override in NativeCalling() argument
149 hooks_->NativeCalling(nativeAddress); in NativeCalling()
Djs_debugger_interface.h87 virtual void NativeCalling(const void *nativeAddress) = 0;
/arkcompiler/toolchain/tooling/test/utils/
Dtest_hooks.h106 void NativeCalling([[maybe_unused]] const void *nativeAddress) override {} in NativeCalling() argument
/arkcompiler/toolchain/tooling/agent/
Ddebugger_impl.h46 void NotifyNativeCalling(const void *nativeAddress);
Ddebugger_impl.cpp247 void DebuggerImpl::NotifyNativeCalling(const void *nativeAddress) in NotifyNativeCalling() argument
252 nativeCalling.SetNativeAddress(nativeAddress); in NotifyNativeCalling()
/arkcompiler/toolchain/tooling/test/
Ddebugger_events_test.cpp126 int64_t nativeAddress; in HWTEST_F_L0() local
127 ASSERT_EQ(params->GetInt64("nativeAddress", &nativeAddress), Result::SUCCESS); in HWTEST_F_L0()
/arkcompiler/toolchain/tooling/base/
Dpt_events.h252 NativeCalling &SetNativeAddress(const void *nativeAddress) in SetNativeAddress() argument
254 nativeAddress_ = nativeAddress; in SetNativeAddress()
/arkcompiler/ets_runtime/ecmascript/napi/include/
Djsnapi.h1356 static void NotifyNativeCalling(const EcmaVM *vm, const void *nativeAddress);
/arkcompiler/ets_runtime/ecmascript/napi/
Djsnapi.cpp526 …:NotifyNativeCalling([[maybe_unused]] const EcmaVM *vm, [[maybe_unused]] const void *nativeAddress) in NotifyNativeCalling() argument
530 vm->GetJsDebuggerManager()->GetNotificationManager()->NativeCallingEvent(nativeAddress); in NotifyNativeCalling()