HomeSort by relevance Sort by last modified time
    Searched refs:userServices (Results 1 - 2 of 2) sorted by null

  /packages/apps/Nfc/src/com/android/nfc/cardemulation/
RegisteredServicesCache.java 80 final SparseArray<UserServices> mUserServices = new SparseArray<UserServices>();
97 private static class UserServices {
107 private UserServices findOrCreateUserLocked(int userId) {
108 UserServices services = mUserServices.get(userId);
110 services = new UserServices();
191 UserServices userServices = findOrCreateUserLocked(userId);
192 return userServices.services.get(service);
199 UserServices userServices = findOrCreateUserLocked(userId)
    [all...]
  /frameworks/base/core/java/android/content/pm/
RegisteredServicesCache.java 90 private final SparseArray<UserServices<V>> mUserServices = new SparseArray<UserServices<V>>(2);
92 private static class UserServices<V> {
102 private UserServices<V> findOrCreateUserLocked(int userId) {
107 private UserServices<V> findOrCreateUserLocked(int userId, boolean loadFromFileIfNew) {
108 UserServices<V> services = mUserServices.get(userId);
110 services = new UserServices<V>();
233 final UserServices<V> user = findOrCreateUserLocked(userId);
241 final UserServices<V> user = findOrCreateUserLocked(userId);
321 final UserServices<V> user = findOrCreateUserLocked(userId)
    [all...]

Completed in 89 milliseconds