/frameworks/base/services/tests/wmtests/src/com/android/server/wm/ |
D | TransitionTests.java | 156 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/ |
D | ImsCallSessionImplBase.java | 239 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/ |
D | IImsCallSession.aidl | 130 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/ |
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 | 358 public void addConferenceParticipants(String callId, List<Uri> participants) { in addConferenceParticipants() argument 360 mAdapter.addConferenceParticipants(callId, participants); in addConferenceParticipants()
|
D | RemoteConnection.java | 1123 public void addConferenceParticipants(@NonNull List<Uri> participants) { in addConferenceParticipants() argument 1126 mConnectionService.addConferenceParticipants(mConnectionId, participants, in addConferenceParticipants()
|
D | TelecomManager.java | 2537 public void startConference(@NonNull List<Uri> participants, in startConference() argument 2542 service.startConference(participants, extras, in startConference()
|
D | Conference.java | 371 public void onAddConferenceParticipants(@NonNull List<Uri> participants) {} in onAddConferenceParticipants() argument
|
D | ConnectionService.java | 983 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()
|
D | Call.java | 1919 public void addConferenceParticipants(@NonNull List<Uri> participants) { in addConferenceParticipants() argument 1920 mInCallAdapter.addConferenceParticipants(mTelecomCallId, participants); in addConferenceParticipants()
|
D | Connection.java | 3358 public void onAddConferenceParticipants(@NonNull List<Uri> participants) {} in onAddConferenceParticipants() argument
|
/frameworks/base/telephony/java/android/telephony/ims/ |
D | ImsCallSession.java | 847 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/ |
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 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/ |
D | IInCallAdapter.aidl | 78 void addConferenceParticipants(String callId, in List<Uri> participants); in addConferenceParticipants() argument
|
D | ITelecomService.aidl | 293 void startConference(in List<Uri> participants, in Bundle extras, in startConference() argument
|
D | IConnectionService.aidl | 122 void addConferenceParticipants(String CallId, in List<Uri> participants, in addConferenceParticipants() argument
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | AppTransitionController.java | 188 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()
|
D | Transition.java | 2538 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/ |
D | Connection.java | 117 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/ |
D | ImsPhoneCallTracker.java | 4203 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/ |
D | ImsPhoneCallTrackerTest.java | 2355 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/ |
D | UserBackupManagerService.java | 1265 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/ |
D | SurfaceSyncGroup.md | 9 SurfaceSyncGroup is a class that manages sync requests and reports back when all participants in th…
|
/frameworks/base/core/java/android/app/ |
D | Notification.java | 12810 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()
|