Home
last modified time | relevance | path

Searched refs:funcRef (Results 1 – 4 of 4) sorted by relevance

/arkcompiler/toolchain/tooling/agent/
Ddebugger_impl.cpp652 auto funcRef = DebuggerApi::GenerateFuncFromBuffer(vm_, dest.data(), dest.size(), in EvaluateOnCallFrame() local
654 auto res = DebuggerApi::EvaluateViaFuncCall(const_cast<EcmaVM *>(vm_), funcRef, in EvaluateOnCallFrame()
883 Local<FunctionRef> funcRef = FunctionRef::Undefined(vm_); in ProcessSingleBreakpoint() local
890funcRef = DebuggerApi::GenerateFuncFromBuffer(vm_, dest.data(), dest.size(), JSPandaFile::ENTRY_FU… in ProcessSingleBreakpoint()
891 if (funcRef->IsUndefined()) { in ProcessSingleBreakpoint()
897 auto matchLocationCbFunc = [this, &funcRef](const JSPtLocation &location) -> bool { in ProcessSingleBreakpoint()
898 return DebuggerApi::SetBreakpoint(jsDebugger_, location, funcRef); in ProcessSingleBreakpoint()
/arkcompiler/ets_runtime/ecmascript/debugger/
Ddebugger_api.h123 static Local<JSValueRef> EvaluateViaFuncCall(EcmaVM *ecmaVm, Local<FunctionRef> funcRef,
Ddebugger_api.cpp775 Local<JSValueRef> DebuggerApi::EvaluateViaFuncCall(EcmaVM *ecmaVm, Local<FunctionRef> funcRef, in EvaluateViaFuncCall() argument
786 auto result = funcRef->Call(ecmaVm, JSValueRef::Undefined(ecmaVm), args.data(), args.size()); in EvaluateViaFuncCall()
/arkcompiler/ets_runtime/ecmascript/module/
Djs_module_source_text.cpp364 Local<FunctionRef> funcRef = maybeFuncRef; in LoadNativeModule() local
365 …auto exportObject = funcRef->Call(vm, JSValueRef::Undefined(vm), arguments.data(), arguments.size(… in LoadNativeModule()