Home
last modified time | relevance | path

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

/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
DTransitionTests.java156 ArraySet<WindowContainer> participants = transition.mParticipants; in testCreateInfo_NewTask() local
176 participants.add(oldTask); in testCreateInfo_NewTask()
177 participants.add(newTask); in testCreateInfo_NewTask()
179 Transition.calculateTargets(participants, changes); in testCreateInfo_NewTask()
185 participants.add(opening); in testCreateInfo_NewTask()
186 participants.add(closing); in testCreateInfo_NewTask()
187 targets = Transition.calculateTargets(participants, changes); in testCreateInfo_NewTask()
194 participants.remove(newTask); in testCreateInfo_NewTask()
195 targets = Transition.calculateTargets(participants, changes); in testCreateInfo_NewTask()
202 participants.remove(oldTask); in testCreateInfo_NewTask()
[all …]
/frameworks/base/telephony/java/android/telephony/ims/stub/
DImsCallSessionImplBase.java239 public void startConference(String[] participants, ImsCallProfile profile) throws
241 executeMethodAsync(() -> ImsCallSessionImplBase.this.startConference(participants,
304 public void extendToConference(String[] participants) {
305 executeMethodAsync(() -> ImsCallSessionImplBase.this.extendToConference(participants),
310 public void inviteParticipants(String[] participants) {
311 executeMethodAsync(() -> ImsCallSessionImplBase.this.inviteParticipants(participants),
316 public void removeParticipants(String[] participants) {
317 executeMethodAsync(() -> ImsCallSessionImplBase.this.removeParticipants(participants),
530 public void startConference(String[] participants, ImsCallProfile profile) { in startConference() argument
652 public void extendToConference(String[] participants) { in extendToConference() argument
[all …]
/frameworks/base/telephony/java/com/android/ims/internal/
DIImsCallSession.aidl130 void startConference(in String[] participants, in ImsCallProfile profile); in startConference() argument
222 void extendToConference(in String[] participants); in extendToConference() argument
231 void inviteParticipants(in String[] participants); in inviteParticipants() argument
240 void removeParticipants(in String[] participants); in removeParticipants() argument
/frameworks/base/telecomm/java/android/telecom/
DConnectionRequest.java72 @SuppressLint("NullableCollection") @Nullable List<Uri> participants) { in setParticipants()
73 this.mParticipants = participants; in setParticipants()
260 List<Uri> participants, in ConnectionRequest() argument
270 mParticipants = participants; in ConnectionRequest()
DInCallAdapter.java358 public void addConferenceParticipants(String callId, List<Uri> participants) { in addConferenceParticipants() argument
360 mAdapter.addConferenceParticipants(callId, participants); in addConferenceParticipants()
DRemoteConnection.java1123 public void addConferenceParticipants(@NonNull List<Uri> participants) { in addConferenceParticipants() argument
1126 mConnectionService.addConferenceParticipants(mConnectionId, participants, in addConferenceParticipants()
DTelecomManager.java2537 public void startConference(@NonNull List<Uri> participants, in startConference() argument
2542 service.startConference(participants, extras, in startConference()
DConference.java371 public void onAddConferenceParticipants(@NonNull List<Uri> participants) {} in onAddConferenceParticipants() argument
DConnectionService.java983 public void addConferenceParticipants(String callId, List<Uri> participants,
989 args.arg2 = participants;
2797 private void addConferenceParticipants(String callId, List<Uri> participants) { in addConferenceParticipants() argument
2801 .onAddConferenceParticipants(participants); in addConferenceParticipants()
2804 .onAddConferenceParticipants(participants); in addConferenceParticipants()
DCall.java1919 public void addConferenceParticipants(@NonNull List<Uri> participants) { in addConferenceParticipants() argument
1920 mInCallAdapter.addConferenceParticipants(mTelecomCallId, participants); in addConferenceParticipants()
DConnection.java3358 public void onAddConferenceParticipants(@NonNull List<Uri> participants) {} in onAddConferenceParticipants() argument
/frameworks/base/telephony/java/android/telephony/ims/
DImsCallSession.java847 public void start(String[] participants, ImsCallProfile profile) { in start() argument
853 miSession.startConference(participants, profile); in start()
1037 public void extendToConference(String[] participants) { in extendToConference() argument
1043 miSession.extendToConference(participants); in extendToConference()
1055 public void inviteParticipants(String[] participants) { in inviteParticipants() argument
1061 miSession.inviteParticipants(participants); in inviteParticipants()
1073 public void removeParticipants(String[] participants) { in removeParticipants() argument
1079 miSession.removeParticipants(participants); in removeParticipants()
/frameworks/base/telephony/java/android/telephony/ims/compat/stub/
DImsCallSessionImplBase.java182 public void startConference(String[] participants, ImsCallProfile profile) { in startConference() argument
309 public void extendToConference(String[] participants) { in extendToConference() argument
320 public void inviteParticipants(String[] participants) { in inviteParticipants() argument
331 public void removeParticipants(String[] participants) { in removeParticipants() argument
/frameworks/opt/net/ims/src/java/com/android/ims/
DImsCall.java360 List<ConferenceParticipant> participants) { in onConferenceParticipantsStateChanged() argument
1197 public void start(ImsCallSession session, String[] participants) in start() argument
1207 session.start(participants, mCallProfile); in start()
1657 public void extendToConference(String[] participants) throws ImsException { in extendToConference() argument
1684 mSession.extendToConference(participants); in extendToConference()
1693 public void inviteParticipants(String[] participants) throws ImsException { in inviteParticipants() argument
1703 mSession.inviteParticipants(participants); in inviteParticipants()
1711 public void removeParticipants(String[] participants) throws ImsException { in removeParticipants() argument
1720 mSession.removeParticipants(participants); in removeParticipants()
2030 Set<Entry<String, Bundle>> participants = state.mParticipants.entrySet(); in parseConferenceState() local
[all …]
/frameworks/base/telecomm/java/com/android/internal/telecom/
DIInCallAdapter.aidl78 void addConferenceParticipants(String callId, in List<Uri> participants); in addConferenceParticipants() argument
DITelecomService.aidl293 void startConference(in List<Uri> participants, in Bundle extras, in startConference() argument
DIConnectionService.aidl122 void addConferenceParticipants(String CallId, in List<Uri> participants, in addConferenceParticipants() argument
/frameworks/base/services/core/java/com/android/server/wm/
DAppTransitionController.java188 final ArraySet<WindowContainer> participants = new ArraySet<>(); in handleAppTransitionReady() local
189 participants.addAll(mDisplayContent.mOpeningApps); in handleAppTransitionReady()
190 participants.addAll(mDisplayContent.mChangingContainers); in handleAppTransitionReady()
192 for (int i = 0; i < participants.size(); i++) { in handleAppTransitionReady()
193 WindowContainer wc = participants.valueAt(i); in handleAppTransitionReady()
DTransition.java2538 static ArrayList<ChangeInfo> calculateTargets(ArraySet<WindowContainer> participants, in calculateTargets() argument
2541 "Start calculating TransitionInfo based on participants: %s", participants); in calculateTargets()
2545 for (int i = participants.size() - 1; i >= 0; --i) { in calculateTargets()
2546 final WindowContainer<?> wc = participants.valueAt(i); in calculateTargets()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DConnection.java117 public void onConferenceParticipantsChanged(List<ConferenceParticipant> participants); in onConferenceParticipantsChanged() argument
172 public void onConferenceParticipantsChanged(List<ConferenceParticipant> participants) {} in onConferenceParticipantsChanged() argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
DImsPhoneCallTracker.java4203 private void updateConferenceParticipantsTiming(List<ConferenceParticipant> participants) {
4204 for (ConferenceParticipant participant : participants) {
4223 List<ConferenceParticipant> participants) {
4238 updateConferenceParticipantsTiming(participants);
4239 conn.updateConferenceParticipants(participants);
5967 List<ConferenceParticipant> participants = ImsCall.parseConferenceState(state); in injectTestConferenceState() local
5969 connection.updateConferenceParticipants(participants); in injectTestConferenceState()
6189 List<ConferenceParticipant> participants = getConferenceParticipants(c); in addConnection() local
6190 if (participants != null) { in addConnection()
6191 for (ConferenceParticipant cp : participants) { in addConnection()
[all …]
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/
DImsPhoneCallTrackerTest.java2355 List<ConferenceParticipant> participants = new ArrayList<ConferenceParticipant>(); in testConvertToSrvccConnectionInfoConferenceCall() local
2356 participants.add(new ConferenceParticipant(Uri.parse("tel:1234"), "", null, in testConvertToSrvccConnectionInfoConferenceCall()
2359 participants.add(new ConferenceParticipant(Uri.parse("tel:5678"), "", null, in testConvertToSrvccConnectionInfoConferenceCall()
2364 activeMO, false, participants); in testConvertToSrvccConnectionInfoConferenceCall()
2839 ImsPhoneConnection c, boolean localTone, List<ConferenceParticipant> participants) { in getImsCallProfileForSrvccSync() argument
2851 doReturn(participants).when(imsCall).getConferenceParticipants(); in getImsCallProfileForSrvccSync()
/frameworks/base/services/backup/java/com/android/server/backup/
DUserBackupManagerService.java1265 HashSet<String> participants = mBackupParticipants.valueAt(i); in resetBackupState() local
1266 if (participants != null) { in resetBackupState()
1267 for (String packageName : participants) { in resetBackupState()
4327 HashSet<String> participants = mBackupParticipants.valueAt(i); in dumpInternal() local
4328 for (String app : participants) { in dumpInternal()
/frameworks/base/core/java/android/window/
DSurfaceSyncGroup.md9 SurfaceSyncGroup is a class that manages sync requests and reports back when all participants in th…
/frameworks/base/core/java/android/app/
DNotification.java12810 String[] participants, long latestTimestamp) { in UnreadConversation() argument
12815 mParticipants = participants; in UnreadConversation()
12928 String[] participants = b.getStringArray(KEY_PARTICIPANTS); in getUnreadConversationFromBundle() local
12929 if (participants == null || participants.length != 1) { in getUnreadConversationFromBundle()
12937 participants, b.getLong(KEY_TIMESTAMP)); in getUnreadConversationFromBundle()
13028 String[] participants = { mParticipant }; in build() local
13030 mReadPendingIntent, participants, mLatestTimestamp); in build()