Lines Matching refs:ContentResolver
102 In response to this message, call {@link android.content.ContentResolver#requestSync
103 ContentResolver.requestSync()} to signal the sync adapter framework to run your
124 {@link android.content.ContentResolver#requestSync requestSync()} in response to an
163 ContentResolver.requestSync(ACCOUNT, AUTHORITY, null);
177 {@link android.content.ContentResolver#requestSync requestSync()} to tell the framework to run
185 {@link android.content.ContentResolver#requestSync requestSync()} when the data changes.
192 {@link android.content.ContentResolver#requestSync requestSync()} to start the sync adapter.
196 {@link android.content.ContentResolver#registerContentObserver registerContentObserver()}. In
199 {@link android.content.ContentResolver} methods that modify your provider, such as
200 {@link android.content.ContentResolver#insert ContentResolver.insert()}. If there's a match, your
207 that calls {@link android.content.ContentResolver#requestSync requestSync()} when a table
226 ContentResolver mResolver;
253 ContentResolver.requestSync(ACCOUNT, AUTHORITY, null);
290 the {@link android.content.ContentResolver} of each app. By calling
291 {@link android.content.ContentResolver#setSyncAutomatically setSyncAutomatically()},
292 you can run the sync adapter whenever the {@link android.content.ContentResolver}
304 {@link android.content.ContentResolver#setSyncAutomatically setSyncAutomatically()}
305 doesn't disable {@link android.content.ContentResolver#addPeriodicSync addPeriodicSync()}, your
308 {@link android.content.ContentResolver#setSyncAutomatically setSyncAutomatically()}.
312 {@link android.content.ContentResolver} to run your sync adapter in response to a network
325 ContentResolver mResolver;
363 {@link android.content.ContentResolver#addPeriodicSync addPeriodicSync()}. This schedules your
370 Notice that {@link android.content.ContentResolver#addPeriodicSync addPeriodicSync()} doesn't
379 The method {@link android.content.ContentResolver#addPeriodicSync addPeriodicSync()} doesn't
380 disable {@link android.content.ContentResolver#setSyncAutomatically setSyncAutomatically()},
383 {@link android.content.ContentResolver#addPeriodicSync addPeriodicSync()}; the flags that are
385 {@link android.content.ContentResolver#addPeriodicSync addPeriodicSync()}.
406 ContentResolver mResolver;
417 ContentResolver.addPeriodicSync(
444 {@link android.content.ContentResolver#requestSync ContentResolver.requestSync()}.
451 {@link android.content.ContentResolver#SYNC_EXTRAS_MANUAL SYNC_EXTRAS_MANUAL}
455 such as the flag set by {@link android.content.ContentResolver#setSyncAutomatically
459 {@link android.content.ContentResolver#SYNC_EXTRAS_EXPEDITED SYNC_EXTRAS_EXPEDITED}
469 {@link android.content.ContentResolver#requestSync requestSync()} in response to a button
513 ContentResolver.SYNC_EXTRAS_MANUAL, true);
515 ContentResolver.SYNC_EXTRAS_EXPEDITED, true);
520 ContentResolver.requestSync(mAccount, AUTHORITY, settingsBundle);