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

  /developers/build/prebuilts/gradle/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/
SyncUtils.java 36 private static final String CONTENT_AUTHORITY = FeedContract.CONTENT_AUTHORITY;
58 ContentResolver.setIsSyncable(account, CONTENT_AUTHORITY, 1);
60 ContentResolver.setSyncAutomatically(account, CONTENT_AUTHORITY, true);
64 account, CONTENT_AUTHORITY, new Bundle(),SYNC_FREQUENCY);
96 FeedContract.CONTENT_AUTHORITY, // Content authority
EntryListFragment.java 347 account, FeedContract.CONTENT_AUTHORITY);
349 account, FeedContract.CONTENT_AUTHORITY);
SyncAdapter.java 284 mContentResolver.applyBatch(FeedContract.CONTENT_AUTHORITY, batch);
  /developers/samples/android/connectivity/sync/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/
SyncUtils.java 36 private static final String CONTENT_AUTHORITY = FeedContract.CONTENT_AUTHORITY;
58 ContentResolver.setIsSyncable(account, CONTENT_AUTHORITY, 1);
60 ContentResolver.setSyncAutomatically(account, CONTENT_AUTHORITY, true);
64 account, CONTENT_AUTHORITY, new Bundle(),SYNC_FREQUENCY);
96 FeedContract.CONTENT_AUTHORITY, // Content authority
EntryListFragment.java 347 account, FeedContract.CONTENT_AUTHORITY);
349 account, FeedContract.CONTENT_AUTHORITY);
SyncAdapter.java 284 mContentResolver.applyBatch(FeedContract.CONTENT_AUTHORITY, batch);
  /development/samples/browseable/BasicSyncAdapter/src/com.example.android.basicsyncadapter/
SyncUtils.java 36 private static final String CONTENT_AUTHORITY = FeedContract.CONTENT_AUTHORITY;
58 ContentResolver.setIsSyncable(account, CONTENT_AUTHORITY, 1);
60 ContentResolver.setSyncAutomatically(account, CONTENT_AUTHORITY, true);
64 account, CONTENT_AUTHORITY, new Bundle(),SYNC_FREQUENCY);
96 FeedContract.CONTENT_AUTHORITY, // Content authority
EntryListFragment.java 347 account, FeedContract.CONTENT_AUTHORITY);
349 account, FeedContract.CONTENT_AUTHORITY);
SyncAdapter.java 284 mContentResolver.applyBatch(FeedContract.CONTENT_AUTHORITY, batch);
  /developers/build/prebuilts/androidtv/sample-inputs/app/src/main/java/com/example/android/sampletvinput/syncadapter/
SyncUtils.java 32 private static final String CONTENT_AUTHORITY = TvContract.AUTHORITY;
42 ContentResolver.setIsSyncable(account, CONTENT_AUTHORITY, 1);
43 ContentResolver.setSyncAutomatically(account, CONTENT_AUTHORITY, true);
46 ContentResolver.addPeriodicSync(account, CONTENT_AUTHORITY, bundle,
55 ContentResolver.requestSync(DummyAccountService.getAccount(ACCOUNT_TYPE), CONTENT_AUTHORITY,
  /developers/build/prebuilts/gradle/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/provider/
FeedContract.java 34 public static final String CONTENT_AUTHORITY = "com.example.android.basicsyncadapter";
39 public static final Uri BASE_CONTENT_URI = Uri.parse("content://" + CONTENT_AUTHORITY);
FeedProvider.java 36 private static final String AUTHORITY = FeedContract.CONTENT_AUTHORITY;
  /developers/samples/android/connectivity/sync/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/provider/
FeedContract.java 34 public static final String CONTENT_AUTHORITY = "com.example.android.basicsyncadapter";
39 public static final Uri BASE_CONTENT_URI = Uri.parse("content://" + CONTENT_AUTHORITY);
FeedProvider.java 36 private static final String AUTHORITY = FeedContract.CONTENT_AUTHORITY;
  /development/samples/browseable/BasicSyncAdapter/src/com.example.android.basicsyncadapter/provider/
FeedContract.java 34 public static final String CONTENT_AUTHORITY = "com.example.android.basicsyncadapter";
39 public static final Uri BASE_CONTENT_URI = Uri.parse("content://" + CONTENT_AUTHORITY);
FeedProvider.java 36 private static final String AUTHORITY = FeedContract.CONTENT_AUTHORITY;
  /packages/apps/Messaging/src/com/android/messaging/datamodel/
MessagingContentProvider.java 59 private static final String CONTENT_AUTHORITY = "content://" + AUTHORITY + '/';
64 public static final Uri CONVERSATIONS_URI = Uri.parse(CONTENT_AUTHORITY + CONVERSATIONS_QUERY);
65 static final Uri PARTS_URI = Uri.parse(CONTENT_AUTHORITY + DatabaseHelper.PARTS_TABLE);
70 static final Uri MESSAGES_URI = Uri.parse(CONTENT_AUTHORITY + MESSAGES_QUERY);
72 public static final Uri CONVERSATION_MESSAGES_URI = Uri.parse(CONTENT_AUTHORITY +
82 static final Uri CONVERSATION_PARTICIPANTS_URI = Uri.parse(CONTENT_AUTHORITY +
85 public static final Uri PARTICIPANTS_URI = Uri.parse(CONTENT_AUTHORITY + PARTICIPANTS_QUERY);
90 public static final Uri CONVERSATION_IMAGES_URI = Uri.parse(CONTENT_AUTHORITY +
95 public static final Uri DRAFT_IMAGES_URI = Uri.parse(CONTENT_AUTHORITY +
106 final Uri uri = Uri.parse(CONTENT_AUTHORITY);
    [all...]
  /developers/build/prebuilts/gradle/DragAndDropAcrossApps/DragSource/src/main/java/com/example/android/dragsource/
DragSourceFragment.java 84 private static final String CONTENT_AUTHORITY = "com.example.android.dragsource.fileprovider";
210 return FileProvider.getUriForFile(getContext(), CONTENT_AUTHORITY, newFile);
  /developers/samples/android/ui/window/DragAndDropAcrossApps/DragSource/src/main/java/com/example/android/dragsource/
DragSourceFragment.java 84 private static final String CONTENT_AUTHORITY = "com.example.android.dragsource.fileprovider";
210 return FileProvider.getUriForFile(getContext(), CONTENT_AUTHORITY, newFile);
  /development/samples/browseable/DragAndDropAcrossApps/DragSource/src/com.example.android/dragsource/
DragSourceFragment.java 84 private static final String CONTENT_AUTHORITY = "com.example.android.dragsource.fileprovider";
210 return FileProvider.getUriForFile(getContext(), CONTENT_AUTHORITY, newFile);

Completed in 367 milliseconds