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.h36 void StoreModuleValue(int32_t index, JSTaggedValue value);
37 void StoreModuleValue(int32_t index, JSTaggedValue value, JSTaggedValue jsFunc);
47 void StoreModuleValue(JSTaggedValue key, JSTaggedValue value);
48 void StoreModuleValue(JSTaggedValue key, JSTaggedValue value, JSTaggedValue jsFunc);
Dmodule_data_extractor.cpp118 … moduleRecord->StoreModuleValue(thread, 0, JSHandle<JSTaggedValue>(thread, jsonData)); // index = 0 in ParseJsonModule()
146 moduleRecord->StoreModuleValue(thread, 0, thread->GlobalConstants()->GetHandledUndefined()); in ParseNativeModule()
Djs_module_manager.cpp198 void ModuleManager::StoreModuleValue(int32_t index, JSTaggedValue value) in StoreModuleValue() function in panda::ecmascript::ModuleManager
205 void ModuleManager::StoreModuleValue(int32_t index, JSTaggedValue value, JSTaggedValue jsFunc) in StoreModuleValue() function in panda::ecmascript::ModuleManager
221 currentModule->StoreModuleValue(thread, index, valueHandle); in StoreModuleValueInternal()
284 void ModuleManager::StoreModuleValue(JSTaggedValue key, JSTaggedValue value) in StoreModuleValue() function in panda::ecmascript::ModuleManager
291 void ModuleManager::StoreModuleValue(JSTaggedValue key, JSTaggedValue value, JSTaggedValue jsFunc) in StoreModuleValue() function in panda::ecmascript::ModuleManager
308 currentModule->StoreModuleValue(thread, keyHandle, valueHandle); in StoreModuleValueInternal()
Djs_module_source_text.h169 void StoreModuleValue(JSThread *thread, int32_t index, const JSHandle<JSTaggedValue> &value);
172 …void StoreModuleValue(JSThread *thread, const JSHandle<JSTaggedValue> &key, const JSHandle<JSTagge…
Djs_module_source_text.cpp371 requiredModule->StoreModuleValue(thread, 0, JSNApiHelper::ToJSHandle(exportObject)); in LoadNativeModule()
1230 void SourceTextModule::StoreModuleValue(JSThread *thread, int32_t index, const JSHandle<JSTaggedVal… in StoreModuleValue() function in panda::ecmascript::SourceTextModule
1248 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.h1130 thread->GetCurrentEcmaContext()->GetModuleManager()->StoreModuleValue(index, value); in RuntimeStModuleVar()
1136 thread->GetCurrentEcmaContext()->GetModuleManager()->StoreModuleValue(index, value, jsFunc); in RuntimeStModuleVar()
1141 thread->GetCurrentEcmaContext()->GetModuleManager()->StoreModuleValue(key, value); in RuntimeStModuleVar()
1147 thread->GetCurrentEcmaContext()->GetModuleManager()->StoreModuleValue(key, value, jsFunc); in RuntimeStModuleVar()