/frameworks/base/telecomm/java/android/telecom/ |
Conference.java | 29 * Represents a conference call which can contain any number of {@link Connection} objects. 33 public abstract class Conference { 37 public void onStateChanged(Conference conference, int oldState, int newState) {} 38 public void onDisconnected(Conference conference, DisconnectCause disconnectCause) {} 39 public void onConnectionAdded(Conference conference, Connection connection) {} 40 public void onConnectionRemoved(Conference conference, Connection connection) { [all...] |
ConnectionService.java | 82 private final Map<String, Conference> mConferenceById = new ConcurrentHashMap<>(); 83 private final Map<Conference, String> mIdByConference = new ConcurrentHashMap<>(); 90 private Conference sNullConference; 176 public void conference(String callId1, String callId2) { 304 conference(callId1, callId2); 336 private final Conference.Listener mConferenceListener = new Conference.Listener() { 338 public void onStateChanged(Conference conference, int oldState, int newState) { 339 String id = mIdByConference.get(conference); 653 private void conference(String callId1, String callId2) { method in class:ConnectionService 686 Conference conference = connection.getConference(); local 694 Conference conference = findConferenceForAction(callId, "mergeConference"); local 702 Conference conference = findConferenceForAction(callId, "swapConference"); local [all...] |
Connection.java | 87 public void onConferenceChanged(Connection c, Conference conference) {} 479 private Conference mConference; 548 * @return The conference that this connection is a part of. Null if it is not part of any 549 * conference. 551 public final Conference getConference() { 857 * @param conferenceableConnections The set of connections this connection can conference with. 911 * Sets the conference that this connection is a part of. This will fail if the connection is 912 * already part of a conference call. {@link #resetConference} to un-set the conference first [all...] |
/packages/services/Telephony/src/com/android/services/telephony/ |
GsmConferenceController.java | 25 import android.telecom.Conference; 32 * Maintains a list of all the known GSM connections and implements GSM-specific conference 65 /** The GSM conference connection object. */ 66 private Conference mGsmConference; 85 private boolean isFullConference(Conference conference) { 86 return conference.getConnections().size() >= GSM_CONFERENCE_MAX_SIZE; 95 * Calculates the conference-capable state of all GSM connections in this connection service. 138 // Set the conference as conferenceable with all the connections 169 Log.d(this, "Recalculate conference calls %s %s." [all...] |
CdmaConference.java | 19 import android.telecom.Conference; 30 * CDMA-based conference call. 32 public class CdmaConference extends Conference { 46 * Invoked when the Conference and all it's {@link Connection}s should be disconnected. 52 Log.d(this, "Found multiparty call to hangup for conference."); 56 Log.e(this, e, "Exception thrown trying to hangup conference"); 63 Log.e(this, new Exception(), "Separate not supported for CDMA conference call."); 68 Log.e(this, new Exception(), "Hold not supported for CDMA conference call."); 72 * Invoked when the conference should be moved from hold to active. 76 Log.e(this, new Exception(), "Unhold not supported for CDMA conference call.") [all...] |
GsmConference.java | 20 import android.telecom.Conference; 31 * GSM-based conference call. 33 public class GsmConference extends Conference { 46 * Invoked when the Conference and all it's {@link Connection}s should be disconnected. 53 Log.d(this, "Found multiparty call to hangup for conference."); 58 Log.e(this, e, "Exception thrown trying to hangup conference"); 65 * Invoked when the specified {@link Connection} should be separated from the conference call. 76 Log.e(this, e, "Exception thrown trying to separate a conference call"); 85 phone.conference(); 88 Log.e(this, e, "Exception thrown trying to merge call into a conference"); [all...] |
/packages/services/Telecomm/tests/src/com/android/server/telecom/testapps/ |
TestConnectionManager.java | 21 import android.telecom.Conference; 198 public final class TestManagedConference extends Conference { 201 public void onStateChanged(RemoteConference conference, int oldState, int newState) { 213 log("unrecognized state for Conference: " + newState); 219 public void onDisconnected(RemoteConference conference, 226 RemoteConference conference, 238 RemoteConference conference, 249 public void onCapabilitiesChanged(RemoteConference conference, int capabilities) { 254 public void onDestroyed(RemoteConference conference) {
|
TestConnectionService.java | 26 import android.telecom.Conference; 65 private final class TestConference extends Conference {
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
tapi3if.h | [all...] |
/external/chromium_org/third_party/usb_ids/ |
usb.ids | [all...] |