Home | History | Annotate | Download | only in cellbroadcastreceiver

Lines Matching refs:db

121         SQLiteDatabase db = mOpenHelper.getReadableDatabase();
122 Cursor c = qb.query(db, projection, selection, selectionArgs, null, null, orderBy);
192 SQLiteDatabase db = mOpenHelper.getWritableDatabase();
198 // Use duplicate message ID detection in CellBroadcastAlertService instead of DB query.
200 long rowId = db.insert(CellBroadcastDatabaseHelper.TABLE_NAME, null, cv);
203 // Return true on DB write failure because we still want to notify the user.
218 SQLiteDatabase db = mOpenHelper.getWritableDatabase();
220 int rowCount = db.delete(CellBroadcastDatabaseHelper.TABLE_NAME,
236 SQLiteDatabase db = mOpenHelper.getWritableDatabase();
238 int rowCount = db.delete(CellBroadcastDatabaseHelper.TABLE_NAME, null, null);
257 SQLiteDatabase db = mOpenHelper.getWritableDatabase();
265 int rowCount = db.update(CellBroadcastDatabaseHelper.TABLE_NAME, cv, whereClause, whereArgs);