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

  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/syncadapter/
SyncService.java 31 private static SyncAdapter sSyncAdapter = null;
36 if (sSyncAdapter == null) {
37 sSyncAdapter = new SyncAdapter(getApplicationContext(), true);
44 return sSyncAdapter.getSyncAdapterBinder();
  /packages/apps/Contacts/tests/src/com/android/contacts/tests/testauth/
TestSyncService.java 24 private static TestSyncAdapter sSyncAdapter;
28 if (sSyncAdapter == null) {
29 sSyncAdapter = new TestSyncAdapter(getApplicationContext(), true);
35 return sSyncAdapter.getSyncAdapterBinder();
  /cts/tests/src/android/content/cts/
MockSyncAdapter.java 31 private static MockSyncAdapter sSyncAdapter = null;
131 if (null == sSyncAdapter) {
132 sSyncAdapter = new MockSyncAdapter();
134 return sSyncAdapter;
  /packages/apps/Email/src/com/android/email/service/
PopImapSyncAdapterService.java 40 private static SyncAdapterImpl sSyncAdapter = null;
70 if (sSyncAdapter == null) {
71 sSyncAdapter = new SyncAdapterImpl(getApplicationContext());
78 return sSyncAdapter.getSyncAdapterBinder();
  /packages/apps/Exchange/exchange2/src/com/android/exchange/
EmailSyncAdapterService.java 40 private static SyncAdapterImpl sSyncAdapter = null;
74 if (sSyncAdapter == null) {
75 sSyncAdapter = new SyncAdapterImpl(getApplicationContext());
82 return sSyncAdapter.getSyncAdapterBinder();
CalendarSyncAdapterService.java 41 private static SyncAdapterImpl sSyncAdapter = null;
80 if (sSyncAdapter == null) {
81 sSyncAdapter = new SyncAdapterImpl(getApplicationContext());
88 return sSyncAdapter.getSyncAdapterBinder();
ContactsSyncAdapterService.java 42 private static SyncAdapterImpl sSyncAdapter = null;
76 if (sSyncAdapter == null) {
77 sSyncAdapter = new SyncAdapterImpl(getApplicationContext());
84 return sSyncAdapter.getSyncAdapterBinder();

Completed in 2024 milliseconds