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.java193 * @param rowId of the row
196 private Uri getUriFor(Uri tableUri, ContentValues values, long rowId) { argument
207 return ContentUris.withAppendedId(tableUri, rowId);
882 final long rowId = db.insert(args.table, null, initialValues);
884 if (rowId <= 0) return null;
891 url = getUriFor(url, initialValues, rowId);
/frameworks/base/core/java/android/content/
H A DSyncManager.java2612 public void stopSyncEvent(long rowId, SyncOperation syncOperation, String resultMessage, argument
2618 mSyncStorageEngine.stopSyncEvent(rowId, elapsedTime,
/frameworks/base/core/java/android/provider/
H A DMediaStore.java412 * @param rowId the file to get the URI for
416 long rowId) {
418 + "/file/" + rowId);
415 getContentUri(String volumeName, long rowId) argument
/frameworks/base/media/java/android/media/
H A DMediaScanner.java359 FileEntry(long rowId, String path, long lastModified, int format) { argument
360 mRowId = rowId;
845 long rowId = entry.mRowId;
846 if (MediaFile.isAudioFileType(mFileType) && (rowId == 0 || mMtpObjectHandle != 0)) {
921 if (rowId == 0) {
933 // notifications, ringtones, and alarms, because the rowId of the inserted file is
957 // If the rowId of the inserted file is needed, it gets inserted immediately,
968 rowId = ContentUris.parseId(result);
969 entry.mRowId = rowId;
973 result = ContentUris.withAppendedId(tableUri, rowId);
1018 setSettingIfNotSet(String settingName, Uri uri, long rowId) argument
1544 matchEntries(long rowId, String data) argument
[all...]

Completed in 276 milliseconds