Home
last modified time | relevance | path

Searched refs:startupTime (Results 1 – 11 of 11) sorted by relevance

/ohos5.0/base/startup/init/test/unittest/modules/
H A Dsysevent_unittest.cpp105 StartupTimeEvent startupTime = {}; variable
106 startupTime.event.type = STARTUP_TIME;
107 startupTime.totalTime = curr.tv_sec;
108 startupTime.totalTime = startupTime.totalTime * MSECTONSEC;
112 startupTime.firstStart = 1;
113 ReportSysEvent(&startupTime.event);
122 StartupTimeEvent startupTime = {}; variable
124 startupTime.totalTime = curr.tv_sec;
125 startupTime.totalTime = startupTime.totalTime * MSECTONSEC;
129 startupTime.firstStart = 1;
[all …]
/ohos5.0/base/startup/init/services/modules/sysevent/
H A Dstartup_time_event.c114 StartupTimeEvent startupTime = {}; in ReportBootEventComplete() local
115 startupTime.event.type = STARTUP_TIME; in ReportBootEventComplete()
116 startupTime.totalTime = curr.tv_sec; in ReportBootEventComplete()
117 startupTime.totalTime = startupTime.totalTime * MSECTONSEC; in ReportBootEventComplete()
118 startupTime.totalTime += curr.tv_nsec / USTONSEC; in ReportBootEventComplete()
119 startupTime.detailTime = buffer; in ReportBootEventComplete()
124 startupTime.reason = reason; in ReportBootEventComplete()
125 startupTime.firstStart = 1; in ReportBootEventComplete()
127 startupTime.reason = ""; in ReportBootEventComplete()
128 startupTime.firstStart = 0; in ReportBootEventComplete()
[all …]
H A Dsys_event.c29 static void ReportStartupTimeEvent(const StartupTimeEvent *startupTime) in ReportStartupTimeEvent() argument
35 .v = { .i64 = startupTime->totalTime }, in ReportStartupTimeEvent()
41 .v = { .s = startupTime->detailTime }, in ReportStartupTimeEvent()
47 .v = { .s = startupTime->reason }, in ReportStartupTimeEvent()
53 .v = { .i32 = startupTime->firstStart }, in ReportStartupTimeEvent()
66 StartupTimeEvent *startupTime = (StartupTimeEvent *)(event); in ReportSysEvent() local
67 ReportStartupTimeEvent(startupTime); in ReportSysEvent()
/ohos5.0/base/hiviewdfx/hiview/plugins/performance/monitor/converter/
H A DAppMonitorDataConverter.h45 appEvtData.startupTime = evt.startupTime; in ConvertXperfEvtToAppEvtData()
H A DAppLaunchMonitorConverter.h54 checkPointData.startupTime = appEvtData.startupTime; in ConvertAppEvtDataToCheckPointData()
/ohos5.0/base/hiviewdfx/hiview/plugins/performance/monitor/gateway/executor/
H A DIAppThrExecutor.h41 uint64_t startupTime{0};
/ohos5.0/base/hiviewdfx/hiview/plugins/performance/scene_data_processor/
H A DAppLaunchConverter.h84 point.startupTime = data.startupTime; in ConvertToProcessStart()
/ohos5.0/base/hiviewdfx/hiview/plugins/performance/monitor/gateway/
H A DIAppLaunchSceneDataProcessor.h40 uint64_t startupTime{0};
/ohos5.0/base/hiviewdfx/hiview/plugins/performance/scene_data_processor/gateway/
H A DIAppLaunchSceneDb.h74 uint64_t startupTime{0};
/ohos5.0/base/hiviewdfx/hiview/plugins/performance/
H A DXperfEvt.h111 uint64_t startupTime{0};
H A DEvtParser.h257 evt.startupTime = static_cast<uint64_t>(sysEvent.GetEventIntValue(KEY_STARTUP_TIME)); in ConvertToXperfEvent()