Searched refs:removableBoundServices (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/services/core/java/com/android/server/notification/ |
D | ManagedServices.java | 1404 final Set<ManagedServiceInfo> removableBoundServices = new ArraySet<>(); in getRemovableConnectedServices() local 1407 removableBoundServices.add(service); in getRemovableConnectedServices() 1410 return removableBoundServices; in getRemovableConnectedServices() 1415 Set<ManagedServiceInfo> removableBoundServices, in populateComponentsToUnbind() argument 1418 for (ManagedServiceInfo info : removableBoundServices) { in populateComponentsToUnbind() 1451 final Set<ManagedServiceInfo> removableBoundServices = getRemovableConnectedServices(); in rebindServices() local 1460 forceRebind, removableBoundServices, componentsToBind, componentsToUnbind); in rebindServices() 1488 final Set<ManagedServiceInfo> removableBoundServices = getRemovableConnectedServices(); in unbindServicesImpl() local 1489 for (ManagedServiceInfo info : removableBoundServices) { in unbindServicesImpl()
|
/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/ |
D | ManagedServicesTest.java | 1425 Set<ManagedServices.ManagedServiceInfo> removableBoundServices = new ArraySet<>(); in testPopulateComponentsToUnbind_forceRebind() local 1426 removableBoundServices.add(service0); in testPopulateComponentsToUnbind_forceRebind() 1427 removableBoundServices.add(service10); in testPopulateComponentsToUnbind_forceRebind() 1439 service.populateComponentsToUnbind(true, removableBoundServices, allowedComponentsToBind, in testPopulateComponentsToUnbind_forceRebind() 1464 Set<ManagedServices.ManagedServiceInfo> removableBoundServices = new ArraySet<>(); in testPopulateComponentsToUnbind() local 1465 removableBoundServices.add(service0); in testPopulateComponentsToUnbind() 1466 removableBoundServices.add(service0a); in testPopulateComponentsToUnbind() 1467 removableBoundServices.add(service10); in testPopulateComponentsToUnbind() 1479 service.populateComponentsToUnbind(false, removableBoundServices, allowedComponentsToBind, in testPopulateComponentsToUnbind()
|