Searched refs:TABLE_PDU (Results 1 – 3 of 3) sorted by relevance
138 " FROM " + MmsProvider.TABLE_PDU +598 db.execSQL("CREATE TABLE " + MmsProvider.TABLE_PDU + " (" + in createMmsTables()670 "SELECT * FROM " + MmsProvider.TABLE_PDU + " WHERE " + in createMmsTables()683 db.execSQL("CREATE TRIGGER part_cleanup DELETE ON " + MmsProvider.TABLE_PDU + " " + in createMmsTriggers()691 db.execSQL("CREATE TRIGGER addr_cleanup DELETE ON " + MmsProvider.TABLE_PDU + " " + in createMmsTriggers()701 "AFTER DELETE ON " + MmsProvider.TABLE_PDU + " " + in createMmsTriggers()704 " DELETE FROM " + MmsProvider.TABLE_PDU + in createMmsTriggers()726 "AFTER DELETE ON " + MmsProvider.TABLE_PDU + " " + in createMmsTriggers()735 "AFTER UPDATE ON " + MmsProvider.TABLE_PDU + " " + in createMmsTriggers()803 " ON " + MmsProvider.TABLE_PDU + " " + in createMmsTriggers()[all …]
59 static final String TABLE_PDU = "pdu"; field in MmsProvider85 return accessRestricted ? VIEW_PDU_RESTRICTED : TABLE_PDU; in getPduTable()318 String table = TABLE_PDU; in insert()368 if (table.equals(TABLE_PDU)) { in insert()593 table = TABLE_PDU; in delete()602 table = TABLE_PDU; in delete()635 if (TABLE_PDU.equals(table)) { in delete()654 Cursor cursor = db.query(TABLE_PDU, new String[] { Mms._ID }, in deleteMessages()673 int count = db.delete(TABLE_PDU, selection, selectionArgs); in deleteMessages()760 table = TABLE_PDU; in update()[all …]
1348 return db.update(MmsProvider.TABLE_PDU, values, finalSelection, selectionArgs) in updateConversation()