OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ConferenceParticipant
(Results
1 - 12
of
12
) 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
417
List<
ConferenceParticipant
> participants) {}
[
all
...]
/packages/services/Telephony/src/com/android/services/telephony/
ConferenceParticipantConnection.java
23
import android.telecom.
ConferenceParticipant
;
53
ConferenceParticipant
participant) {
ImsConference.java
23
import android.telecom.
ConferenceParticipant
;
146
List<
ConferenceParticipant
> participants) {
506
TelephonyConnection parent, List<
ConferenceParticipant
> participants) {
513
ArrayList<
ConferenceParticipant
> newParticipants = new ArrayList<>(participants.size());
517
for (
ConferenceParticipant
participant : participants) {
535
for (
ConferenceParticipant
newParticipant : newParticipants) {
569
* {@link
ConferenceParticipant
}.
578
TelephonyConnection parent,
ConferenceParticipant
participant) {
TelephonyConnection.java
27
import android.telecom.
ConferenceParticipant
;
213
public void onConferenceParticipantsChanged(List<
ConferenceParticipant
> participants) {
676
public List<
ConferenceParticipant
> getConferenceParticipants() {
[
all
...]
TelephonyConferenceController.java
28
import android.telecom.
ConferenceParticipant
;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
Connection.java
21
import android.telecom.
ConferenceParticipant
;
52
public void onConferenceParticipantsChanged(List<
ConferenceParticipant
> participants);
76
public void onConferenceParticipantsChanged(List<
ConferenceParticipant
> participants) {}
307
public List<
ConferenceParticipant
> getConferenceParticipants() {
668
public void updateConferenceParticipants(List<
ConferenceParticipant
> conferenceParticipants) {
Call.java
19
import android.telecom.
ConferenceParticipant
;
129
public List<
ConferenceParticipant
> getConferenceParticipants() {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
ImsPhoneCall.java
19
import android.telecom.
ConferenceParticipant
;
144
public List<
ConferenceParticipant
> getConferenceParticipants() {
ImsPhoneCallTracker.java
40
import android.telecom.
ConferenceParticipant
;
[
all
...]
/frameworks/opt/net/ims/src/java/com/android/ims/
ImsCall.java
31
import android.telecom.
ConferenceParticipant
;
74
private List<
ConferenceParticipant
> mConferenceParticipants;
334
List<
ConferenceParticipant
> participants) {
670
public List<
ConferenceParticipant
> getConferenceParticipants() {
[
all
...]
Completed in 344 milliseconds