Home
last modified time | relevance | path

Searched refs:CONTENT_AUTHORITY (Results 1 – 6 of 6) sorted by relevance

/developers/samples/android/connectivity/sync/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/
DSyncUtils.java36 private static final String CONTENT_AUTHORITY = FeedContract.CONTENT_AUTHORITY; field in SyncUtils
58 ContentResolver.setIsSyncable(account, CONTENT_AUTHORITY, 1); in CreateSyncAccount()
60 ContentResolver.setSyncAutomatically(account, CONTENT_AUTHORITY, true); in CreateSyncAccount()
64 account, CONTENT_AUTHORITY, new Bundle(),SYNC_FREQUENCY); in CreateSyncAccount()
96 FeedContract.CONTENT_AUTHORITY, // Content authority in TriggerRefresh()
DEntryListFragment.java347 account, FeedContract.CONTENT_AUTHORITY);
349 account, FeedContract.CONTENT_AUTHORITY);
DSyncAdapter.java284 mContentResolver.applyBatch(FeedContract.CONTENT_AUTHORITY, batch); in updateLocalFeedData()
/developers/samples/android/connectivity/sync/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/provider/
DFeedContract.java34 public static final String CONTENT_AUTHORITY = "com.example.android.basicsyncadapter"; field in FeedContract
39 public static final Uri BASE_CONTENT_URI = Uri.parse("content://" + CONTENT_AUTHORITY);
DFeedProvider.java36 private static final String AUTHORITY = FeedContract.CONTENT_AUTHORITY;
/developers/samples/android/ui/window/DragAndDropAcrossApps/DragSource/src/main/java/com/example/android/dragsource/
DDragSourceFragment.java84 private static final String CONTENT_AUTHORITY = "com.example.android.dragsource.fileprovider"; field in DragSourceFragment
210 return FileProvider.getUriForFile(getContext(), CONTENT_AUTHORITY, newFile); in getFileUri()