Searched refs:conference (Results 1 - 11 of 11) sorted by relevance

/packages/services/Telephony/src/com/android/services/telephony/
H A DGsmConnection.java54 // implementation of calls inside telephony. Basically, you can "conference" and it
55 // will conference with the background call. We know that otherConnection is the
58 getPhone().conference();
60 Log.e(this, e, "Failed to conference call.");
H A DGsmConferenceController.java32 * Maintains a list of all the known GSM connections and implements GSM-specific conference
65 /** The GSM conference connection object. */
85 private boolean isFullConference(Conference conference) { argument
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.",
173 Log.d(this, "less than two conference calls!");
174 // No more connections are conferenced, destroy any existing conference.
176 Log.d(this, "with a conference t
[all...]
H A DGsmConference.java31 * GSM-based conference call.
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");
93 * Invoked when the conference should be put on hold.
104 * Invoked when the conference should be moved from hold to active.
148 Log.e(this, null, "Non GSM connection found in a Gsm conference (
[all...]
/packages/services/Telecomm/tests/src/com/android/server/telecom/testapps/
H A DTestConnectionManager.java201 public void onStateChanged(RemoteConference conference, int oldState, int 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) {
/packages/services/Telecomm/src/com/android/server/telecom/
H A DInCallAdapter.java163 mCallsManager.conference(call, otherCall);
165 Log.w(this, "conference, unknown call id: %s", msg.obj);
307 public void conference(String callId, String otherCallId) { method in class:InCallAdapter
H A DConnectionServiceWrapper.java195 Log.w(this, "Attempting to add a conference call using an existing " +
203 // we'll get a add conference msg from both the remote connection service
212 Log.d(this, "Attempting to add a conference with no valid calls");
222 Log.d(this, "adding children to conference %s",
473 // conference calls.
829 void conference(final Call call, Call otherCall) { method in class:ConnectionServiceWrapper
832 if (callId != null && otherCallId != null && isServiceValid("conference")) {
834 logOutgoing("conference %s %s", callId, otherCallId);
835 mServiceInterface.conference(callId, otherCallId);
H A DBluetoothPhoneService.java98 // Add all held calls to a conference
365 * because conference change events are not atomic and multiple callbacks get fired
369 * conference calls.
371 * 1) Call 1 and Call 2 are being merged into conference Call 3.
378 // one sent for the parent conference call.
384 // the minimum number of child calls to start a conference call is 2. We expect
524 callsManager.conference(activeCall, conferenceable.get(0));
564 // We don't send the parent conference call to the bluetooth device.
589 // Basically, if call supports swapping or merging at the conference-level, then we need
594 // that the conference itsel
[all...]
H A DCall.java296 // of the current "active" call within the conference call. This maintains the "active" call and
902 Log.w(this, "conference requested on a call without a connection service.");
904 mConnectionService.conference(this, otherCall);
910 Log.w(this, "splitting from conference call without a connection service");
918 Log.w(this, "merging conference calls without a connection service.");
927 Log.w(this, "swapping conference calls without a connection service.");
991 // Set the pseudo-active call to the latest child added to the conference.
H A DCallsManager.java505 * Attempts to start a conference call for the specified call.
507 * @param call The call to conference.
508 * @param otherCall The other call to conference with.
510 void conference(Call call, Call otherCall) { method in class:CallsManager
842 // Disable "Add Call" for CDMA calls which are conference calls.
1200 // hold but they still support adding a call by going immediately into conference
/packages/apps/InCallUI/src/com/android/incallui/
H A DTelecomAdapter.java166 call.conference(conferenceable.get(0));
/packages/services/Telephony/src/com/android/phone/
H A DPhoneUtils.java761 // Set the Phone Call State to conference
774 log("mergeCalls(): calling cm.conference()...");
775 cm.conference(cm.getFirstActiveBgCall());
1668 * Returns true if the specified Call is a "conference call", meaning
1670 * used to trigger certain UI changes that appear when a conference
1672 * enabling the "Manage conference" UI.)
1678 * conference call any more.)
1683 // CDMA phones don't have the same concept of "conference call" as
1684 // GSM phones do; there's no special "conference call" state of
1685 // the UI or a "manage conference" functio
[all...]

Completed in 289 milliseconds