Home
last modified time | relevance | path

Searched refs:mServiceCache (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Nfc/src/com/android/nfc/cardemulation/
DCardEmulationManager.java69 final RegisteredServicesCache mServiceCache; field in CardEmulationManager
87 mServiceCache = new RegisteredServicesCache(context, this); in CardEmulationManager()
89 mPreferredServices = new PreferredServices(context, mServiceCache, mAidCache, this); in CardEmulationManager()
92 mServiceCache.initialize(); in CardEmulationManager()
141 mServiceCache.invalidateCache(userId); in onUserSwitched()
168 mServiceCache.dump(fd, pw, args); in dump()
202 ApduServiceInfo serviceInfo = mServiceCache.getService(userId, defaultPaymentService); in verifyDefaults()
283 return mServiceCache.hasService(userId, service) ? service : null; in getDefaultServiceForCategory()
299 if (service == null || mServiceCache.hasService(userId, service)) { in setDefaultServiceForCategoryChecked()
310 boolean serviceFound = mServiceCache.hasService(userId, service); in isServiceRegistered()
[all …]
DPreferredServices.java64 final RegisteredServicesCache mServiceCache; field in PreferredServices
96 mServiceCache = serviceCache; in PreferredServices()
230 ApduServiceInfo serviceInfo = mServiceCache.getService(ActivityManager.getCurrentUser(), in isForegroundAllowedLocked()
247 ApduServiceInfo paymentServiceInfo = mServiceCache.getService( in isForegroundAllowedLocked()
/packages/services/Telecomm/src/com/android/server/telecom/
DConnectionServiceRepository.java34 private final HashMap<Pair<ComponentName, UserHandle>, ConnectionServiceWrapper> mServiceCache = field in ConnectionServiceRepository
46 mServiceCache.remove(service.getComponentName());
65 ConnectionServiceWrapper service = mServiceCache.get(cacheKey); in getService()
76 mServiceCache.put(cacheKey, service); in getService()
89 for (Pair<ComponentName, UserHandle> cacheKey : mServiceCache.keySet()) { in dump()