• Home
  • Raw
  • Download

Lines Matching full:entrypoint

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