• Home
  • Raw
  • Download

Lines Matching refs:ModuleLogger

24 ModuleLogger::ModuleLogger(EcmaVM *vm) : vm_(vm)  in ModuleLogger()  function in panda::ecmascript::ModuleLogger
29 void ModuleLogger::PrintModuleLoadInfo() in PrintModuleLoadInfo()
41 bool ModuleLogger::CreateResultFile(std::string &path) const in CreateResultFile()
58 bool ModuleLogger::OpenResultFile(std::string &path) const in OpenResultFile()
76 void ModuleLogger::InsertModuleLoadInfo(JSHandle<SourceTextModule> currentModule, in InsertModuleLoadInfo()
106 void ModuleLogger::InsertParentModule(JSHandle<SourceTextModule> currentModule, in InsertParentModule()
116 void ModuleLogger::InsertEntryPointModule(JSHandle<SourceTextModule> currentModule) in InsertEntryPointModule()
127 void ModuleLogger::PrintSummary() const in PrintSummary()
145 void ModuleLogger::PrintUsedFileInfo() const in PrintUsedFileInfo()
183 void ModuleLogger::PrintUnusedFileInfo() const in PrintUnusedFileInfo()
216 void ModuleLogger::ProcessModuleExecuteTime() in ProcessModuleExecuteTime()
240 ModuleLoadInfo *ModuleLogger::GetModuleLoadInfo(const CString &recordName) in GetModuleLoadInfo()
251 void ModuleLogger::SetStartTime(const CString &recordName) in SetStartTime()
264 void ModuleLogger::SetEndTime(const CString &recordName) in SetEndTime()
279 std::string ModuleLogger::ToStringWithPrecision(const double num, const uint8_t n) in ToStringWithPrecision()
286 void ModuleLogger::PrintModuleLoadInfoTask(void *data) in PrintModuleLoadInfoTask()
288 ModuleLogger* moduleLogger = static_cast<ModuleLogger*>(data); in PrintModuleLoadInfoTask()
295 void ModuleLogger::SetModuleLoggerTask(EcmaVM *vm) in SetModuleLoggerTask()
297 ModuleLogger *moduleLogger = vm->GetJSThread()->GetCurrentEcmaContext()->GetModuleLogger(); in SetModuleLoggerTask()