Home | History | Annotate | Download | only in cellbroadcastreceiver

Lines Matching refs:delete

162      * Delete one or more rows. This throws an exception, as the database can only be modified by
169 public int delete(Uri uri, String selection, String[] selectionArgs) {
170 throw new UnsupportedOperationException("delete not supported");
213 * Internal method to delete a cell broadcast by row ID and notify observers.
214 * @param rowId the row ID of the broadcast to delete
220 int rowCount = db.delete(CellBroadcastDatabaseHelper.TABLE_NAME,
226 Log.e(TAG, "failed to delete broadcast at row " + rowId);
232 * Internal method to delete all cell broadcasts and notify observers.
238 int rowCount = db.delete(CellBroadcastDatabaseHelper.TABLE_NAME, null, null);
242 Log.e(TAG, "failed to delete all broadcasts");