diff options
Diffstat (limited to 'proto')
-rw-r--r-- | proto/src/metrics_constants/metrics_constants.proto | 24 | ||||
-rw-r--r-- | proto/src/wifi.proto | 12 |
2 files changed, 33 insertions, 3 deletions
diff --git a/proto/src/metrics_constants/metrics_constants.proto b/proto/src/metrics_constants/metrics_constants.proto index 3babb6d943f5..21c6035da038 100644 --- a/proto/src/metrics_constants/metrics_constants.proto +++ b/proto/src/metrics_constants/metrics_constants.proto @@ -7182,6 +7182,30 @@ message MetricsEvent { // OS: Q QS_UI_MODE_NIGHT = 1706; + // OPEN: Settings > Pick SIM dialog + // CATEGORY: SETTINGS + // OS: Q + DIALOG_SIM_LIST = 1707; + + // OPEN: Settings > Pick SIM (that supports calling) dialog + // CATEGORY: SETTINGS + // OS: Q + DIALOG_CALL_SIM_LIST = 1708; + + // OPEN: Settings > Pick preferred SIM dialog + // CATEGORY: SETTINGS + // OS: Q + DIALOG_PREFERRED_SIM_PICKER = 1709; + + // ACTION: Share a Wi-Fi network by generating a QR code + ACTION_SETTINGS_SHARE_WIFI_QR_CODE = 1710; + + // ACTION: Connect to a Wi-Fi network by scanning a QR code + ACTION_SETTINGS_ENROLL_WIFI_QR_CODE = 1711; + + // ACTION: Share Wi-Fi hotspot by generating a QR code + ACTION_SETTINGS_SHARE_WIFI_HOTSPOT_QR_CODE = 1712; + // ---- End Q Constants, all Q constants go above this line ---- // Add new aosp constants above this line. // END OF AOSP CONSTANTS diff --git a/proto/src/wifi.proto b/proto/src/wifi.proto index d5f036f702ed..f9a2ca269335 100644 --- a/proto/src/wifi.proto +++ b/proto/src/wifi.proto @@ -474,9 +474,6 @@ message WifiLog { // Number of times the SarManager failed to register SAR sensor listener optional int32 num_sar_sensor_registration_failures = 122; - // Histogram of the EAP method type of all installed Passpoint profiles - repeated PasspointProfileTypeCount installed_passpoint_profile_type = 123; - // Hardware revision (EVT, DVT, PVT etc.) optional string hardware_revision = 124; @@ -548,6 +545,12 @@ message WifiLog { // Passpoint provison metrics optional PasspointProvisionStats passpoint_provision_stats = 147; + + // Histogram of the EAP method type of all installed Passpoint profiles for R1 + repeated PasspointProfileTypeCount installed_passpoint_profile_type_for_r1 = 123; + + // Histogram of the EAP method type of all installed Passpoint profiles for R2 + repeated PasspointProfileTypeCount installed_passpoint_profile_type_for_r2 = 148; } // Information that gets logged for every WiFi connection. @@ -2095,6 +2098,9 @@ message WifiUsabilityStats { // Firmware alert code. Only valid when the stats was triggered by a firmware // alert, otherwise -1. optional int32 firmware_alert_code = 4 [default = -1]; + + // Absolute milliseconds from device boot when these stats were sampled + optional int64 time_stamp_ms = 5; } message DeviceMobilityStatePnoScanStats { |