Home
last modified time | relevance | path

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

/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
DTransitionTests.java124 ArraySet<WindowContainer> participants = transition.mParticipants; in testCreateInfo_NewTask() local
144 participants.add(oldTask); in testCreateInfo_NewTask()
145 participants.add(newTask); in testCreateInfo_NewTask()
146 ArrayList<WindowContainer> targets = Transition.calculateTargets(participants, changes); in testCreateInfo_NewTask()
153 participants.add(opening); in testCreateInfo_NewTask()
154 participants.add(closing); in testCreateInfo_NewTask()
155 targets = Transition.calculateTargets(participants, changes); in testCreateInfo_NewTask()
162 participants.remove(newTask); in testCreateInfo_NewTask()
163 targets = Transition.calculateTargets(participants, changes); in testCreateInfo_NewTask()
170 participants.remove(oldTask); in testCreateInfo_NewTask()
[all …]
/frameworks/base/telephony/java/android/telephony/ims/stub/
DImsCallSessionImplBase.java191 public void startConference(String[] participants, ImsCallProfile profile) throws
193 executeMethodAsync(() -> ImsCallSessionImplBase.this.startConference(participants,
256 public void extendToConference(String[] participants) {
257 executeMethodAsync(() -> ImsCallSessionImplBase.this.extendToConference(participants),
262 public void inviteParticipants(String[] participants) {
263 executeMethodAsync(() -> ImsCallSessionImplBase.this.inviteParticipants(participants),
268 public void removeParticipants(String[] participants) {
269 executeMethodAsync(() -> ImsCallSessionImplBase.this.removeParticipants(participants),
472 public void startConference(String[] participants, ImsCallProfile profile) { in startConference() argument
594 public void extendToConference(String[] participants) { in extendToConference() argument
[all …]
/frameworks/base/telephony/java/com/android/ims/internal/
DIImsCallSession.aidl128 void startConference(in String[] participants, in ImsCallProfile profile); in startConference() argument
220 void extendToConference(in String[] participants); in extendToConference() argument
229 void inviteParticipants(in String[] participants); in inviteParticipants() argument
238 void removeParticipants(in String[] participants); in removeParticipants() argument
/frameworks/base/telephony/java/android/telephony/ims/
DImsCallSession.java809 public void start(String[] participants, ImsCallProfile profile) { in start() argument
815 miSession.startConference(participants, profile); in start()
999 public void extendToConference(String[] participants) { in extendToConference() argument
1005 miSession.extendToConference(participants); in extendToConference()
1017 public void inviteParticipants(String[] participants) { in inviteParticipants() argument
1023 miSession.inviteParticipants(participants); in inviteParticipants()
1035 public void removeParticipants(String[] participants) { in removeParticipants() argument
1041 miSession.removeParticipants(participants); in removeParticipants()
/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.java321 public void addConferenceParticipants(String callId, List<Uri> participants) { in addConferenceParticipants() argument
323 mAdapter.addConferenceParticipants(callId, participants); in addConferenceParticipants()
DRemoteConnection.java1125 public void addConferenceParticipants(@NonNull List<Uri> participants) { in addConferenceParticipants() argument
1128 mConnectionService.addConferenceParticipants(mConnectionId, participants, in addConferenceParticipants()
DTelecomManager.java2351 public void startConference(@NonNull List<Uri> participants, in startConference() argument
2356 service.startConference(participants, extras, in startConference()
DConference.java331 public void onAddConferenceParticipants(@NonNull List<Uri> participants) {} in onAddConferenceParticipants() argument
DConnectionService.java705 public void addConferenceParticipants(String callId, List<Uri> participants,
711 args.arg2 = participants;
2428 private void addConferenceParticipants(String callId, List<Uri> participants) { in addConferenceParticipants() argument
2432 .onAddConferenceParticipants(participants); in addConferenceParticipants()
2435 .onAddConferenceParticipants(participants); in addConferenceParticipants()
DCall.java1933 public void addConferenceParticipants(@NonNull List<Uri> participants) { in addConferenceParticipants() argument
1934 mInCallAdapter.addConferenceParticipants(mTelecomCallId, participants); in addConferenceParticipants()
DConnection.java3213 public void onAddConferenceParticipants(@NonNull List<Uri> participants) {} in onAddConferenceParticipants() argument
/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
1167 public void start(ImsCallSession session, String[] participants) in start() argument
1177 session.start(participants, mCallProfile); in start()
1627 public void extendToConference(String[] participants) throws ImsException { in extendToConference() argument
1654 mSession.extendToConference(participants); in extendToConference()
1663 public void inviteParticipants(String[] participants) throws ImsException { in inviteParticipants() argument
1673 mSession.inviteParticipants(participants); in inviteParticipants()
1681 public void removeParticipants(String[] participants) throws ImsException { in removeParticipants() argument
1690 mSession.removeParticipants(participants); in removeParticipants()
2000 Set<Entry<String, Bundle>> participants = state.mParticipants.entrySet(); in parseConferenceState() local
[all …]
/frameworks/base/telecomm/java/com/android/internal/telecom/
DIInCallAdapter.aidl74 void addConferenceParticipants(String callId, in List<Uri> participants); in addConferenceParticipants() argument
DITelecomService.aidl281 void startConference(in List<Uri> participants, in Bundle extras, in startConference() argument
DIConnectionService.aidl113 void addConferenceParticipants(String CallId, in List<Uri> participants, in addConferenceParticipants() argument
/frameworks/base/services/core/java/com/android/server/wm/
DAppTransitionController.java195 final ArraySet<WindowContainer> participants = new ArraySet<>(); in handleAppTransitionReady() local
196 participants.addAll(mDisplayContent.mOpeningApps); in handleAppTransitionReady()
197 participants.addAll(mDisplayContent.mChangingContainers); in handleAppTransitionReady()
199 for (int i = 0; i < participants.size(); i++) { in handleAppTransitionReady()
200 WindowContainer wc = participants.valueAt(i); in handleAppTransitionReady()
DTransition.java1484 static ArrayList<WindowContainer> calculateTargets(ArraySet<WindowContainer> participants, in calculateTargets() argument
1487 "Start calculating TransitionInfo based on participants: %s", participants); in calculateTargets()
1491 for (int i = participants.size() - 1; i >= 0; --i) { in calculateTargets()
1492 final WindowContainer<?> wc = participants.valueAt(i); in calculateTargets()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DConnection.java114 public void onConferenceParticipantsChanged(List<ConferenceParticipant> participants); in onConferenceParticipantsChanged() argument
162 public void onConferenceParticipantsChanged(List<ConferenceParticipant> participants) {} in onConferenceParticipantsChanged() argument
/frameworks/base/core/java/android/window/
DSurfaceSyncer.md9 SurfaceSyncer is a class that manages sync requests and reports back when all participants in the s…
/frameworks/base/services/backup/java/com/android/server/backup/
DUserBackupManagerService.java1243 HashSet<String> participants = mBackupParticipants.valueAt(i); in resetBackupState() local
1244 if (participants != null) { in resetBackupState()
1245 for (String packageName : participants) { in resetBackupState()
4139 HashSet<String> participants = mBackupParticipants.valueAt(i); in dumpInternal() local
4140 for (String app : participants) { in dumpInternal()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
DImsPhoneCallTracker.java3844 private void updateConferenceParticipantsTiming(List<ConferenceParticipant> participants) {
3845 for (ConferenceParticipant participant : participants) {
3864 List<ConferenceParticipant> participants) {
3879 updateConferenceParticipantsTiming(participants);
3880 conn.updateConferenceParticipants(participants);
5455 List<ConferenceParticipant> participants = ImsCall.parseConferenceState(state); in injectTestConferenceState() local
5457 connection.updateConferenceParticipants(participants); in injectTestConferenceState()
/frameworks/base/core/java/android/app/
DNotification.java11805 String[] participants, long latestTimestamp) { in UnreadConversation() argument
11810 mParticipants = participants; in UnreadConversation()
11922 String[] participants = b.getStringArray(KEY_PARTICIPANTS); in getUnreadConversationFromBundle() local
11923 if (participants == null || participants.length != 1) { in getUnreadConversationFromBundle()
11931 participants, b.getLong(KEY_TIMESTAMP)); in getUnreadConversationFromBundle()
12022 String[] participants = { mParticipant }; in build() local
12024 mReadPendingIntent, participants, mLatestTimestamp); in build()