Home | History | Annotate | Download | only in cellbroadcastreceiver

Lines Matching refs:db

119         SQLiteDatabase db = mOpenHelper.getReadableDatabase();
120 Cursor c = qb.query(db, projection, selection, selectionArgs, null, null, orderBy);
190 SQLiteDatabase db = mOpenHelper.getWritableDatabase();
196 // Use duplicate message ID detection in CellBroadcastAlertService instead of DB query.
198 long rowId = db.insert(CellBroadcastDatabaseHelper.TABLE_NAME, null, cv);
201 // Return true on DB write failure because we still want to notify the user.
216 SQLiteDatabase db = mOpenHelper.getWritableDatabase();
218 int rowCount = db.delete(CellBroadcastDatabaseHelper.TABLE_NAME,
234 SQLiteDatabase db = mOpenHelper.getWritableDatabase();
236 int rowCount = db.delete(CellBroadcastDatabaseHelper.TABLE_NAME, null, null);
255 SQLiteDatabase db = mOpenHelper.getWritableDatabase();
263 int rowCount = db.update(CellBroadcastDatabaseHelper.TABLE_NAME, cv, whereClause, whereArgs);