| /arkcompiler/ets_runtime/ecmascript/module/ |
| D | module_tools.cpp | 37 return ModuleManagerHelper::GetModuleValue(thread, resolvedModule, binding->GetIndex()); in GetModuleValueFromIndexBindingForLog() 50 return ModuleManagerHelper::GetModuleValue(thread, resolvedModule, binding->GetBindingName()); in GetModuleValueFromRecordBindingForLog() 75 … return ModuleManagerHelper::GetModuleValue(thread, moduleOfHotReload, binding->GetIndex()); in ProcessModuleLoadInfo() 79 return ModuleManagerHelper::GetModuleValue(thread, module, binding->GetIndex()); in ProcessModuleLoadInfo() 114 … return SourceTextModule::Cast(requiredModule.GetTaggedValue())->GetModuleValue(thread, 0, false); in ProcessModuleNameSpaceLoadInfo()
|
| D | module_manager_helper.cpp | 23 JSTaggedValue ModuleManagerHelper::GetModuleValue(JSThread *thread, JSHandle<SourceTextModule> modu… in GetModuleValue() function in panda::ecmascript::ModuleManagerHelper 29 return module->GetModuleValue(thread, index, false); in GetModuleValue() 48 exports.Update(module->GetModuleValue(thread, 0, false)); in GetNativeOrCjsExports() 70 JSTaggedValue ModuleManagerHelper::GetModuleValue(JSThread *thread, JSHandle<SourceTextModule> modu… in GetModuleValue() function in panda::ecmascript::ModuleManagerHelper 93 return GetModuleValue(thread, resolvedModule, binding->GetIndex()); in GetModuleValueFromIndexBinding() 121 return GetModuleValue(thread, resolvedModule, binding->GetBindingName()); in GetModuleValueFromRecordBinding() 170 return GetModuleValue(thread, resolvedModule, binding->GetIndex()); in GetLazyModuleValueFromIndexBinding() 198 return GetModuleValue(thread, resolvedModule, binding->GetBindingName()); in GetLazyModuleValueFromRecordBinding()
|
| D | module_manager_helper.h | 25 …static JSTaggedValue PUBLIC_API GetModuleValue(JSThread *thread, JSHandle<SourceTextModule> module… 27 static JSTaggedValue GetModuleValue(JSThread *thread,
|
| D | js_module_manager.cpp | 62 …return SourceTextModule::Cast(currentModule.GetTaggedObject())->GetModuleValue(vm_->GetJSThread(),… in GetModuleValueInner() 71 …return SourceTextModule::Cast(currentModule.GetTaggedObject())->GetModuleValue(vm_->GetJSThread(),… in GetModuleValueInner() 79 …return SourceTextModule::Cast(currentModule->GetTaggedObject())->GetModuleValue(vm_->GetJSThread()… in GetModuleValueInner() 132 … return ModuleManagerHelper::GetModuleValue(thread, moduleOfHotReload, binding->GetIndex()); in GetModuleValueOutterInternal() 135 return ModuleManagerHelper::GetModuleValue(thread, module, binding->GetIndex()); in GetModuleValueOutterInternal() 200 … return ModuleManagerHelper::GetModuleValue(thread, moduleOfHotReload, binding->GetIndex()); in GetLazyModuleValueOutterInternal() 205 return ModuleManagerHelper::GetModuleValue(thread, module, binding->GetIndex()); in GetLazyModuleValueOutterInternal() 270 …return SourceTextModule::Cast(currentModule.GetTaggedObject())->GetModuleValue(vm_->GetJSThread(),… in GetModuleValueInner() 280 …return SourceTextModule::Cast(currentModule.GetTaggedObject())->GetModuleValue(vm_->GetJSThread(),… in GetModuleValueInner() 321 return module->GetModuleValue(thread, binding->GetBindingName(), false); in GetModuleValueOutterInternal() [all …]
|
| D | js_module_namespace.cpp | 130 … result = ModuleManagerHelper::GetModuleValue(thread, module, resolvedBind->GetBindingName()); in GetProperty() 134 result = module->GetModuleValue(thread, resolvedBind->GetBindingName(), true); in GetProperty() 155 result = module->GetModuleValue(thread, resolvedBind->GetIndex(), true); in GetProperty()
|
| D | js_shared_module_manager.h | 96 …JSTaggedValue GetModuleValue(JSThread *thread, JSHandle<SourceTextModule> module, int index) const;
|
| D | js_shared_module_manager.cpp | 69 return ModuleManagerHelper::GetModuleValue(thread, resolvedModule, binding->GetIndex()); in GetSendableModuleValueImpl() 105 return ModuleManagerHelper::GetModuleValue(thread, resolvedModule, binding->GetIndex()); in GetLazySendableModuleValueImpl()
|
| D | js_module_source_text.h | 359 JSTaggedValue GetModuleValue(JSThread *thread, int32_t index, bool isThrow); 362 JSTaggedValue GetModuleValue(JSThread *thread, JSTaggedValue key, bool isThrow);
|
| D | js_module_source_text.cpp | 214 JSHandle<JSTaggedValue> nativeExports(thread, nativeModule->GetModuleValue(thread, 0, false)); in ResolveNativeStarExport() 1374 JSTaggedValue SourceTextModule::GetModuleValue(JSThread *thread, int32_t index, bool isThrow) in GetModuleValue() function in panda::ecmascript::SourceTextModule 1389 JSTaggedValue SourceTextModule::GetModuleValue(JSThread *thread, JSTaggedValue key, bool isThrow) in GetModuleValue() function in panda::ecmascript::SourceTextModule
|
| /arkcompiler/toolchain/tooling/backend/ |
| D | debugger_executor.cpp | 100 value = GetModuleValue(vm, frameHandler, name); in GetValue() 206 Local<JSValueRef> DebuggerExecutor::GetModuleValue(const EcmaVM *vm, const FrameHandler *frameHandl… in GetModuleValue() function in panda::ecmascript::tooling::DebuggerExecutor 219 result = DebuggerApi::GetModuleValue(vm, currentModule, varName); in GetModuleValue()
|
| D | debugger_executor.h | 49 …static Local<JSValueRef> GetModuleValue(const EcmaVM *vm, const FrameHandler *frameHandler, Local<…
|
| /arkcompiler/ets_runtime/ecmascript/module/tests/ |
| D | ecma_module_test.cpp | 176 JSTaggedValue loadValue = module->GetModuleValue(thread, loadKey.GetTaggedValue(), false); in HWTEST_F_L0() 188 HWTEST_F_L0(EcmaModuleTest, GetModuleValue) in HWTEST_F_L0() argument 208 moduleExport->GetModuleValue(thread, exportLocalNameHandle.GetTaggedValue(), false); in HWTEST_F_L0() 259 JSTaggedValue loadValue1 = module->GetModuleValue(thread, loadKey1.GetTaggedValue(), false); in HWTEST_F_L0() 264 JSTaggedValue loadValue2 = module->GetModuleValue(thread, loadKey2.GetTaggedValue(), false); in HWTEST_F_L0() 1267 JSTaggedValue loadValue = module->GetModuleValue(thread, loadKey.GetTaggedValue(), false); in HWTEST_F_L0() 1268 JSTaggedValue loadValue1 = module->GetModuleValue(thread, index, false); in HWTEST_F_L0()
|
| /arkcompiler/ets_runtime/ecmascript/debugger/ |
| D | debugger_api.h | 120 …static Local<JSValueRef> GetModuleValue(const EcmaVM *ecmaVm, const JSHandle<JSTaggedValue> &curre…
|
| D | debugger_api.cpp | 605 Local<JSValueRef> DebuggerApi::GetModuleValue(const EcmaVM *ecmaVm, const JSHandle<JSTaggedValue> &… in GetModuleValue() function in panda::ecmascript::tooling::DebuggerApi 763 Local<JSValueRef> value = GetModuleValue(ecmaVm, importModule, importName); in GetIndirectExportVariables()
|
| /arkcompiler/ets_runtime/ |
| D | libark_jsruntime.map | 256 panda::ecmascript::ModuleManagerHelper::GetModuleValue*;
|
| /arkcompiler/ets_runtime/ecmascript/napi/ |
| D | jsnapi_expo.cpp | 5745 JSTaggedValue result = ecmaModule->GetModuleValue(thread, index, false); in GetExportObject() 5752 JSTaggedValue result = ecmaModule->GetModuleValue(thread, keyHandle.GetTaggedValue(), false); in GetExportObject() 5766 JSTaggedValue result = ecmaModule->GetModuleValue(thread, index, false); in GetExportObjectFromBuffer() 5773 JSTaggedValue result = ecmaModule->GetModuleValue(thread, keyHandle.GetTaggedValue(), false); in GetExportObjectFromBuffer() 5791 JSTaggedValue result = ecmaModule->GetModuleValue(thread, index, false); in GetExportObjectFromOhmUrl()
|
| /arkcompiler/ets_runtime/ecmascript/stubs/ |
| D | runtime_stubs-inl.h | 1384 return SourceTextModule::Cast(module)->GetModuleValue(thread, index, false); in RuntimeLdLocalModuleVarWithModule()
|