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

  /frameworks/base/services/core/java/com/android/server/accounts/
IAccountAuthenticatorCache.java 20 import android.content.pm.RegisteredServicesCache;
29 * An interface to the Authenticator specialization of RegisteredServicesCache. The use of
35 * Accessor for the {@link android.content.pm.RegisteredServicesCache.ServiceInfo} that
39 * @return the {@link android.content.pm.RegisteredServicesCache.ServiceInfo} that
42 RegisteredServicesCache.ServiceInfo<AuthenticatorDescription> getServiceInfo(
48 Collection<RegisteredServicesCache.ServiceInfo<AuthenticatorDescription>> getAllServices(
AccountAuthenticatorCache.java 24 import android.content.pm.RegisteredServicesCache;
41 * are made available via the {@link RegisteredServicesCache#getServiceInfo} method.
45 extends RegisteredServicesCache<AuthenticatorDescription>
AccountManagerService.java 51 import android.content.pm.RegisteredServicesCache;
373 for (RegisteredServicesCache.ServiceInfo<AuthenticatorDescription> service :
    [all...]
  /frameworks/base/core/java/android/content/
SyncAdaptersCache.java 19 import android.content.pm.RegisteredServicesCache;
41 public class SyncAdaptersCache extends RegisteredServicesCache<SyncAdapterType> {
115 final Collection<RegisteredServicesCache.ServiceInfo<SyncAdapterType>> serviceInfos;
118 for (RegisteredServicesCache.ServiceInfo<SyncAdapterType> serviceInfo : serviceInfos) {
  /development/apps/Development/src/com/android/development/
SyncAdapterDriver.java 25 import android.content.pm.RegisteredServicesCache;
93 Collection<RegisteredServicesCache.ServiceInfo<SyncAdapterType>> all =
99 for (RegisteredServicesCache.ServiceInfo<SyncAdapterType> item : all) {
225 final RegisteredServicesCache.ServiceInfo<SyncAdapterType> mSyncAdapter;
228 RegisteredServicesCache.ServiceInfo<SyncAdapterType> syncAdapter) {
287 RegisteredServicesCache.ServiceInfo<SyncAdapterType> syncAdapter =
325 private RegisteredServicesCache.ServiceInfo<SyncAdapterType> getSelectedSyncAdapter() {
333 return (RegisteredServicesCache.ServiceInfo<SyncAdapterType>)
341 static class SyncAdaptersCache extends RegisteredServicesCache<SyncAdapterType> {
  /frameworks/base/core/tests/coretests/src/android/content/pm/
RegisteredServicesCacheTest.java 44 * Tests for {@link android.content.pm.RegisteredServicesCache}
68 mSyncDir = new File(mDataDir, "system/"+RegisteredServicesCache.REGISTERED_SERVICES_DIR);
97 Collection<RegisteredServicesCache.ServiceInfo<TestServiceType>> allServices = cache
101 for (RegisteredServicesCache.ServiceInfo<TestServiceType> srv : allServices) {
189 private static RegisteredServicesCache.ServiceInfo<TestServiceType> newServiceInfo(
191 return new RegisteredServicesCache.ServiceInfo<>(type, null, uid);
196 RegisteredServicesCache.REGISTERED_SERVICES_DIR);
202 * Mock implementation of {@link android.content.pm.RegisteredServicesCache} for testing
204 private class TestServicesCache extends RegisteredServicesCache<TestServiceType> {
  /packages/apps/Nfc/src/com/android/nfc/cardemulation/
CardEmulationManager.java 36 import com.android.nfc.cardemulation.RegisteredServicesCache;
42 * - RegisteredServicesCache keeping track of HCE and SE services on the device
48 public class CardEmulationManager implements RegisteredServicesCache.Callback,
54 final RegisteredServicesCache mServiceCache;
65 mServiceCache = new RegisteredServicesCache(context, this);
PreferredServices.java 64 final RegisteredServicesCache mServiceCache;
93 public PreferredServices(Context context, RegisteredServicesCache serviceCache,
RegisteredServicesCache.java 62 * This class is inspired by android.content.pm.RegisteredServicesCache
68 public class RegisteredServicesCache {
70 static final String TAG = "RegisteredServicesCache";
116 public RegisteredServicesCache(Context context, Callback callback) {
  /frameworks/base/services/core/java/com/android/server/content/
SyncManager.java 52 import android.content.pm.RegisteredServicesCache;
604 RegisteredServicesCache.ServiceInfo<SyncAdapterType> syncAdapterInfo =
    [all...]
SyncQueue.java 22 import android.content.pm.RegisteredServicesCache.ServiceInfo;
  /frameworks/base/services/tests/servicestests/src/com/android/server/accounts/
AccountManagerServiceTest.java 24 import android.content.pm.RegisteredServicesCache.ServiceInfo;
  /frameworks/base/core/java/android/content/pm/
RegisteredServicesCache.java 76 public abstract class RegisteredServicesCache<V> {
142 public RegisteredServicesCache(Context context, String interfaceName, String metaDataName,
243 fout.println("RegisteredServicesCache: " + user.services.size() + " services");
248 fout.println("RegisteredServicesCache: services not loaded");
330 * @return a collection of {@link RegisteredServicesCache.ServiceInfo} objects for all

Completed in 331 milliseconds