Home
last modified time | relevance | path

Searched refs:AppStartRecord (Results 1 – 5 of 5) sorted by relevance

/ohos5.0/base/hiviewdfx/hiview/plugins/performance/scene_data_processor/
H A DAppLaunchSceneDataProcessor.h26 using AppStartRecord = IAppLaunchSceneDb::AppStartRecord; variable
61 void SaveCheckPoint(AppStartRecord& record, const AppStartCheckPointData& data);
69 AppStartRecord GetRecord(const std::string& bundleName);
74 bool HaveStartPoint(const AppStartRecord& record);
75 bool HaveAllEndPoints(const AppStartRecord& record);
76 bool HaveEndPoint(const AppStartRecord& record);
77 bool HaveResponseOrCompletedPoint(const AppStartRecord& record);
78 std::string GetProcessName(const AppStartRecord& record);
79 int32_t GetAppPid(const AppStartRecord& record);
80 uint64_t GetInputTime(const AppStartRecord& record);
[all …]
H A DAppLaunchSceneDataProcessor.cpp79 AppStartRecord record = GetRecord(bundleName); in ProcessSceneData()
147 AppStartRecord record = GetRecord(bundleName); in SaveCheckPoint()
209 bool AppLaunchSceneDataProcessor::HaveStartPoint(const AppStartRecord& record) in HaveStartPoint()
214 bool AppLaunchSceneDataProcessor::HaveAllEndPoints(const AppStartRecord& record) in HaveAllEndPoints()
219 bool AppLaunchSceneDataProcessor::HaveEndPoint(const AppStartRecord& record) in HaveEndPoint()
231 AppStartRecord record = GetRecord(bundleName); in AllPointsReceived()
252 int32_t AppLaunchSceneDataProcessor::GetAppPid(const AppStartRecord& record) in GetAppPid()
274 AppStartRecord record = GetRecord(bundleName); in CalcMetrics()
352 AppStartRecord record = GetRecord(bundleName); in ReportConditionMet()
374 AppStartRecord record; in CreateRecord()
[all …]
/ohos5.0/base/hiviewdfx/hiview/plugins/performance/persistence/
H A DAppLaunchSceneDbAdapter.h23 void CreateRecord(const std::string& bundleName, const AppStartRecord& record) override;
24 void UpdateRecord(const std::string& bundleName, const AppStartRecord& record) override;
26 AppStartRecord QueryRecord(const std::string& bundleName) override;
27 void CreateRecord(const AppStartRecord& record) override;
28 void UpdateRecord(const AppStartRecord& record) override;
31 std::map<std::string, AppStartRecord> appStartRecords;
H A DAppLaunchSceneDbAdapter.cpp18 void AppLaunchSceneDbAdapter::CreateRecord(const std::string& bundleName, const AppStartRecord& rec… in CreateRecord()
23 void AppLaunchSceneDbAdapter::UpdateRecord(const std::string& bundleName, const AppStartRecord& rec… in UpdateRecord()
33 AppLaunchSceneDbAdapter::AppStartRecord AppLaunchSceneDbAdapter::QueryRecord(const std::string& bun… in QueryRecord()
35 AppStartRecord record; in QueryRecord()
43 void AppLaunchSceneDbAdapter::CreateRecord(const AppStartRecord& record) in CreateRecord()
48 void AppLaunchSceneDbAdapter::UpdateRecord(const AppStartRecord& record) in UpdateRecord()
/ohos5.0/base/hiviewdfx/hiview/plugins/performance/scene_data_processor/gateway/
H A DIAppLaunchSceneDb.h172 struct AppStartRecord { struct
189 virtual void CreateRecord(const std::string& bundleName, const AppStartRecord& record) = 0; argument
190 virtual void UpdateRecord(const std::string& bundleName, const AppStartRecord& record) = 0;
192 virtual AppStartRecord QueryRecord(const std::string& bundleName) = 0;
193 virtual void CreateRecord(const AppStartRecord& record) = 0;
194 virtual void UpdateRecord(const AppStartRecord& record) = 0;