• 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()
523 CString entryPoint = ModulePathHelper::ConcatFileNameWithMerge(thread, jsPandaFile.get(), in ExecuteAbcFileWithSingletonPatternFlag() local
526 bool hasRecord = jsPandaFile->CheckAndGetRecordInfo(entryPoint, &recordInfo); in ExecuteAbcFileWithSingletonPatternFlag()
528 LOG_ECMA(ERROR) << "When the route jump, Cannot find module '" << entryPoint << "'"; in ExecuteAbcFileWithSingletonPatternFlag()
536 moduleRecord = moduleManager->HostResolveImportedModuleWithMerge(abcFilePath, entryPoint); in ExecuteAbcFileWithSingletonPatternFlag()
543 LOG_ECMA(INFO) << "Route jump to non-singleton page: " << entryPoint; in ExecuteAbcFileWithSingletonPatternFlag()
546 LOG_ECMA(INFO) << "Route jump to singleton page: " << entryPoint; in ExecuteAbcFileWithSingletonPatternFlag()
570 CString entryPoint = ModulePathHelper::ConcatFileNameWithMerge(thread, jsPandaFile.get(), in IsExecuteModuleInAbcFile() local
573 bool hasRecord = jsPandaFile->CheckAndGetRecordInfo(entryPoint, &recordInfo); in IsExecuteModuleInAbcFile()
575 …ECMA(ERROR) << "When checking if module is in abc file, Cannot find module '" << entryPoint << "'"; in IsExecuteModuleInAbcFile()