Searched refs:TABLE_PDU (Results 1 – 3 of 3) sorted by relevance
151 " FROM " + MmsProvider.TABLE_PDU +728 db.execSQL("CREATE TABLE " + MmsProvider.TABLE_PDU + " (" + in createMmsTables()800 "SELECT * FROM " + MmsProvider.TABLE_PDU + " WHERE " + in createMmsTables()813 db.execSQL("CREATE TRIGGER part_cleanup DELETE ON " + MmsProvider.TABLE_PDU + " " + in createMmsTriggers()821 db.execSQL("CREATE TRIGGER addr_cleanup DELETE ON " + MmsProvider.TABLE_PDU + " " + in createMmsTriggers()831 "AFTER DELETE ON " + MmsProvider.TABLE_PDU + " " + in createMmsTriggers()834 " DELETE FROM " + MmsProvider.TABLE_PDU + in createMmsTriggers()856 "AFTER DELETE ON " + MmsProvider.TABLE_PDU + " " + in createMmsTriggers()865 "AFTER UPDATE ON " + MmsProvider.TABLE_PDU + " " + in createMmsTriggers()933 " ON " + MmsProvider.TABLE_PDU + " " + in createMmsTriggers()[all …]
62 static final String TABLE_PDU = "pdu"; field in MmsProvider88 return accessRestricted ? VIEW_PDU_RESTRICTED : TABLE_PDU; in getPduTable()317 String table = TABLE_PDU; in insert()368 if (table.equals(TABLE_PDU)) { in insert()637 table = TABLE_PDU; in delete()646 table = TABLE_PDU; in delete()679 if (TABLE_PDU.equals(table)) { in delete()698 Cursor cursor = db.query(TABLE_PDU, new String[] { Mms._ID }, in deleteMessages()717 int count = db.delete(TABLE_PDU, selection, selectionArgs); in deleteMessages()807 table = TABLE_PDU; in update()[all …]
1357 return db.update(MmsProvider.TABLE_PDU, values, finalSelection, selectionArgs) in updateConversation()