HomeSort by relevance Sort by last modified time
    Searched defs:CONTENT_URI (Results 51 - 75 of 141) sorted by null

1 23 4 5 6

  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
CarrierProvider.java 46 static final Uri CONTENT_URI = Uri.parse(URL);
84 Uri newUri = ContentUris.withAppendedId(CONTENT_URI, row);
85 getContext().getContentResolver().notifyChange(CONTENT_URI, null);
119 getContext().getContentResolver().notifyChange(CONTENT_URI, null);
  /cts/tests/tests/content/src/android/content/cts/
DummyProvider.java 49 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY);
50 public static final Uri CONTENT_URI_MOCK_OPERATION = Uri.withAppendedPath(CONTENT_URI,
  /cts/tests/tests/database/src/android/database/cts/
ContentObserverTest.java 28 private static final Uri CONTENT_URI = Uri.parse("content://uri");
78 contentObserver.dispatchChange(true, CONTENT_URI);
81 assertEquals(CONTENT_URI, contentObserver.getUri());
87 contentObserver.dispatchChange(false, CONTENT_URI);
90 assertEquals(CONTENT_URI, contentObserver.getUri());
101 contentObserver.dispatchChange(true, CONTENT_URI);
104 assertEquals(CONTENT_URI, contentObserver.getUri());
110 contentObserver.dispatchChange(false, CONTENT_URI);
113 assertEquals(CONTENT_URI, contentObserver.getUri());
  /external/ims/rcs/presencepolling/src/com/android/service/ims/presence/
Contacts.java 63 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY);
72 * CONTENT_URI
77 public static final Uri CONTENT_URI =
78 Uri.withAppendedPath(Contacts.CONTENT_URI, TABLE_NAME);
  /frameworks/base/core/java/android/provider/
BlockedNumberContract.java 83 * Uri uri = getContentResolver().insert(BlockedNumbers.CONTENT_URI, values);
89 * Uri uri = getContentResolver().insert(BlockedNumbers.CONTENT_URI, values);
94 * Uri uri = getContentResolver().insert(BlockedNumbers.CONTENT_URI, values);
111 * Uri uri = getContentResolver().insert(BlockedNumbers.CONTENT_URI, values);
123 * Cursor c = getContentResolver().query(BlockedNumbers.CONTENT_URI,
177 public static final Uri CONTENT_URI = Uri.withAppendedPath(AUTHORITY_URI, "blocked");
180 * The MIME type of {@link #CONTENT_URI} itself providing a directory of blocked phone
186 * The MIME type of a blocked phone number under {@link #CONTENT_URI}.
287 * {@link BlockedNumbers#CONTENT_URI} URI.
BrowserContract.java 254 public static final Uri CONTENT_URI = Uri.withAppendedPath(AUTHORITY_URI, "bookmarks");
304 Uri.withAppendedPath(CONTENT_URI, "folder");
328 * The MIME type of {@link #CONTENT_URI} providing a directory of bookmarks.
333 * The MIME type of a {@link #CONTENT_URI} of a single bookmark.
408 * Directory under {@link Bookmarks#CONTENT_URI}
410 public static final Uri CONTENT_URI =
447 public static final Uri CONTENT_URI = Uri.withAppendedPath(AUTHORITY_URI, "history");
450 * The MIME type of {@link #CONTENT_URI} providing a directory of browser history items.
455 * The MIME type of a {@link #CONTENT_URI} of a single browser history item.
470 public static final Uri CONTENT_URI = Uri.withAppendedPath(AUTHORITY_URI, "searches")
    [all...]
Downloads.java 91 public static final Uri CONTENT_URI =
124 * or Downloads.CONTENT_URI if the notification is associated with
813 context.getContentResolver().delete(Impl.CONTENT_URI, QUERY_WHERE_CLAUSE,
VoicemailContract.java 167 public static final Uri CONTENT_URI =
394 return Voicemails.CONTENT_URI.buildUpon()
476 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/status");
695 return Status.CONTENT_URI.buildUpon()
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
CarrierNetworkConfig.java 53 private static final Uri CONTENT_URI = Uri.parse("content://carrier_information/carrier");
73 framework.registerContentObserver(context, CONTENT_URI, false,
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothShare.java 56 public static final Uri CONTENT_URI = Uri.parse("content://com.android.bluetooth.opp/btopp");
  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastContentProvider.java 49 static final Uri CONTENT_URI = Uri.parse("content://cellbroadcasts/");
124 c.setNotificationUri(getContext().getContentResolver(), CONTENT_URI);
313 mContentResolver.notifyChange(CONTENT_URI, null, false);
  /packages/apps/Dialer/java/com/android/dialer/calllog/database/contract/
AnnotatedCallLogContract.java 30 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY);
173 public static final Uri CONTENT_URI =
174 Uri.withAppendedPath(AnnotatedCallLogContract.CONTENT_URI, TABLE);
178 Uri.withAppendedPath(AnnotatedCallLogContract.CONTENT_URI, DISTINCT_PHONE_NUMBERS);
234 public static final Uri CONTENT_URI =
235 Uri.withAppendedPath(AnnotatedCallLogContract.CONTENT_URI, TABLE);
  /packages/apps/Dialer/java/com/android/dialer/phonelookup/database/
PhoneLookupHistoryContentProvider.java 116 getContext().getContentResolver(), PhoneLookupHistory.CONTENT_URI);
308 notifyChange(PhoneLookupHistory.CONTENT_URI);
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
Credential.java 21 public static Uri CONTENT_URI;
26 CONTENT_URI = Uri.parse(EmailContent.CONTENT_URI + "/credential");
64 mBaseUri = CONTENT_URI;
69 mBaseUri = CONTENT_URI;
83 Credential.CONTENT_URI, CredentialQuery.PROJECTION, id);
88 mBaseUri = CONTENT_URI;
134 mBaseUri = CONTENT_URI;
MessageMove.java 29 public static Uri CONTENT_URI;
106 CONTENT_URI = EmailContent.CONTENT_URI.buildUpon().appendEncodedPath(PATH).build();
121 final Cursor c = getCursor(cr, CONTENT_URI, ProjectionMoveQuery.PROJECTION, accountId);
179 deleteRowsForMessages(cr, CONTENT_URI, unmovedMessages, unmovedMessagesCount);
195 deleteRowsForMessages(cr, CONTENT_URI, messageKeys, count);
206 retryMessages(cr, CONTENT_URI, messageKeys, count);
217 failMessages(cr, CONTENT_URI, messageKeys, count);
230 final Cursor moveCursor = cr.query(CONTENT_URI, ProjectionLastSyncedMailboxQuery.PROJECTION,
247 EmailContent.Message.CONTENT_URI, messageId)
    [all...]
MessageStateChange.java 28 public static Uri CONTENT_URI;
99 CONTENT_URI = EmailContent.CONTENT_URI.buildUpon().appendEncodedPath(PATH).build();
115 final Cursor c = getCursor(cr, CONTENT_URI, ProjectionChangeQuery.PROJECTION, accountId);
186 deleteRowsForMessages(cr, CONTENT_URI, unchangedMessages, unchangedMessagesCount);
227 deleteRowsForMessages(cr, CONTENT_URI, messageKeys, count);
238 retryMessages(cr, CONTENT_URI, messageKeys, count);
  /packages/apps/Gallery2/src/com/android/gallery3d/gadget/
LocalPhotoSource.java 50 private static final Uri CONTENT_URI = Media.EXTERNAL_CONTENT_URI;
78 .registerContentObserver(CONTENT_URI, true, mContentObserver);
89 return CONTENT_URI.buildUpon()
125 CONTENT_URI, COUNT_PROJECTION, SELECTION, null, null);
145 CONTENT_URI, COUNT_PROJECTION,
171 CONTENT_URI, PROJECTION, SELECTION, null, ORDER);
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherSettings.java 101 public static final Uri CONTENT_URI = Uri.parse("content://" +
121 public static final Uri CONTENT_URI = Uri.parse("content://" +
292 public static final Uri CONTENT_URI = Uri.parse("content://" +
312 return cr.call(CONTENT_URI, method, null, null);
  /packages/apps/TV/common/src/com/android/tv/common/
CommonPreferenceProvider.java 61 return Preferences.CONTENT_URI.buildUpon().appendPath(key).build();
68 Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/" + PATH_PREFERENCES);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
LoaderThrottle.java 83 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/main");
93 * The MIME type of {@link #CONTENT_URI}.
99 * The MIME type of a {@link #CONTENT_URI} sub-directory of a single row.
445 cr.insert(MainTable.CONTENT_URI, values);
466 cr.delete(MainTable.CONTENT_URI, null, null);
490 CursorLoader cl = new CursorLoader(getActivity(), MainTable.CONTENT_URI,
  /frameworks/support/samples/Support4Demos/src/main/java/com/example/android/supportv4/app/
LoaderThrottleSupport.java 86 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/main");
96 * The MIME type of {@link #CONTENT_URI}.
102 * The MIME type of a {@link #CONTENT_URI} sub-directory of a single row.
448 cr.insert(MainTable.CONTENT_URI, values);
468 cr.delete(MainTable.CONTENT_URI, null, null);
494 CursorLoader cl = new CursorLoader(getActivity(), MainTable.CONTENT_URI,
  /packages/apps/Bluetooth/lib/mapapi/com/android/bluetooth/mapapi/
BluetoothMapIMProvider.java 52 private Uri CONTENT_URI = null;
57 * @return the CONTENT_URI exposed. This will be used to send out notifications.
  /packages/apps/Calendar/src/com/android/calendar/
DeleteEventHelper.java 138 Uri uri = ContentUris.withAppendedId(CalendarContract.Events.CONTENT_URI, id);
210 Uri uri = ContentUris.withAppendedId(CalendarContract.Events.CONTENT_URI, eventId);
349 Uri uri = ContentUris.withAppendedId(CalendarContract.Events.CONTENT_URI, id);
391 mService.startInsert(mService.getNextToken(), null, Events.CONTENT_URI, values,
396 Uri uri = ContentUris.withAppendedId(CalendarContract.Events.CONTENT_URI, id);
405 Uri uri = ContentUris.withAppendedId(CalendarContract.Events.CONTENT_URI, id);
430 Uri uri = ContentUris.withAppendedId(CalendarContract.Events.CONTENT_URI, id);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
VoicemailContentTable.java 277 c.setNotificationUri(mContext.getContentResolver(), Voicemails.CONTENT_URI);
  /development/samples/training/ContactsList/src/com/example/android/contactslist/ui/
ContactsListFragment.java 438 final Intent intent = new Intent(Intent.ACTION_INSERT, Contacts.CONTENT_URI);
466 contentUri = ContactsQuery.CONTENT_URI;
507 Contacts.CONTENT_URI, String.valueOf(data.getLong(ContactsQuery.ID)));
590 final Uri contactUri = Uri.withAppendedPath(Contacts.CONTENT_URI, photoData);
    [all...]

Completed in 540 milliseconds

1 23 4 5 6