HomeSort by relevance Sort by last modified time
    Searched full:syncadapter (Results 51 - 75 of 94) sorted by null

1 23 4

  /frameworks/base/core/java/com/android/server/backup/
AccountSyncSettingsBackupHelper.java 135 for (SyncAdapterType syncAdapter : syncAdapters) {
137 if (!syncAdapter.isUserVisible()) {
140 if (!accountTypeToAuthorities.containsKey(syncAdapter.accountType)) {
141 accountTypeToAuthorities.put(syncAdapter.accountType, new ArrayList<String>());
143 accountTypeToAuthorities.get(syncAdapter.accountType).add(syncAdapter.authority);
  /developers/build/prebuilts/androidtv/sample-inputs/app/src/main/java/com/example/android/sampletvinput/rich/
RichSetupFragment.java 49 import com.example.android.sampletvinput.syncadapter.DummyAccountService;
50 import com.example.android.sampletvinput.syncadapter.SyncUtils;
58 * Fragment which shows a sample UI for registering channels and setting up SyncAdapter to
  /frameworks/base/docs/html/training/sync-adapters/
creating-sync-adapter.jd 122 public class SyncAdapter extends AbstractThreadedSyncAdapter {
130 public SyncAdapter(Context context, boolean autoInitialize) {
144 public SyncAdapter(
317 package com.example.android.syncadapter;
325 private static SyncAdapter sSyncAdapter = null;
340 sSyncAdapter = new SyncAdapter(getApplicationContext(), true);
354 * in the base class code when the SyncAdapter
444 although it's usually called {@code syncadapter.xml}.
616 &lt;action android:name="android.content.SyncAdapter"/&gt;
618 &lt;meta-data android:name="android.content.SyncAdapter"
    [all...]
creating-authenticator.jd 211 attribute <code>android:userVisible="true"</code> in <code>res/xml/syncadapter.xml</code>,
230 <code>res/xml/syncadapter.xml</code>, then you should provide this string. It appears in the
259 android:name="com.example.android.syncadapter.AuthenticatorService"&gt;
  /packages/apps/Settings/src/com/android/settings/accounts/
AccountSyncSettings.java 459 for (SyncAdapterType syncAdapter : mInvisibleAdapters) {
460 requestOrCancelSync(mAccount, syncAdapter.authority, startSync);
617 final SyncAdapterType syncAdapter = authorities.get(j);
619 int syncState = ContentResolver.getIsSyncableAsUser(mAccount, syncAdapter.authority,
622 Log.d(TAG, " found authority " + syncAdapter.authority + " " + syncState);
628 syncAdapter.getPackageName(), mUserHandle.getIdentifier());
629 addSyncStateSwitch(mAccount, syncAdapter.authority,
630 syncAdapter.getPackageName(), uid);
632 Log.e(TAG, "No uid for package" + syncAdapter.getPackageName(), e);
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/platform/
ContactManager.java 273 * @param rawContact the sample SyncAdapter User object
318 * @param rawContact the sample SyncAdapter contact object
533 // Look up the user's sample SyncAdapter data row
588 * Returns the RawContact id for a sample SyncAdapter contact, or 0 if the
589 * sample SyncAdapter user isn't found.
592 * @param serverContactId the sample SyncAdapter user ID to lookup
617 * Returns the Data id for a sample SyncAdapter contact's profile row, or 0
618 * if the sample SyncAdapter user isn't found.
621 * @param userId the sample SyncAdapter user ID to lookup
683 * Constants for a query to find a contact given a sample SyncAdapter use
    [all...]
ContactOperations.java 67 * @param userId the userId of the sample SyncAdapter user object
68 * @param accountName the username for the SyncAdapter account
219 * @param userId the userId of the sample SyncAdapter user object
253 * @param email email id of the sample SyncAdapter user
347 * @param userId sample SyncAdapter user id
  /frameworks/base/docs/html/topic/performance/
scheduling.jd 15 <li><a href="#sa">SyncAdapter</a></li>
66 SyncAdapter</a></li>
205 <h3 id="sa">SyncAdapter</h3>
209 {@link android.content.AbstractThreadedSyncAdapter SyncAdapter} class for
231 {@link android.content.AbstractThreadedSyncAdapter SyncAdapter}
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
CalendarProvider2Test.java     [all...]
  /cts/tests/tests/content/
AndroidManifest.xml 184 <action android:name="android.content.SyncAdapter" />
187 <meta-data android:name="android.content.SyncAdapter"
188 android:resource="@xml/syncadapter" />
  /developers/build/prebuilts/gradle/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/
SyncUtils.java 38 // Value below must match the account type specified in res/xml/syncadapter.xml
EntryListFragment.java 328 * The SyncAdapter runs on a background thread. To update the UI, onStatusChanged()
  /developers/samples/android/connectivity/sync/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/
SyncUtils.java 38 // Value below must match the account type specified in res/xml/syncadapter.xml
EntryListFragment.java 328 * The SyncAdapter runs on a background thread. To update the UI, onStatusChanged()
  /development/samples/browseable/BasicSyncAdapter/src/com.example.android.basicsyncadapter/
SyncUtils.java 38 // Value below must match the account type specified in res/xml/syncadapter.xml
EntryListFragment.java 328 * The SyncAdapter runs on a background thread. To update the UI, onStatusChanged()
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/accounts/
AccountSyncFragment.java 221 for (SyncAdapterType syncAdapter : mInvisibleAdapters) {
222 requestOrCancelSync(mAccount, syncAdapter.authority, startSync);
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/authenticator/
Authenticator.java 41 * SyncAdapter calls AccountManager.blockingGetAuthToken(). When we get called,
  /frameworks/base/core/java/android/content/pm/
ProviderInfo.java 95 * syncable is to provide a SyncAdapter service for a given provider/account type.