diff options
| author | Tej Singh <singhtejinder@google.com> | 2019-01-29 17:06:54 -0800 |
|---|---|---|
| committer | Tej Singh <singhtejinder@google.com> | 2019-02-12 19:28:26 -0800 |
| commit | 6ede28bcb972967c1934e26fa0513ea6001b4f98 (patch) | |
| tree | a38b0b1bca1d13fa2d9b6242eba852b5ded0082e /core/java | |
| parent | 5c5fbf11596d926462e459657c2076787451b0c2 (diff) | |
Statsd sends active config broadcasts
Statsd now sends active configs changed broadcasts when needed per uid.
Also made an adb command to help debug.
More gts tests and unit tests required, will follow.
Test: GTS in topic
Bug: 123372077
Change-Id: Ib079018ded85d002581ffc2ba1240138ce7a54e7
Diffstat (limited to 'core/java')
| -rw-r--r-- | core/java/android/os/IStatsCompanionService.aidl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/core/java/android/os/IStatsCompanionService.aidl b/core/java/android/os/IStatsCompanionService.aidl index dde46cd93d5f..0751b964f85e 100644 --- a/core/java/android/os/IStatsCompanionService.aidl +++ b/core/java/android/os/IStatsCompanionService.aidl @@ -69,6 +69,12 @@ interface IStatsCompanionService { oneway void sendDataBroadcast(in IBinder intentSender, long lastReportTimeNs); /** + * Send a broadcast to the specified PendingIntent's as IBinder notifying it that the list + * of active configs has changed. + */ + oneway void sendActiveConfigsChangedBroadcast(in IBinder intentSender, in long[] configIds); + + /** * Requests StatsCompanionService to send a broadcast using the given intentSender * (which should cast to an IIntentSender), along with the other information specified. */ |
