HomeSort by relevance Sort by last modified time
    Searched defs:conference (Results 1 - 25 of 34) sorted by null

1 2

  /frameworks/base/telecomm/java/android/telecom/
InCallAdapter.java 207 * Instructs Telecom to conference the specified call.
212 public void conference(String callId, String otherCallId) { method in class:InCallAdapter
214 mAdapter.conference(callId, otherCallId);
220 * Instructs Telecom to split the specified call from any conference call with which it may be
234 * Instructs Telecom to merge child calls of the specified conference call.
244 * Instructs Telecom to swap the child calls of the specified conference call.
ConnectionService.java 111 private final Map<String, Conference> mConferenceById = new ConcurrentHashMap<>();
112 private final Map<Conference, String> mIdByConference = new ConcurrentHashMap<>();
119 private Conference sNullConference;
205 public void conference(String callId1, String callId2) {
333 conference(callId1, callId2);
365 private final Conference.Listener mConferenceListener = new Conference.Listener() {
367 public void onStateChanged(Conference conference, int oldState, int newState) {
368 String id = mIdByConference.get(conference);
691 private void conference(String callId1, String callId2) { method in class:ConnectionService
747 Conference conference = connection.getConference(); local
755 Conference conference = findConferenceForAction(callId, "mergeConference"); local
763 Conference conference = findConferenceForAction(callId, "swapConference"); local
1164 Conference conference = (Conference) c; local
    [all...]
Call.java 108 * Calls within a conference can be merged. A {@link ConnectionService} has the option to
109 * add a {@link Conference} call before the child {@link Connection}s are merged. This is how
110 * CDMA-based {@link Connection}s are implemented. For these unmerged {@link Conference}s, this
111 * capability allows a merge button to be shown while the conference call is in the foreground
114 * This is only intended for use by a {@link Conference}.
119 * Calls within a conference can be swapped between foreground and background.
122 * This is only intended for use by a {@link Conference}.
138 * Call supports conference call management. This capability only applies to {@link Conference}
168 * Call is able to be separated from its parent {@code Conference}, if any
665 public void conference(Call callToConferenceWith) { method in class:Call
    [all...]
Connection.java 73 * Connections within a conference can be merged. A {@link ConnectionService} has the option to
74 * add a {@link Conference} before the child {@link Connection}s are merged. This is how
75 * CDMA-based {@link Connection}s are implemented. For these unmerged {@link Conference}s, this
76 * capability allows a merge button to be shown while the conference is in the foreground
79 * This is only intended for use by a {@link Conference}.
84 * Connections within a conference can be swapped between foreground and background.
87 * This is only intended for use by a {@link Conference}.
103 * Connection supports conference management. This capability only applies to
104 * {@link Conference}s which can have {@link Connection}s as children.
133 * Connection is able to be separated from its parent {@code Conference}, if any
1134 Conference conference = (Conference) c; local
1416 Conference conference = (Conference) c; local
    [all...]
  /external/smack/src/org/jivesoftware/smackx/bookmark/
BookmarkedConference.java 23 * Respresents a Conference Room bookmarked on the server using JEP-0048 Bookmark Storage JEP.
53 * Returns the display label representing the Conference room.
55 * @return the name of the conference room.
66 * Returns true if this conference room should be auto-joined on startup.
79 * Returns the full JID of this conference room. (ex.dev@conference.jivesoftware.com)
81 * @return the full JID of this conference room.
88 * Returns the nickname to use when joining this conference room. This is an optional
102 * Returns the password to use when joining this conference room. This is an optional
105 * @return the password to use when joining this conference room, null may be returned
119 BookmarkedConference conference = (BookmarkedConference)obj; local
    [all...]
BookmarkManager.java 33 * that marks a url as a news feed and also a sub-element can be added to either a URL or conference
96 * Adds or updates a conference in the bookmarks.
98 * @param name the name of the conference
99 * @param jid the jid of the conference
100 * @param isAutoJoin whether or not to join this conference automatically on login
101 * @param nickname the nickname to use for the user when joining the conference
102 * @param password the password to use for the user when joining the conference
130 * Removes a conference from the bookmarks.
132 * @param jid the jid of the conference to be removed.
135 * @throws IllegalArgumentException thrown when the conference being removed is a share
142 BookmarkedConference conference = it.next(); local
    [all...]
Bookmarks.java 32 * Bookmarks is used for storing and retrieving URLS and Conference rooms.
33 * Bookmark Storage (JEP-0048) defined a protocol for the storage of bookmarks to conference rooms and other entities
47 * // Bookmark a Conference room.
48 * BookmarkedConference conference = new BookmarkedConference();
49 * conference.setName("My Favorite Room");
50 * conference.setAutoJoin("true");
51 * conference.setJID("dev@conference.jivesoftware.com");
52 * bookmarks.addConference(conference);
104 * @param bookmarkedConference the conference to remove
189 BookmarkedConference conference = conferences.next(); local
244 final BookmarkedConference conference = getConferenceStorage(parser); local
    [all...]
  /packages/services/Telephony/src/com/android/services/telephony/
ImsConferenceController.java 20 import android.telecom.Conference;
37 * Conference listener; used to receive notification when a conference has been disconnected.
39 private final Conference.Listener mConferenceListener = new Conference.Listener() {
41 public void onDestroyed(Conference conference) {
43 Log.v(ImsConferenceController.class, "onDestroyed: %s", conference);
46 mImsConferences.remove(conference);
51 * Ims conference controller connection listener. Used to respond to changes in state of th
270 ImsConference conference = new ImsConference(mConnectionService, conferenceHostConnection); local
    [all...]
TelephonyConference.java 19 import android.telecom.Conference;
30 * TelephonyConnection-based conference call for GSM conferences and IMS conferences (which may
33 public class TelephonyConference extends Conference {
46 * Invoked when the Conference and all it's {@link Connection}s should be disconnected.
66 Log.d(this, "Found multiparty call to hangup for conference.");
71 Log.e(this, e, "Exception thrown trying to hangup conference");
78 * Invoked when the specified {@link Connection} should be separated from the conference call.
89 Log.e(this, e, "Exception thrown trying to separate a conference call");
98 phone.conference();
101 Log.e(this, e, "Exception thrown trying to merge call into a conference");
    [all...]
ImsConference.java 20 import android.telecom.Conference;
40 * Represents an IMS conference call.
42 * An IMS conference call consists of a conference host connection and potentially a list of
43 * conference participants. The conference host connection represents the radio connection to the
44 * IMS conference server. Since it is not a connection to any one individual, it is not represented
45 * in Telecom/InCall as a call. The conference participant information is received via the host
46 * connection via a conference event package. Conference participant connections do not represen
    [all...]
  /packages/services/Telecomm/src/com/android/server/telecom/
InCallAdapter.java 162 mCallsManager.conference(call, otherCall);
164 Log.w(this, "conference, unknown call id: %s", msg.obj);
308 public void conference(String callId, String otherCallId) { method in class:InCallAdapter
ConnectionServiceWrapper.java 198 Log.w(this, "Attempting to add a conference call using an existing " +
206 // we'll get a add conference msg from both the remote connection service
215 // IMS conference state.
217 Log.d(this, "Attempting to add a conference with no valid calls");
232 Log.d(this, "adding children to conference %s phAcc %s",
509 // conference calls.
887 void conference(final Call call, Call otherCall) { method in class:ConnectionServiceWrapper
    [all...]
BluetoothPhoneService.java 100 // Add all held calls to a conference
367 * because conference change events are not atomic and multiple callbacks get fired
371 * conference calls.
373 * 1) Call 1 and Call 2 are being merged into conference Call 3.
380 // one sent for the parent conference call.
386 // the minimum number of child calls to start a conference call is 2. We expect
526 callsManager.conference(activeCall, conferenceable.get(0));
571 // We don't send the parent conference call to the bluetooth device.
595 // Run some alternative states for Conference-level merge/swap support.
596 // Basically, if call supports swapping or merging at the conference-level, then we nee
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
SimulatedGsmCallState.java 428 ret = conference();
607 conference() { method in class:SimulatedGsmCallState
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
ImsPhone.java 252 public void conference() { method in class:ImsPhone
253 mCT.conference();
384 conference(); method
    [all...]
ImsPhoneCommandInterface.java 134 public void conference (Message result) { method in class:ImsPhoneCommandInterface
ImsPhoneCallTracker.java 515 conference() { method in class:ImsPhoneCallTracker
516 if (DBG) log("conference");
520 log("conference no foreground ims call");
526 log("conference no background ims call");
542 log("conference " + e.getMessage());
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GSMPhone.java 542 public void conference() { method in class:GSMPhone
544 log("conference() - delegated to IMS phone");
545 mImsPhone.conference();
548 mCT.conference();
713 conference(); method
    [all...]
GsmCallTracker.java 293 conference() { method in class:GsmCallTracker
294 mCi.conference(obtainCompleteMessage(EVENT_CONFERENCE_RESULT));
858 return Phone.SuppService.CONFERENCE;
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
SipCommandInterface.java 134 public void conference (Message result) { method in class:SipCommandInterface
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
GSMPhoneTest.java 693 // Conference the two
694 mGSMPhone.conference();
737 // Hangup conference call, ringing call still around
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
CallManager.java 914 public void conference(Call heldCall) throws CallStateException { method in class:CallManager
925 ((SipPhone) fgPhone).conference(heldCall); method
    [all...]
PhoneProxy.java 692 public void conference() throws CallStateException { method in class:PhoneProxy
693 mActivePhone.conference();
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CDMAPhone.java 351 public void conference() { method in class:CDMAPhone
353 log("conference() - delegated to IMS phone");
354 mImsPhone.conference();
358 Rlog.e(LOG_TAG, "conference: not possible in CDMA");
    [all...]
CdmaCallTracker.java 343 conference() { method in class:CdmaCallTracker
    [all...]

Completed in 2623 milliseconds

1 2