Searched defs:CONTENT_URI (Results 1 - 25 of 25) sorted by relevance

/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
H A DQuickResponse.java31 public static Uri CONTENT_URI; field in class:QuickResponse
35 CONTENT_URI = Uri.parse(EmailContent.CONTENT_URI + "/quickresponse");
36 ACCOUNT_ID_URI = Uri.parse(EmailContent.CONTENT_URI + "/quickresponse/account");
H A DMessageMove.java29 public static Uri CONTENT_URI; field in class:MessageMove
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, messageI
[all...]
H A DMessageStateChange.java28 public static Uri CONTENT_URI; field in class:MessageStateChange
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);
H A DHostAuth.java37 public static Uri CONTENT_URI; field in class:HostAuth
40 CONTENT_URI = Uri.parse(EmailContent.CONTENT_URI + "/hostauth");
89 mBaseUri = CONTENT_URI;
103 HostAuth.CONTENT_URI, HostAuth.CONTENT_PROJECTION, id);
174 mBaseUri = CONTENT_URI;
339 mBaseUri = CONTENT_URI;
H A DPolicy.java43 public static Uri CONTENT_URI; field in class:Policy
46 CONTENT_URI = Uri.parse(EmailContent.CONTENT_URI + "/policy");
130 mBaseUri = CONTENT_URI;
138 return EmailContent.restoreContentWithId(context, Policy.class, Policy.CONTENT_URI,
143 return Utility.getFirstRowLong(context, Account.CONTENT_URI, Account.ID_PROJECTION,
184 Cursor c = resolver.query(Attachment.CONTENT_URI, ATTACHMENT_RESET_PROJECTION,
205 resolver.update(ContentUris.withAppendedId(Attachment.CONTENT_URI, id),
299 mBaseUri = CONTENT_URI;
493 mBaseUri = CONTENT_URI;
[all...]
H A DAccount.java116 public static Uri CONTENT_URI; field in class:Account
121 CONTENT_URI = Uri.parse(EmailContent.CONTENT_URI + "/account");
122 RESET_NEW_MESSAGE_COUNT_URI = Uri.parse(EmailContent.CONTENT_URI + "/resetNewMessageCount");
216 mBaseUri = CONTENT_URI;
228 Account.CONTENT_URI, Account.CONTENT_PROJECTION, id);
260 mBaseUri = CONTENT_URI;
496 return CONTENT_URI.buildUpon().appendEncodedPath(uuid).build();
540 CONTENT_URI, ID_PROJECTION,
553 CONTENT_URI, ID_PROJECTIO
[all...]
H A DMailbox.java80 public static Uri CONTENT_URI; field in class:Mailbox
84 CONTENT_URI = Uri.parse(EmailContent.CONTENT_URI + "/mailbox");
85 MESSAGE_COUNT_URI = Uri.parse(EmailContent.CONTENT_URI + "/mailboxCount");
413 mBaseUri = CONTENT_URI;
457 Mailbox.CONTENT_URI, Mailbox.CONTENT_PROJECTION, id);
513 Mailbox.CONTENT_URI,
576 mBaseUri = CONTENT_URI;
666 return Utility.getFirstRowLong(context, Mailbox.CONTENT_URI,
701 Uri url = ContentUris.withAppendedId(Mailbox.CONTENT_URI, mailboxI
[all...]
H A DEmailContent.java124 public static Uri CONTENT_URI; field in class:EmailContent
149 CONTENT_URI = Uri.parse("content://" + AUTHORITY);
326 public static Uri CONTENT_URI; field in class:EmailContent.Body
329 CONTENT_URI = Uri.parse(EmailContent.CONTENT_URI + "/body");
396 mBaseUri = CONTENT_URI;
432 Uri u = ContentUris.withAppendedId(Body.CONTENT_URI, id);
440 Cursor c = context.getContentResolver().query(Body.CONTENT_URI,
451 return Utility.getFirstRowLong(context, Body.CONTENT_URI,
468 resolver.insert(CONTENT_URI, value
613 public static Uri CONTENT_URI; field in class:EmailContent.Message
1208 public static final String CONTENT_URI = "contentUri"; field in interface:EmailContent.AttachmentColumns
1242 public static Uri CONTENT_URI; field in class:EmailContent.Attachment
[all...]
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
H A DBluetoothOppLiveFolder.java47 public static final Uri CONTENT_URI = Uri field in class:BluetoothOppLiveFolder
58 setResult(RESULT_OK, createLiveFolder(this, CONTENT_URI, this
73 Constants.ACTION_OPEN, BluetoothShare.CONTENT_URI));
H A DBluetoothShare.java56 public static final Uri CONTENT_URI = Uri.parse("content://com.android.bluetooth.opp/btopp"); field in class:BluetoothShare
/packages/providers/PartnerBookmarksProvider/src/com/android/providers/partnerbookmarks/
H A DPartnerBookmarksContract.java71 public static final Uri CONTENT_URI = Uri.withAppendedPath(AUTHORITY_URI, "bookmarks"); field in class:PartnerBookmarksContract.Bookmarks
77 Uri.withAppendedPath(CONTENT_URI, "folder");
88 * The MIME type of {@link #CONTENT_URI} providing a directory of bookmarks.
93 * The MIME type of a {@link #CONTENT_URI} of a single bookmark.
/packages/apps/DeskClock/src/com/android/deskclock/provider/
H A DClockContract.java95 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/alarms"); field in interface:ClockContract.AlarmsColumns
137 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/instances"); field in interface:ClockContract.InstancesColumns
259 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/cities"); field in interface:ClockContract.CitiesColumns
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/provider/
H A DSharedImageProvider.java39 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/image"); field in class:SharedImageProvider
/packages/apps/Gallery2/src/com/android/gallery3d/gadget/
H A DLocalPhotoSource.java50 private static final Uri CONTENT_URI = Media.EXTERNAL_CONTENT_URI; field in class:LocalPhotoSource
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/Gallery2/src/com/android/photos/data/
H A DPhotoSetLoader.java38 private static final Uri CONTENT_URI = Files.getContentUri("external"); field in class:PhotoSetLoader
67 super(context, CONTENT_URI, PROJECTION, SELECTION, null, SORT_ORDER);
H A DPhotoProvider.java40 * accessed by this provider. Use Photos.CONTENT_URI to query all photos and
41 * videos. Use Albums.CONTENT_URI to query all albums. Use Metadata.CONTENT_URI
67 * Contains columns that can be accessed via Accounts.CONTENT_URI
77 public static final Uri CONTENT_URI = Uri.withAppendedPath(BASE_CONTENT_URI, TABLE); field in interface:PhotoProvider.Accounts
85 * Contains columns that can be accessed via Photos.CONTENT_URI.
97 public static final Uri CONTENT_URI = Uri.withAppendedPath(BASE_CONTENT_URI, TABLE); field in interface:PhotoProvider.Photos
136 public static final Uri CONTENT_URI = Uri.withAppendedPath(BASE_CONTENT_URI, TABLE); field in interface:PhotoProvider.Albums
173 public static final Uri CONTENT_URI = Uri.withAppendedPath(BASE_CONTENT_URI, TABLE); field in interface:PhotoProvider.Metadata
481 deleteCascade(Metadata.CONTENT_URI, MATCH_METADAT
[all...]
/packages/apps/Launcher2/src/com/android/launcher2/
H A DLauncherSettings.java100 static final Uri CONTENT_URI = Uri.parse("content://" + field in class:LauncherSettings.Favorites
/packages/providers/UserDictionaryProvider/src/com/android/providers/userdictionary/
H A DUserDictionaryProvider.java61 private static final Uri CONTENT_URI = UserDictionary.CONTENT_URI; field in class:UserDictionaryProvider
211 Uri wordUri = ContentUris.withAppendedId(UserDictionary.Words.CONTENT_URI, rowId);
/packages/apps/Browser/src/com/android/browser/provider/
H A DSnapshotProvider.java39 public static final Uri CONTENT_URI = Uri.withAppendedPath( field in interface:SnapshotProvider.Snapshots
H A DBrowserProvider2.java81 public static final Uri CONTENT_URI = Uri.withAppendedPath( field in interface:BrowserProvider2.Thumbnails
88 public static final Uri CONTENT_URI = Uri.withAppendedPath( field in interface:BrowserProvider2.OmniboxSuggestions
1554 Uri uri = ContentUris.withAppendedId(Bookmarks.CONTENT_URI, id);
1760 postNotifyUri(Bookmarks.CONTENT_URI);
1765 postNotifyUri(History.CONTENT_URI);
1945 Uri insertUri = insertInTransaction(Bookmarks.CONTENT_URI,
1957 Uri uri = ContentUris.withAppendedId(Bookmarks.CONTENT_URI, id);
2019 Cursor cursor = query(History.CONTENT_URI,
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
H A DCellBroadcastContentProvider.java48 static final Uri CONTENT_URI = Uri.parse("content://cellbroadcasts/"); field in class:CellBroadcastContentProvider
122 c.setNotificationUri(getContext().getContentResolver(), CONTENT_URI);
311 mContentResolver.notifyChange(CONTENT_URI, null, false);
/packages/apps/Launcher3/src/com/android/launcher3/
H A DLauncherSettings.java111 static final Uri CONTENT_URI = Uri.parse("content://" + field in class:LauncherSettings.WorkspaceScreens
129 static final Uri CONTENT_URI = Uri.parse("content://" + field in class:LauncherSettings.Favorites
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
H A DDictionaryProvider.java52 public static final Uri CONTENT_URI = field in class:DictionaryProvider
/packages/apps/Camera2/src/com/android/camera/data/
H A DLocalMediaData.java303 static final Uri CONTENT_URI = MediaStore.Images.Media.EXTERNAL_CONTENT_URI; field in class:LocalMediaData.PhotoData
422 cr.delete(CONTENT_URI, MediaStore.Images.ImageColumns._ID + "=" + mContentId, null);
428 Uri baseUri = CONTENT_URI;
586 static final Uri CONTENT_URI = MediaStore.Video.Media.EXTERNAL_CONTENT_URI; field in class:LocalMediaData.VideoData
708 cr.delete(CONTENT_URI, MediaStore.Video.VideoColumns._ID + "=" + mContentId, null);
714 Uri baseUri = CONTENT_URI;
/packages/apps/UnifiedEmail/src/com/android/mail/providers/
H A DUIProvider.java1847 AttachmentColumns.CONTENT_URI,
2012 public static final String CONTENT_URI = "contentUri"; field in class:UIProvider.AttachmentColumns

Completed in 446 milliseconds