Lines Matching refs:entryPoint

29     [[maybe_unused]] std::string_view entryPoint)
35 return {filename, entryPoint.data()};
110 const CString &filename, std::string_view entryPoint, bool needUpdate, bool executeFromJob)
115 CString entry = entryPoint.data();
122 std::string_view entryPoint, bool needUpdate, bool executeFromJob)
131 std::tie(name, entry) = ParseAbcEntryPoint(thread, filename, entryPoint);
134 entry = entryPoint.data();
142 const void *buffer, size_t size, std::string_view entryPoint, const CString &filename, bool needUpdate,
150 JSPandaFileManager::GetInstance()->LoadJSPandaFile(thread, normalName, entryPoint, buffer, size, needUpdate);
162 CString entry = entryPoint.data();
264 std::string_view entryPoint, bool executeFromJob)
269 CString traceInfo = "FileExecute: " + CString(entryPoint);
278 result = context->InvokeEcmaEntrypointForHotReload(jsPandaFile, entryPoint, executeFromJob);
283 result = context->InvokeEcmaEntrypoint(jsPandaFile, entryPoint, executeFromJob);
321 size_t size, std::string_view entryPoint, const CString &filename, bool needUpdate)
328 LoadJSPandaFileSecure(thread, normalName, entryPoint, buffer, size, needUpdate);
340 CString entry = entryPoint.data();
446 size_t size, const CString &filename, const CString &entryPoint)
449 ", entryPoint:" << entryPoint;
454 LoadJSPandaFileSecure(thread, filename, entryPoint, buffer, size);
461 ", entrypoint is:" << entryPoint;
466 bool hasRecord = jsPandaFile->CheckAndGetRecordInfo(entryPoint, &recordInfo);
468 CString msg = "Cannot find module '" + entryPoint + "' , which is application Entry Point";
471 return CommonExecuteBuffer(thread, filename, entryPoint, jsPandaFile.get());
559 CString entryPoint = ModulePathHelper::ConcatFileNameWithMerge(thread, jsPandaFile.get(),
562 bool hasRecord = jsPandaFile->CheckAndGetRecordInfo(entryPoint, &recordInfo);
564 LOG_ECMA(ERROR) << "When the route jump, Cannot find module '" << entryPoint << "'";
572 moduleRecord = moduleManager->HostResolveImportedModuleWithMerge(abcFilePath, entryPoint);
579 LOG_ECMA(INFO) << "Route jump to non-singleton page: " << entryPoint;
582 LOG_ECMA(INFO) << "Route jump to singleton page: " << entryPoint;
606 CString entryPoint = ModulePathHelper::ConcatFileNameWithMerge(thread, jsPandaFile.get(),
609 bool hasRecord = jsPandaFile->CheckAndGetRecordInfo(entryPoint, &recordInfo);
611 LOG_ECMA(ERROR) << "When checking if module is in abc file, Cannot find module '" << entryPoint << "'";