Home
last modified time | relevance | path

Searched refs:AddBootEventWithValue (Results 1 – 4 of 4) sorted by relevance

/aosp_15_r20/system/core/bootstat/
H A Dbootstat.cpp176 boot_event_store.AddBootEventWithValue(event, value); in RecordBootEventFromCommandLine()
1145 boot_event_store.AddBootEventWithValue(kBuildDateKey, build_date); in CalculateBootCompletePrefix()
1149 boot_event_store.AddBootEventWithValue(kBuildDateKey, build_date); in CalculateBootCompletePrefix()
1162 boot_event_store->AddBootEventWithValue(property, time_in_ms); in RecordInitBootTimeProp()
1216 boot_event_store->AddBootEventWithValue("boottime.bootloader." + timing.first, timing.second); in RecordBootloaderTimings()
1219 boot_event_store->AddBootEventWithValue("boottime.bootloader.total", total_time); in RecordBootloaderTimings()
1243 boot_event_store->AddBootEventWithValue("absolute_boot_time", absolute_total_sec.count()); in RecordAbsoluteBootTime()
1316 boot_event_store.AddBootEventWithValue("time_since_last_boot", time_since_last_boot); in RecordBootComplete()
1319 boot_event_store.AddBootEventWithValue("last_boot_time_utc", current_time_utc); in RecordBootComplete()
1334 boot_event_store.AddBootEventWithValue(boot_complete_prefix + "_no_encryption", in RecordBootComplete()
[all …]
H A Dboot_event_record_store_test.cpp177 TEST_F(BootEventRecordStoreTest, AddBootEventWithValue) { in TEST_F() argument
181 store.AddBootEventWithValue("permian", 42); in TEST_F()
202 store.AddBootEventWithValue("carboniferous", 314); in TEST_F()
H A Dboot_event_record_store.h41 void AddBootEventWithValue(const std::string& event, int32_t value);
56 FRIEND_TEST(BootEventRecordStoreTest, AddBootEventWithValue);
H A Dboot_event_record_store.cpp63 AddBootEventWithValue(event, uptime.count()); in AddBootEvent()
69 void BootEventRecordStore::AddBootEventWithValue(const std::string& event, int32_t value) { in AddBootEventWithValue() function in BootEventRecordStore