Home
last modified time | relevance | path

Searched refs:StoreModuleValue (Results 1 – 7 of 7) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/module/
Djs_module_manager.h37 void StoreModuleValue(int32_t index, JSTaggedValue value);
38 void StoreModuleValue(int32_t index, JSTaggedValue value, JSTaggedValue jsFunc);
48 void StoreModuleValue(JSTaggedValue key, JSTaggedValue value);
49 void StoreModuleValue(JSTaggedValue key, JSTaggedValue value, JSTaggedValue jsFunc);
Dmodule_data_extractor.cpp121 … moduleRecord->StoreModuleValue(thread, 0, JSHandle<JSTaggedValue>(thread, jsonData)); // index = 0 in ParseJsonModule()
149 moduleRecord->StoreModuleValue(thread, 0, thread->GlobalConstants()->GetHandledUndefined()); in ParseNativeModule()
Djs_module_manager.cpp239 void ModuleManager::StoreModuleValue(int32_t index, JSTaggedValue value) in StoreModuleValue() function in panda::ecmascript::ModuleManager
246 void ModuleManager::StoreModuleValue(int32_t index, JSTaggedValue value, JSTaggedValue jsFunc) in StoreModuleValue() function in panda::ecmascript::ModuleManager
262 currentModule->StoreModuleValue(thread, index, valueHandle); in StoreModuleValueInternal()
325 void ModuleManager::StoreModuleValue(JSTaggedValue key, JSTaggedValue value) in StoreModuleValue() function in panda::ecmascript::ModuleManager
332 void ModuleManager::StoreModuleValue(JSTaggedValue key, JSTaggedValue value, JSTaggedValue jsFunc) in StoreModuleValue() function in panda::ecmascript::ModuleManager
349 currentModule->StoreModuleValue(thread, keyHandle, valueHandle); in StoreModuleValueInternal()
Djs_module_source_text.h211 void StoreModuleValue(JSThread *thread, int32_t index, const JSHandle<JSTaggedValue> &value);
214 …void StoreModuleValue(JSThread *thread, const JSHandle<JSTaggedValue> &key, const JSHandle<JSTagge…
Djs_module_source_text.cpp392 requiredModule->StoreModuleValue(thread, 0, JSNApiHelper::ToJSHandle(exportObject)); in LoadNativeModule()
1439 void SourceTextModule::StoreModuleValue(JSThread *thread, int32_t index, const JSHandle<JSTaggedVal… in StoreModuleValue() function in panda::ecmascript::SourceTextModule
1457 void SourceTextModule::StoreModuleValue(JSThread *thread, const JSHandle<JSTaggedValue> &key, in StoreModuleValue() function in panda::ecmascript::SourceTextModule
/arkcompiler/ets_runtime/ecmascript/module/tests/
Decma_module_test.cpp148 HWTEST_F_L0(EcmaModuleTest, StoreModuleValue) in HWTEST_F_L0() argument
164 module->StoreModuleValue(thread, storeKey, valueHandle); in HWTEST_F_L0()
196 moduleExport->StoreModuleValue(thread, exportLocalNameHandle, exportValueHandle); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/stubs/
Druntime_stubs-inl.h1238 thread->GetCurrentEcmaContext()->GetModuleManager()->StoreModuleValue(index, value); in RuntimeStModuleVar()
1244 thread->GetCurrentEcmaContext()->GetModuleManager()->StoreModuleValue(index, value, jsFunc); in RuntimeStModuleVar()
1249 thread->GetCurrentEcmaContext()->GetModuleManager()->StoreModuleValue(key, value); in RuntimeStModuleVar()
1255 thread->GetCurrentEcmaContext()->GetModuleManager()->StoreModuleValue(key, value, jsFunc); in RuntimeStModuleVar()