• Home
  • Raw
  • Download

Lines Matching refs:callId

115         public void setActive(String callId, Session.Info sessionInfo) {
116 if (mConnectionById.containsKey(callId)) {
117 findConnectionForAction(callId, "setActive")
120 findConferenceForAction(callId, "setActive")
126 public void setRinging(String callId, Session.Info sessionInfo) {
127 findConnectionForAction(callId, "setRinging")
132 public void setDialing(String callId, Session.Info sessionInfo) {
133 findConnectionForAction(callId, "setDialing")
138 public void setPulling(String callId, Session.Info sessionInfo) {
139 findConnectionForAction(callId, "setPulling")
144 public void setDisconnected(String callId, DisconnectCause disconnectCause,
146 if (mConnectionById.containsKey(callId)) {
147 findConnectionForAction(callId, "setDisconnected")
150 findConferenceForAction(callId, "setDisconnected")
156 public void setOnHold(String callId, Session.Info sessionInfo) {
157 if (mConnectionById.containsKey(callId)) {
158 findConnectionForAction(callId, "setOnHold")
161 findConferenceForAction(callId, "setOnHold")
167 public void setRingbackRequested(String callId, boolean ringing, Session.Info sessionInfo) {
168 findConnectionForAction(callId, "setRingbackRequested")
173 public void setConnectionCapabilities(String callId, int connectionCapabilities,
175 if (mConnectionById.containsKey(callId)) {
176 findConnectionForAction(callId, "setConnectionCapabilities")
179 findConferenceForAction(callId, "setConnectionCapabilities")
185 public void setConnectionProperties(String callId, int connectionProperties,
187 if (mConnectionById.containsKey(callId)) {
188 findConnectionForAction(callId, "setConnectionProperties")
191 findConferenceForAction(callId, "setConnectionProperties")
197 public void setIsConferenced(String callId, String conferenceCallId,
201 findConnectionForAction(callId, "setIsConferenced");
219 public void setConferenceMergeFailed(String callId, Session.Info sessionInfo) {
226 public void onPhoneAccountChanged(String callId, PhoneAccountHandle pHandle,
235 final String callId, ParcelableConference parcel, Session.Info sessionInfo) {
236 RemoteConference conference = new RemoteConference(callId,
253 mConferenceById.put(callId, conference);
259 newExtras.putString(Connection.EXTRA_ORIGINAL_CONNECTION_ID, callId);
268 mConferenceById.remove(callId);
277 public void removeCall(String callId, Session.Info sessionInfo) {
278 if (mConnectionById.containsKey(callId)) {
279 findConnectionForAction(callId, "removeCall")
282 findConferenceForAction(callId, "removeCall")
288 public void onPostDialWait(String callId, String remaining, Session.Info sessionInfo) {
289 findConnectionForAction(callId, "onPostDialWait")
294 public void onPostDialChar(String callId, char nextChar, Session.Info sessionInfo) {
295 findConnectionForAction(callId, "onPostDialChar")
306 public void setVideoProvider(String callId, IVideoProvider videoProvider,
317 findConnectionForAction(callId, "setVideoProvider")
322 public void setVideoState(String callId, int videoState, Session.Info sessionInfo) {
323 findConnectionForAction(callId, "setVideoState")
328 public void setIsVoipAudioMode(String callId, boolean isVoip, Session.Info sessionInfo) {
329 findConnectionForAction(callId, "setIsVoipAudioMode")
334 public void setStatusHints(String callId, StatusHints statusHints,
336 findConnectionForAction(callId, "setStatusHints")
341 public void setAddress(String callId, Uri address, int presentation,
343 findConnectionForAction(callId, "setAddress")
348 public void setCallerDisplayName(String callId, String callerDisplayName,
350 findConnectionForAction(callId, "setCallerDisplayName")
360 public final void setConferenceableConnections(String callId,
369 if (hasConnection(callId)) {
370 findConnectionForAction(callId, "setConferenceableConnections")
373 findConferenceForAction(callId, "setConferenceableConnections")
379 public void addExistingConnection(String callId, ParcelableConnection connection,
381 Log.i(RemoteConnectionService.this, "addExistingConnection: callId=%s, conn=%s", callId,
387 RemoteConnection remoteConnection = new RemoteConnection(callId,
409 mConnectionById.put(callId, remoteConnection);
413 mConnectionById.remove(callId);
421 public void putExtras(String callId, Bundle extras, Session.Info sessionInfo) {
422 if (hasConnection(callId)) {
423 findConnectionForAction(callId, "putExtras").putExtras(extras);
425 findConferenceForAction(callId, "putExtras").putExtras(extras);
430 public void removeExtras(String callId, List<String> keys, Session.Info sessionInfo) {
431 if (hasConnection(callId)) {
432 findConnectionForAction(callId, "removeExtra").removeExtras(keys);
434 findConferenceForAction(callId, "removeExtra").removeExtras(keys);
439 public void setAudioRoute(String callId, int audioRoute, String bluetoothAddress,
441 if (hasConnection(callId)) {
449 public void onConnectionEvent(String callId, String event, Bundle extras,
451 if (mConnectionById.containsKey(callId)) {
452 findConnectionForAction(callId, "onConnectionEvent").onConnectionEvent(event,
458 public void onRttInitiationSuccess(String callId, Session.Info sessionInfo)
460 if (hasConnection(callId)) {
461 findConnectionForAction(callId, "onRttInitiationSuccess")
469 public void onRttInitiationFailure(String callId, int reason, Session.Info sessionInfo)
471 if (hasConnection(callId)) {
472 findConnectionForAction(callId, "onRttInitiationFailure")
480 public void onRttSessionRemotelyTerminated(String callId, Session.Info sessionInfo)
482 if (hasConnection(callId)) {
483 findConnectionForAction(callId, "onRttSessionRemotelyTerminated")
491 public void onRemoteRttRequest(String callId, Session.Info sessionInfo)
493 if (hasConnection(callId)) {
494 findConnectionForAction(callId, "onRemoteRttRequest")
502 public void resetConnectionTime(String callId, Session.Info sessionInfo) {
507 public void setConferenceState(String callId, boolean isConference,
513 public void setCallDirection(String callId, int direction, Session.Info sessionInfo) {
518 public void requestCallEndpointChange(String callId, CallEndpoint endpoint,
524 public void queryLocation(String callId, long timeoutMillis, String provider,
685 private boolean hasConnection(String callId) { in hasConnection() argument
686 return mConnectionById.containsKey(callId); in hasConnection()
690 String callId, String action) { in findConnectionForAction() argument
691 if (mConnectionById.containsKey(callId)) { in findConnectionForAction()
692 return mConnectionById.get(callId); in findConnectionForAction()
694 Log.w(this, "%s - Cannot find Connection %s", action, callId); in findConnectionForAction()
699 String callId, String action) { in findConferenceForAction() argument
700 if (mConferenceById.containsKey(callId)) { in findConferenceForAction()
701 return mConferenceById.get(callId); in findConferenceForAction()
703 Log.w(this, "%s - Cannot find Conference %s", action, callId); in findConferenceForAction()