Searched refs:RCS_PARTICIPANT_ID_COLUMN (Results 1 – 6 of 6) sorted by relevance
/packages/providers/TelephonyProvider/src/com/android/providers/telephony/ |
D | RcsProviderParticipantHelper.java | 21 import static android.provider.Telephony.RcsColumns.RcsParticipantColumns.RCS_PARTICIPANT_ID_COLUMN; 67 RCS_PARTICIPANT_ID_COLUMN + " INTEGER PRIMARY KEY AUTOINCREMENT, " + in createParticipantTables() 76 RCS_PARTICIPANT_ID_COLUMN + " INTEGER, " + in createParticipantTables() 78 + RCS_THREAD_ID_COLUMN + ", " + RCS_PARTICIPANT_ID_COLUMN + "), " + in createParticipantTables() 81 "FOREIGN KEY(" + RCS_PARTICIPANT_ID_COLUMN in createParticipantTables() 82 + ") REFERENCES " + RCS_PARTICIPANT_TABLE + "(" + RCS_PARTICIPANT_ID_COLUMN + "))"); in createParticipantTables() 201 rawQuery.append(RCS_PARTICIPANT_ID_COLUMN); in buildInitialRawQuery() 262 long rowId = db.insert(RCS_PARTICIPANT_TABLE, RCS_PARTICIPANT_ID_COLUMN, contentValues); in insertParticipant() 276 RCS_PARTICIPANT_ID_COLUMN)) { in insertParticipantIntoGroupThread() 282 RCS_PARTICIPANT_ID_COLUMN, in insertParticipantIntoGroupThread() [all …]
|
D | RcsProviderMessageHelper.java | 46 import static android.provider.Telephony.RcsColumns.RcsParticipantColumns.RCS_PARTICIPANT_ID_COLUMN; 123 + " INTEGER, " + RCS_PARTICIPANT_ID_COLUMN + " INTEGER, " in createRcsMessageTables() 127 + RCS_PARTICIPANT_ID_COLUMN + "), FOREIGN KEY (" + MESSAGE_ID_COLUMN in createRcsMessageTables() 129 + RCS_PARTICIPANT_ID_COLUMN + ") REFERENCES " + RCS_PARTICIPANT_TABLE + "(" in createRcsMessageTables() 130 + RCS_PARTICIPANT_ID_COLUMN + "))"); in createRcsMessageTables() 517 RCS_PARTICIPANT_ID_COLUMN)); in insertMessageDeliveriesForOutgoingMessageCreation() 540 values.put(RCS_PARTICIPANT_ID_COLUMN, participantId); in insertMessageDelivery() 552 MESSAGE_ID_COLUMN + "=? AND " + RCS_PARTICIPANT_ID_COLUMN + "=?", in updateDelivery()
|
D | RcsProviderThreadHelper.java | 26 import static android.provider.Telephony.RcsColumns.RcsParticipantColumns.RCS_PARTICIPANT_ID_COLUMN; 332 Long participantId = contentValues.getAsLong(RCS_PARTICIPANT_ID_COLUMN); in insert1To1Thread() 379 contentValues.put(RCS_PARTICIPANT_ID_COLUMN, participantId); in insertParticipantIntoP2pThread() 382 RCS_PARTICIPANT_THREAD_JUNCTION_TABLE, RCS_PARTICIPANT_ID_COLUMN, contentValues); in insertParticipantIntoP2pThread() 394 RCS_PARTICIPANT_ID_COLUMN + "=?", in hasExisting1To1ThreadForParticipant() argument
|
D | RcsProviderEventHelper.java | 19 import static android.provider.Telephony.RcsColumns.RcsParticipantColumns.RCS_PARTICIPANT_ID_COLUMN; 82 + ") REFERENCES " + RCS_PARTICIPANT_TABLE + " (" + RCS_PARTICIPANT_ID_COLUMN in createRcsEventTables() 89 + ") REFERENCES " + RCS_PARTICIPANT_TABLE + " (" + RCS_PARTICIPANT_ID_COLUMN in createRcsEventTables()
|
/packages/providers/TelephonyProvider/tests/src/com/android/providers/telephony/ |
D | RcsProviderHelper.java | 20 import static android.provider.Telephony.RcsColumns.RcsParticipantColumns.RCS_PARTICIPANT_ID_COLUMN; 42 insertValues.put(RCS_PARTICIPANT_ID_COLUMN, participantId); in setup1To1Thread()
|
D | RcsProviderQueryTest.java | 28 import static android.provider.Telephony.RcsColumns.RcsParticipantColumns.RCS_PARTICIPANT_ID_COLUMN; 296 assertThat(cursor.getInt(cursor.getColumnIndex(RCS_PARTICIPANT_ID_COLUMN))).isEqualTo(2); in testQueryParticipant() 303 assertThat(cursor.getInt(cursor.getColumnIndex(RCS_PARTICIPANT_ID_COLUMN))).isEqualTo(1); in testQueryParticipant() 538 assertThat(cursor.getInt(cursor.getColumnIndex(RCS_PARTICIPANT_ID_COLUMN))).isEqualTo(1); in testQueryParticipantOfGroupThread() 551 assertThat(cursor.getInt(cursor.getColumnIndex(RCS_PARTICIPANT_ID_COLUMN))).isEqualTo(1); in testQueryParticipantOfGroupThreadWithId()
|