/frameworks/base/services/tests/wmtests/src/com/android/server/wm/ |
D | TransitionTests.java | 124 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/ |
D | ImsCallSessionImplBase.java | 191 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/ |
D | IImsCallSession.aidl | 128 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/ |
D | ImsCallSession.java | 809 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/ |
D | ConnectionRequest.java | 72 @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()
|
D | InCallAdapter.java | 321 public void addConferenceParticipants(String callId, List<Uri> participants) { in addConferenceParticipants() argument 323 mAdapter.addConferenceParticipants(callId, participants); in addConferenceParticipants()
|
D | RemoteConnection.java | 1125 public void addConferenceParticipants(@NonNull List<Uri> participants) { in addConferenceParticipants() argument 1128 mConnectionService.addConferenceParticipants(mConnectionId, participants, in addConferenceParticipants()
|
D | TelecomManager.java | 2351 public void startConference(@NonNull List<Uri> participants, in startConference() argument 2356 service.startConference(participants, extras, in startConference()
|
D | Conference.java | 331 public void onAddConferenceParticipants(@NonNull List<Uri> participants) {} in onAddConferenceParticipants() argument
|
D | ConnectionService.java | 705 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()
|
D | Call.java | 1933 public void addConferenceParticipants(@NonNull List<Uri> participants) { in addConferenceParticipants() argument 1934 mInCallAdapter.addConferenceParticipants(mTelecomCallId, participants); in addConferenceParticipants()
|
D | Connection.java | 3213 public void onAddConferenceParticipants(@NonNull List<Uri> participants) {} in onAddConferenceParticipants() argument
|
/frameworks/base/telephony/java/android/telephony/ims/compat/stub/ |
D | ImsCallSessionImplBase.java | 182 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/ |
D | ImsCall.java | 360 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/ |
D | IInCallAdapter.aidl | 74 void addConferenceParticipants(String callId, in List<Uri> participants); in addConferenceParticipants() argument
|
D | ITelecomService.aidl | 281 void startConference(in List<Uri> participants, in Bundle extras, in startConference() argument
|
D | IConnectionService.aidl | 113 void addConferenceParticipants(String CallId, in List<Uri> participants, in addConferenceParticipants() argument
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | AppTransitionController.java | 195 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()
|
D | Transition.java | 1484 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/ |
D | Connection.java | 114 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/ |
D | SurfaceSyncer.md | 9 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/ |
D | UserBackupManagerService.java | 1243 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/ |
D | ImsPhoneCallTracker.java | 3844 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/ |
D | Notification.java | 11805 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()
|