HomeSort by relevance Sort by last modified time
    Searched refs:ConferenceParticipant (Results 1 - 13 of 13) sorted by null

  /frameworks/base/telecomm/java/android/telecom/
ConferenceParticipant.aidl 22 parcelable ConferenceParticipant;
ConferenceParticipant.java 27 public class ConferenceParticipant implements Parcelable {
53 * Creates an instance of {@code ConferenceParticipant}.
60 public ConferenceParticipant(Uri handle, String displayName, Uri endpoint, int state) {
68 * Responsible for creating {@code ConferenceParticipant} objects for deserialized Parcels.
70 public static final Parcelable.Creator<ConferenceParticipant> CREATOR =
71 new Parcelable.Creator<ConferenceParticipant>() {
74 public ConferenceParticipant createFromParcel(Parcel source) {
80 return new ConferenceParticipant(handle, displayName, endpoint, state);
84 public ConferenceParticipant[] newArray(int size) {
85 return new ConferenceParticipant[size]
    [all...]
Connection.java     [all...]
  /packages/services/Telephony/src/com/android/services/telephony/
ConferenceParticipantConnection.java 25 import android.telecom.ConferenceParticipant;
64 ConferenceParticipant participant) {
171 private int getParticipantPresentation(ConferenceParticipant participant) {
ImsConference.java 25 import android.telecom.ConferenceParticipant;
142 List<ConferenceParticipant> participants) {
630 TelephonyConnection parent, List<ConferenceParticipant> participants) {
645 ArrayList<ConferenceParticipant> newParticipants = new ArrayList<>(participants.size());
649 for (ConferenceParticipant participant : participants) {
674 for (ConferenceParticipant newParticipant : newParticipants) {
712 * {@link ConferenceParticipant}.
721 TelephonyConnection parent, ConferenceParticipant participant) {
    [all...]
TelephonyConferenceController.java 30 import android.telecom.ConferenceParticipant;
TelephonyConnection.java 28 import android.telecom.ConferenceParticipant;
195 List<ConferenceParticipant> participants = (List<ConferenceParticipant>) msg.obj;
340 public void onConferenceParticipantsChanged(List<ConferenceParticipant> participants) {
    [all...]
  /packages/services/Telephony/tests/src/com/android/services/telephony/
ConferenceParticipantConnectionTest.java 22 import android.telecom.ConferenceParticipant;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
Call.java 19 import android.telecom.ConferenceParticipant;
121 public List<ConferenceParticipant> getConferenceParticipants() {
Connection.java 22 import android.telecom.ConferenceParticipant;
95 public void onConferenceParticipantsChanged(List<ConferenceParticipant> participants);
122 public void onConferenceParticipantsChanged(List<ConferenceParticipant> participants) {}
415 public List<ConferenceParticipant> getConferenceParticipants() {
926 public void updateConferenceParticipants(List<ConferenceParticipant> conferenceParticipants) {
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
ImsPhoneCall.java 19 import android.telecom.ConferenceParticipant;
143 public List<ConferenceParticipant> getConferenceParticipants() {
ImsPhoneCallTracker.java 39 import android.telecom.ConferenceParticipant;
    [all...]
  /frameworks/opt/net/ims/src/java/com/android/ims/
ImsCall.java 31 import android.telecom.ConferenceParticipant;
78 private List<ConferenceParticipant> mConferenceParticipants;
338 List<ConferenceParticipant> participants) {
731 public List<ConferenceParticipant> getConferenceParticipants() {
739 return new ArrayList<ConferenceParticipant>(0);
741 return new ArrayList<ConferenceParticipant>(mConferenceParticipants);
    [all...]

Completed in 291 milliseconds