Searched defs:rowId (Results 1 - 5 of 5) sorted by relevance

/frameworks/ex/common/java/com/android/common/content/
H A DSyncStateContentProviderHelper.java100 public int update(SQLiteDatabase db, long rowId, Object data) { argument
102 new String[]{Long.toString(rowId)}) < 1) {
107 + " WHERE " + SyncStateContract.Columns._ID + "=" + rowId,
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsProvider.java201 * @param rowId of the row
204 private Uri getUriFor(Uri tableUri, ContentValues values, long rowId) { argument
215 return ContentUris.withAppendedId(tableUri, rowId);
931 final long rowId = db.insert(args.table, null, initialValues);
933 if (rowId <= 0) return null;
940 url = getUriFor(url, initialValues, rowId);
/frameworks/base/core/java/android/provider/
H A DMediaStore.java421 * @param rowId the file to get the URI for
425 long rowId) {
427 + "/file/" + rowId);
424 getContentUri(String volumeName, long rowId) argument
/frameworks/base/media/java/android/media/
H A DMediaScanner.java361 FileEntry(long rowId, String path, long lastModified, int format) { argument
362 mRowId = rowId;
848 long rowId = entry.mRowId;
849 if (MediaFile.isAudioFileType(mFileType) && (rowId == 0 || mMtpObjectHandle != 0)) {
924 if (rowId == 0) {
936 // notifications, ringtones, and alarms, because the rowId of the inserted file is
960 // If the rowId of the inserted file is needed, it gets inserted immediately,
974 rowId = ContentUris.parseId(result);
975 entry.mRowId = rowId;
979 result = ContentUris.withAppendedId(tableUri, rowId);
1024 setSettingIfNotSet(String settingName, Uri uri, long rowId) argument
1535 matchEntries(long rowId, String data) argument
[all...]
/frameworks/base/services/java/com/android/server/content/
H A DSyncManager.java2859 public void stopSyncEvent(long rowId, SyncOperation syncOperation, String resultMessage, argument
2865 mSyncStorageEngine.stopSyncEvent(rowId, elapsedTime,

Completed in 2176 milliseconds