Lines Matching full:entrypoint
78 …const CString &filename, std::string_view entryPoint, bool needUpdate, const ExecuteTypes &execute… in ExecuteFromAbsolutePathAbcFile() argument
83 CString entry = entryPoint.data(); in ExecuteFromAbsolutePathAbcFile()
90 std::string_view entryPoint, bool needUpdate, const ExecuteTypes &executeType) in ExecuteFromAbcFile() argument
99 std::tie(name, entry) = ParseAbcEntryPoint(thread, filename, entryPoint); in ExecuteFromAbcFile()
102 entry = entryPoint.data(); in ExecuteFromAbcFile()
110 …const void *buffer, size_t size, std::string_view entryPoint, const CString &filename, bool needUp… in ExecuteFromBuffer() argument
118 …JSPandaFileManager::GetInstance()->LoadJSPandaFile(thread, normalName, entryPoint, buffer, size, n… in ExecuteFromBuffer()
130 CString entry = entryPoint.data(); in ExecuteFromBuffer()
215 … std::string_view entryPoint, const ExecuteTypes &executeType) in Execute() argument
218 … ModuleTraceScope moduleTraceScope(thread, "JSPandaFileExecutor::Execute:" + CString(entryPoint)); in Execute()
225 result = vm->InvokeEcmaEntrypointForHotReload(jsPandaFile, entryPoint, executeType); in Execute()
230 result = vm->InvokeEcmaEntrypoint(jsPandaFile, entryPoint, executeType); in Execute()
265 …size_t size, std::string_view entryPoint, const CString &filename, bool needUpdate, void *fileMapp… in ExecuteFromBufferSecure() argument
272 LoadJSPandaFileSecure(thread, normalName, entryPoint, buffer, size, needUpdate, fileMapper); in ExecuteFromBufferSecure()
284 CString entry = entryPoint.data(); in ExecuteFromBufferSecure()
376 size_t size, const CString &filename, const CString &entryPoint) in ExecuteSecureWithOhmUrl() argument
379 ", entryPoint:" << entryPoint; in ExecuteSecureWithOhmUrl()
384 LoadJSPandaFileSecure(thread, filename, entryPoint, buffer, size); in ExecuteSecureWithOhmUrl()
391 ", entrypoint is:" << entryPoint; in ExecuteSecureWithOhmUrl()
395 JSRecordInfo *recordInfo = jsPandaFile->CheckAndGetRecordInfo(entryPoint); in ExecuteSecureWithOhmUrl()
397 CString msg = "Cannot find module '" + entryPoint + "' , which is application Entry Point"; in ExecuteSecureWithOhmUrl()
400 return CommonExecuteBuffer(thread, filename, entryPoint, jsPandaFile.get()); in ExecuteSecureWithOhmUrl()
485 CString entryPoint = ModulePathHelper::ConcatFileNameWithMerge(thread, jsPandaFile.get(), in ExecuteAbcFileWithSingletonPatternFlag() local
487 JSRecordInfo *recordInfo = jsPandaFile->CheckAndGetRecordInfo(entryPoint); in ExecuteAbcFileWithSingletonPatternFlag()
489 LOG_ECMA(ERROR) << "When the route jump, Cannot find module '" << entryPoint << "'"; in ExecuteAbcFileWithSingletonPatternFlag()
497 … ModuleResolver::HostResolveImportedModule(thread, abcFilePath, entryPoint, jsPandaFile.get()); in ExecuteAbcFileWithSingletonPatternFlag()
503 LOG_ECMA(INFO) << "Route jump to non-singleton page: " << entryPoint; in ExecuteAbcFileWithSingletonPatternFlag()
506 LOG_ECMA(INFO) << "Route jump to singleton page: " << entryPoint; in ExecuteAbcFileWithSingletonPatternFlag()
529 CString entryPoint = ModulePathHelper::ConcatFileNameWithMerge(thread, jsPandaFile.get(), in IsExecuteModuleInAbcFile() local
531 JSRecordInfo *recordInfo = jsPandaFile->CheckAndGetRecordInfo(entryPoint); in IsExecuteModuleInAbcFile()
533 …_ECMA(WARN) << "When checking if module is in abc file, Cannot find module '" << entryPoint << "'"; in IsExecuteModuleInAbcFile()
539 // Iterate over all records in abc, rather than depth-first traversal of entryPoint