diff options
| author | 2020-02-06 07:55:59 +0000 | |
|---|---|---|
| committer | 2020-02-06 07:55:59 +0000 | |
| commit | 50d194fa7fff92c43131a84a54419d3073dce3cc (patch) | |
| tree | 215fe7070dd4cdbf5aa346c8fad3309baa6bed3a | |
| parent | 6533e0291ae233e98b45766a1c03f2bd255400cc (diff) | |
| parent | 2a53c0c16e3d8f045aaa1e959596e29623242d6f (diff) | |
Merge changes from topic "boottime" am: 2a53c0c16e
Change-Id: I14d9ab3e3867640d5b13ad1749f3889dd3c86968
| -rw-r--r-- | cmds/statsd/src/atoms.proto | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/cmds/statsd/src/atoms.proto b/cmds/statsd/src/atoms.proto index 620be837f18f..1df81e91a9d2 100644 --- a/cmds/statsd/src/atoms.proto +++ b/cmds/statsd/src/atoms.proto @@ -3848,6 +3848,9 @@ message BootTimeEventDuration { // Time since last factory reset. // Logged from bootstat. FACTORY_RESET_TIME_SINCE_RESET = 18; + // Init's total time spent for completing the 1st stage. + // Logged from bootstat. + ANDROID_INIT_STAGE_1 = 19; } // Type of the event. @@ -3875,19 +3878,19 @@ message BootTimeEventElapsedTime { // BOOT_COMPLETE for device with no encryption. BOOT_COMPLETE_NO_ENCRYPTION = 4; // Adjusted BOOT_COMPLETE for encrypted device extracting decryption time. - BOOT_COMPLETE_POST_DESCRYPT = 5; + BOOT_COMPLETE_POST_DECRYPT = 5; // BOOT_COMPLETE after factory reset. FACTORY_RESET_BOOT_COMPLETE = 6; // BOOT_COMPLETE_NO_ENCRYPTION after factory reset. FACTORY_RESET_BOOT_COMPLETE_NO_ENCRYPTION = 7; - // BOOT_COMPLETE_POST_DESCRYPT after factory reset. - FACTORY_RESET_BOOT_COMPLETE_POST_DESCRYPT = 8; + // BOOT_COMPLETE_POST_DECRYPT after factory reset. + FACTORY_RESET_BOOT_COMPLETE_POST_DECRYPT = 8; // BOOT_COMPLETE after OTA. OTA_BOOT_COMPLETE = 9; // BOOT_COMPLETE_NO_ENCRYPTION after OTA. OTA_BOOT_COMPLETE_NO_ENCRYPTION = 10; - // BOOT_COMPLETE_POST_DESCRYPT after OTA. - OTA_BOOT_COMPLETE_POST_DESCRYPT = 11; + // BOOT_COMPLETE_POST_DECRYPT after OTA. + OTA_BOOT_COMPLETE_POST_DECRYPT = 11; // Time when the system starts sending LOCKED_BOOT_COMPLETED broadcast. // Logged from f/b/services/.../UserController.java FRAMEWORK_LOCKED_BOOT_COMPLETED = 12; |