Searched defs:rowId (Results 1 - 7 of 7) 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/core/tests/coretests/src/android/app/activity/
H A DLocalProvider.java97 static public Uri getTableDataUriForRow(int rowId) { argument
98 return Uri.parse("content://" + AUTHORITY + "/" + TABLE_DATA_NAME + "/" + rowId);
156 long rowId = 0;
162 rowId = Long.parseLong(segment);
163 count = db.update("data", values, "_id=" + rowId, null);
171 if (false) Log.d(TAG, "*** notifyChange() rowId: " + rowId);
/frameworks/support/content/tests/java/android/support/content/
H A DTestContentProvider.java248 private void fillRow(RowBuilder row, int rowId) { argument
249 row.add(createCellValue(rowId, 0));
250 row.add(createCellValue(rowId, 1));
251 row.add(createCellValue(rowId, 2));
252 row.add(createCellValue(rowId, 3));
253 row.add(createCellValue(rowId, 4));
/frameworks/base/core/java/android/provider/
H A DMediaStore.java498 * @param rowId the file to get the URI for
502 long rowId) {
504 + "/file/" + rowId);
501 getContentUri(String volumeName, long rowId) argument
/frameworks/base/media/java/android/media/
H A DMediaScanner.java370 FileEntry(long rowId, String path, long lastModified, int format) { argument
371 mRowId = rowId;
936 long rowId = entry.mRowId;
937 if (MediaFile.isAudioFileType(mFileType) && (rowId == 0 || mMtpObjectHandle != 0)) {
1014 // notifications, ringtones, and alarms, because the rowId of the inserted file is
1033 if (rowId == 0) {
1047 // If the rowId of the inserted file is needed, it gets inserted immediately,
1061 rowId = ContentUris.parseId(result);
1062 entry.mRowId = rowId;
1066 result = ContentUris.withAppendedId(tableUri, rowId);
1111 setRingtoneIfNotSet(String settingName, Uri uri, long rowId) argument
1606 matchEntries(long rowId, String data) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DZenModePanel.java643 private void bind(final Condition condition, final View row, final int rowId) { argument
651 tag.rb = (RadioButton) mZenRadioGroup.getChildAt(rowId);
699 onClickTimeButton(row, tag, false /*down*/, rowId);
707 onClickTimeButton(row, tag, true /*up*/, rowId);
718 if (rowId != COUNTDOWN_ALARM_CONDITION_INDEX && time > 0) {
768 private void onClickTimeButton(View row, ConditionTag tag, boolean up, int rowId) { argument
800 bind(newCondition, row, rowId);
/frameworks/base/services/core/java/com/android/server/content/
H A DSyncManager.java3604 public void stopSyncEvent(long rowId, SyncOperation syncOperation, String resultMessage, argument
3608 mSyncStorageEngine.stopSyncEvent(rowId, elapsedTime,

Completed in 453 milliseconds