Home
last modified time | relevance | path

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

/aosp12/system/core/bootstat/
H A Dbootstat.cpp192 boot_event_store.AddBootEventWithValue(event, value); in RecordBootEventFromCommandLine()
1122 boot_event_store.AddBootEventWithValue(kBuildDateKey, build_date); in CalculateBootCompletePrefix()
1126 boot_event_store.AddBootEventWithValue(kBuildDateKey, build_date); in CalculateBootCompletePrefix()
1139 boot_event_store->AddBootEventWithValue(property, time_in_ms); in RecordInitBootTimeProp()
1196 boot_event_store->AddBootEventWithValue("boottime.bootloader.total", total_time); in RecordBootloaderTimings()
1297 boot_event_store.AddBootEventWithValue("last_boot_time_utc", current_time_utc); in RecordBootComplete()
1317 boot_event_store.AddBootEventWithValue(boot_complete_prefix + "_post_decrypt", in RecordBootComplete()
1328 boot_event_store.AddBootEventWithValue(boot_complete_prefix, uptime_s.count()); in RecordBootComplete()
1372 boot_event_store.AddBootEventWithValue("boot_reason", boot_reason); in RecordBootReason()
1404 boot_event_store.AddBootEventWithValue("factory_reset_current_time_failure", in RecordFactoryReset()
[all …]
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_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.cpp63 AddBootEventWithValue(event, uptime.count()); in AddBootEvent()
69 void BootEventRecordStore::AddBootEventWithValue(const std::string& event, int32_t value) { in AddBootEventWithValue() function in BootEventRecordStore