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/ |
D | SyncUtils.java | 36 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()
|
D | EntryListFragment.java | 347 account, FeedContract.CONTENT_AUTHORITY); 349 account, FeedContract.CONTENT_AUTHORITY);
|
D | SyncAdapter.java | 284 mContentResolver.applyBatch(FeedContract.CONTENT_AUTHORITY, batch); in updateLocalFeedData()
|
/developers/samples/android/connectivity/sync/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/provider/ |
D | FeedContract.java | 34 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);
|
D | FeedProvider.java | 36 private static final String AUTHORITY = FeedContract.CONTENT_AUTHORITY;
|
/developers/samples/android/ui/window/DragAndDropAcrossApps/DragSource/src/main/java/com/example/android/dragsource/ |
D | DragSourceFragment.java | 84 private static final String CONTENT_AUTHORITY = "com.example.android.dragsource.fileprovider"; field in DragSourceFragment 210 return FileProvider.getUriForFile(getContext(), CONTENT_AUTHORITY, newFile); in getFileUri()
|