Searched defs:subscriptions (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/media/java/android/service/media/
H A DMediaBrowserService.java113 HashMap<String, List<Pair<IBinder, Bundle>>> subscriptions = new HashMap<>(); field in class:MediaBrowserService.ConnectionRecord
198 // Clear out the old subscriptions. We are getting new ones.
242 // Clear out the old subscriptions. We are getting new ones.
550 connection.subscriptions.get(parentId);
587 List<Pair<IBinder, Bundle>> callbackList = connection.subscriptions.get(id);
598 connection.subscriptions.put(id, callbackList);
608 return connection.subscriptions.remove(id) != null;
611 List<Pair<IBinder, Bundle>> callbackList = connection.subscriptions.get(id);
620 connection.subscriptions.remove(id);
/frameworks/support/media-compat/java/android/support/v4/media/
H A DMediaBrowserServiceCompat.java186 connection.subscriptions.get(parentId);
243 connection.subscriptions.get(parentId);
485 HashMap<String, List<Pair<IBinder, Bundle>>> subscriptions = new HashMap(); field in class:MediaBrowserServiceCompat.ConnectionRecord
574 // Clear out the old subscriptions. We are getting new ones.
618 // Clear out the old subscriptions. We are getting new ones.
696 // Clear out the old subscriptions. We are getting new ones.
1006 List<Pair<IBinder, Bundle>> callbackList = connection.subscriptions.get(id);
1017 connection.subscriptions.put(id, callbackList);
1027 return connection.subscriptions.remove(id) != null;
1030 List<Pair<IBinder, Bundle>> callbackList = connection.subscriptions
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DNetworkControllerImpl.java288 // When there are no active subscriptions, determine emengency state from last
390 // Might have different subscriptions now.
395 // If none of the subscriptions are active, we might need to recalculate
443 List<SubscriptionInfo> subscriptions = mSubscriptionManager.getActiveSubscriptionInfoList();
444 if (subscriptions == null) {
445 subscriptions = Collections.emptyList();
447 // If there have been no relevant changes to any of the subscriptions, we can leave as is.
448 if (hasCorrectMobileControllers(subscriptions)) {
455 setCurrentSubscriptions(subscriptions);
470 void setCurrentSubscriptions(List<SubscriptionInfo> subscriptions) { argument
[all...]

Completed in 3229 milliseconds