Home | History | Annotate | Download | only in bootstat

Lines Matching full:record

40 // Scans the boot event record store for record files and logs each boot event
69 " -r, --record Record the timestamp of a named boot event\n"
70 " --record_boot_reason Record the reason why the device booted\n"
71 " --record_time_since_factory_reset Record the time since the device was reset\n");
153 BootEventRecordStore::BootEventRecord record;
154 if (!boot_event_store.GetBootEvent(kBuildDateKey, &record) ||
155 build_date != record.second) {
167 BootEventRecordStore::BootEventRecord record;
176 if (boot_event_store.GetBootEvent("post_decrypt_time_elapsed", &record)) {
183 time_t boot_complete = uptime - record.second;
193 // Record the total time from device startup to boot complete, regardless of
211 BootEventRecordStore::BootEventRecord record;
236 if (!boot_event_store.GetBootEvent("factory_reset", &record)) {
244 // Calculate and record the difference in time between now and the
246 time_t factory_reset_utc = record.second;
276 { "record", required_argument, NULL, 'r' },