Home | History | Annotate | Download | only in opp

Lines Matching refs:updateValues

178          * ContentValues updateValues = new ContentValues();
179 * updateValues.put(BluetoothShare.TOTAL_BYTES, 120000);
180 * getContentResolver().update(contentUri1,updateValues,null,null);
193 * updateValues.put(BluetoothShare.CURRENT_BYTES, currentByte);
194 * getContentResolver().update(contentUri1,updateValues,null,null); } }
289 ContentValues updateValues = new ContentValues();
291 // updateValues.put(BluetoothShare.TOTAL_BYTES, "120000");
292 // updateValues.put(BluetoothShare.CURRENT_BYTES, mCurrentByte);
293 // updateValues.put(BluetoothShare.VISIBILITY,
295 updateValues.put(BluetoothShare.USER_CONFIRMATION,
297 getContentResolver().update(contentUri, updateValues, null, null);
305 ContentValues updateValues = new ContentValues();
307 // updateValues.put(BluetoothShare.TOTAL_BYTES, "120000");
308 // updateValues.put(BluetoothShare.CURRENT_BYTES, mCurrentByte);
309 updateValues.put(BluetoothShare.VISIBILITY, BluetoothShare.VISIBILITY_HIDDEN);
310 // updateValues.put(BluetoothShare.USER_CONFIRMATION,
312 getContentResolver().update(contentUri, updateValues, null, null);