Searched refs:funcRef (Results 1 – 4 of 4) sorted by relevance
/arkcompiler/toolchain/tooling/agent/ |
D | debugger_impl.cpp | 652 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 890 …funcRef = 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/ |
D | debugger_api.h | 123 static Local<JSValueRef> EvaluateViaFuncCall(EcmaVM *ecmaVm, Local<FunctionRef> funcRef,
|
D | debugger_api.cpp | 775 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/ |
D | js_module_source_text.cpp | 364 Local<FunctionRef> funcRef = maybeFuncRef; in LoadNativeModule() local 365 …auto exportObject = funcRef->Call(vm, JSValueRef::Undefined(vm), arguments.data(), arguments.size(… in LoadNativeModule()
|