Home
last modified time | relevance | path

Searched refs:participants (Results 1 – 11 of 11) sorted by relevance

/frameworks/base/telephony/java/android/telephony/ims/stub/
DImsCallSessionImplBase.java164 public void startConference(String[] participants, ImsCallProfile profile) throws
166 ImsCallSessionImplBase.this.startConference(participants, profile);
210 public void extendToConference(String[] participants) {
211 ImsCallSessionImplBase.this.extendToConference(participants);
215 public void inviteParticipants(String[] participants) {
216 ImsCallSessionImplBase.this.inviteParticipants(participants);
220 public void removeParticipants(String[] participants) {
221 ImsCallSessionImplBase.this.removeParticipants(participants);
387 public void startConference(String[] participants, ImsCallProfile profile) { in startConference() argument
482 public void extendToConference(String[] participants) { in extendToConference() argument
[all …]
/frameworks/base/telephony/java/android/telephony/ims/
DRcsThreadQueryParams.java89 RcsThreadQueryParams(int threadType, Set<RcsParticipant> participants, in RcsThreadQueryParams() argument
92 mRcsParticipantIds = convertParticipantSetToIdList(participants); in RcsThreadQueryParams()
98 private static List<Integer> convertParticipantSetToIdList(Set<RcsParticipant> participants) { in convertParticipantSetToIdList() argument
99 List<Integer> ids = new ArrayList<>(participants.size()); in convertParticipantSetToIdList()
100 for (RcsParticipant participant : participants) { in convertParticipantSetToIdList()
206 public Builder setParticipants(@NonNull List<RcsParticipant> participants) { in setParticipants() argument
207 mParticipants.addAll(participants); in setParticipants()
DImsCallSession.java737 public void start(String[] participants, ImsCallProfile profile) { in start() argument
743 miSession.startConference(participants, profile); in start()
892 public void extendToConference(String[] participants) { in extendToConference() argument
898 miSession.extendToConference(participants); in extendToConference()
910 public void inviteParticipants(String[] participants) { in inviteParticipants() argument
916 miSession.inviteParticipants(participants); in inviteParticipants()
928 public void removeParticipants(String[] participants) { in removeParticipants() argument
934 miSession.removeParticipants(participants); in removeParticipants()
/frameworks/base/telephony/java/com/android/ims/internal/
DIImsCallSession.aidl127 void startConference(in String[] participants, in ImsCallProfile profile); in startConference() argument
203 void extendToConference(in String[] participants); in extendToConference() argument
212 void inviteParticipants(in String[] participants); in inviteParticipants() argument
221 void removeParticipants(in String[] participants); in removeParticipants() argument
/frameworks/base/telephony/java/android/telephony/ims/compat/stub/
DImsCallSessionImplBase.java170 public void startConference(String[] participants, ImsCallProfile profile) { in startConference() argument
274 public void extendToConference(String[] participants) { in extendToConference() argument
285 public void inviteParticipants(String[] participants) { in inviteParticipants() argument
296 public void removeParticipants(String[] participants) { in removeParticipants() argument
/frameworks/opt/net/ims/src/java/com/android/ims/
DImsCall.java344 List<ConferenceParticipant> participants) { in onConferenceParticipantsStateChanged() argument
1122 public void start(ImsCallSession session, String[] participants) in start() argument
1131 session.start(participants, mCallProfile); in start()
1528 public void extendToConference(String[] participants) throws ImsException { in extendToConference() argument
1555 mSession.extendToConference(participants); in extendToConference()
1564 public void inviteParticipants(String[] participants) throws ImsException { in inviteParticipants() argument
1574 mSession.inviteParticipants(participants); in inviteParticipants()
1582 public void removeParticipants(String[] participants) throws ImsException { in removeParticipants() argument
1591 mSession.removeParticipants(participants); in removeParticipants()
1842 Set<Entry<String, Bundle>> participants = state.mParticipants.entrySet(); in notifyConferenceStateUpdated() local
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DConnection.java100 public void onConferenceParticipantsChanged(List<ConferenceParticipant> participants); in onConferenceParticipantsChanged() argument
134 public void onConferenceParticipantsChanged(List<ConferenceParticipant> participants) {} in onConferenceParticipantsChanged() argument
/frameworks/base/services/backup/java/com/android/server/backup/
DUserBackupManagerService.java1124 HashSet<String> participants = mBackupParticipants.valueAt(i); in resetBackupState() local
1125 if (participants != null) { in resetBackupState()
1126 for (String packageName : participants) { in resetBackupState()
3573 HashSet<String> participants = mBackupParticipants.valueAt(i); in dumpInternal() local
3574 for (String app : participants) { in dumpInternal()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
DImsPhoneCallTracker.java2760 private void updateConferenceParticipantsTiming(List<ConferenceParticipant> participants) {
2761 for (ConferenceParticipant participant : participants) {
2780 List<ConferenceParticipant> participants) {
2785 updateConferenceParticipantsTiming(participants);
2786 conn.updateConferenceParticipants(participants);
/frameworks/base/core/java/android/app/
DNotification.java9942 String[] participants, long latestTimestamp) { in UnreadConversation() argument
9947 mParticipants = participants; in UnreadConversation()
10059 String[] participants = b.getStringArray(KEY_PARTICIPANTS); in getUnreadConversationFromBundle() local
10060 if (participants == null || participants.length != 1) { in getUnreadConversationFromBundle()
10068 participants, b.getLong(KEY_TIMESTAMP)); in getUnreadConversationFromBundle()
10159 String[] participants = { mParticipant }; in build() local
10161 mReadPendingIntent, participants, mLatestTimestamp); in build()
/frameworks/base/telecomm/java/android/telecom/
DConnection.java893 List<ConferenceParticipant> participants) {} in onConferenceParticipantsChanged() argument