Home
last modified time | relevance | path

Searched refs:LoadNativeModule (Results 1 – 10 of 10) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/module/
Djs_dynamic_import.cpp53 if (!SourceTextModule::LoadNativeModule(thread, moduleRecord, moduleType)) { in ExecuteNativeOrJsonModule()
Dnapi_module_loader.cpp58 JSHandle<JSTaggedValue> moduleHandle = moduleManager->LoadNativeModule(thread, requestPath); in LoadModuleNameSpaceWithPath()
Djs_module_manager.h86 JSHandle<JSTaggedValue> LoadNativeModule(JSThread *thread, const CString &key);
Djs_module_manager.cpp754 JSHandle<JSTaggedValue> ModuleManager::LoadNativeModule(JSThread *thread, const CString &key) in LoadNativeModule() function in panda::ecmascript::ModuleManager
794 if (!SourceTextModule::LoadNativeModule(thread, nativeModule, nativeModule->GetTypes())) { in ExecuteNativeModule()
806 if (!SourceTextModule::LoadNativeModule(thread, nativeModule, moduleType)) { in ExecuteNativeModule()
Djs_module_source_text.h176 static bool LoadNativeModule(JSThread *thread, const JSHandle<SourceTextModule> &requiredModule,
Djs_module_source_text.cpp208 if (!LoadNativeModule(thread, nativeModule, moduleType)) { in ResolveNativeStarExport()
440 bool SourceTextModule::LoadNativeModule(JSThread *thread, const JSHandle<SourceTextModule> &require… in LoadNativeModule() function in panda::ecmascript::SourceTextModule
473 if (!SourceTextModule::LoadNativeModule(thread, nativeModule, moduleType)) { in EvaluateNativeModule()
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_global.h59 V("loadNativeModule", LoadNativeModule, 0, INVALID) \
126 static JSTaggedValue LoadNativeModule(EcmaRuntimeCallInfo *msg);
Dbuiltins_global.cpp713 JSTaggedValue BuiltinsGlobal::LoadNativeModule(EcmaRuntimeCallInfo *msg) in LoadNativeModule() function in panda::ecmascript::builtins::BuiltinsGlobal
Dbuiltins.cpp447 SetFunction(env, globalObject, "loadNativeModule", Global::LoadNativeModule, 0); in InitializeGlobalObject()
/arkcompiler/ets_runtime/ecmascript/napi/
Djsnapi_expo.cpp5733 JSHandle<JSTaggedValue> exportObj = moduleManager->LoadNativeModule(thread, key.c_str()); in ExecuteNativeModule()