Home
last modified time | relevance | path

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

/system/core/bootstat/
Dboot_event_record_store.h41 void AddBootEventWithValue(const std::string& event, int32_t value);
56 FRIEND_TEST(BootEventRecordStoreTest, AddBootEventWithValue);
Dbootstat.cpp176 boot_event_store.AddBootEventWithValue(event, value); in RecordBootEventFromCommandLine()
1167 boot_event_store.AddBootEventWithValue(kBuildDateKey, build_date); in CalculateBootCompletePrefix()
1171 boot_event_store.AddBootEventWithValue(kBuildDateKey, build_date); in CalculateBootCompletePrefix()
1184 boot_event_store->AddBootEventWithValue(property, time_in_ms); in RecordInitBootTimeProp()
1238 boot_event_store->AddBootEventWithValue("boottime.bootloader." + timing.first, timing.second); in RecordBootloaderTimings()
1241 boot_event_store->AddBootEventWithValue("boottime.bootloader.total", total_time); in RecordBootloaderTimings()
1265 boot_event_store->AddBootEventWithValue("absolute_boot_time", absolute_total_sec.count()); in RecordAbsoluteBootTime()
1338 boot_event_store.AddBootEventWithValue("time_since_last_boot", time_since_last_boot); in RecordBootComplete()
1341 boot_event_store.AddBootEventWithValue("last_boot_time_utc", current_time_utc); in RecordBootComplete()
1356 boot_event_store.AddBootEventWithValue(boot_complete_prefix + "_no_encryption", in RecordBootComplete()
[all …]
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()
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