Lines Matching defs:thread
31 JSTaggedValue DynamicImport::ExecuteNativeOrJsonModule(JSThread *thread, const CString &specifierString,
37 ModuleManager *moduleManager = thread->GetCurrentEcmaContext()->GetModuleManager();
38 JSMutableHandle<JSTaggedValue> requiredModule(thread, thread->GlobalConstants()->GetUndefined());
42 ModuleDeregister::ReviseLoadedModuleCount(thread, specifierString);
47 JSHandle<SourceTextModule> moduleRecord(thread, thread->GlobalConstants()->GetUndefined());
53 if (!SourceTextModule::LoadNativeModule(thread, moduleRecord, moduleType)) {
59 thread, jsPandaFile, jsPandaFile->GetJSPandaFileDesc(), specifierString));
64 thread->GetEcmaVM()->PushToDeregisterModuleList(specifierString);
68 JSHandle<JSTaggedValue> moduleNamespace = SourceTextModule::GetModuleNamespace(thread,
70 RETURN_VALUE_IF_ABRUPT_COMPLETION(thread, BuiltinsPromiseJob::CatchException(thread, reject));
71 JSHandle<JSTaggedValue> undefined = thread->GlobalConstants()->GetHandledUndefined();
73 EcmaInterpreter::NewRuntimeCallInfo(thread,
76 RETURN_VALUE_IF_ABRUPT_COMPLETION(thread, BuiltinsPromiseJob::CatchException(thread, reject));
78 RETURN_EXCEPTION_IF_ABRUPT_COMPLETION(thread);