Home
last modified time | relevance | path

Searched refs:callId (Results 1 – 25 of 27) sorted by relevance

12

/frameworks/base/telecomm/java/android/telecom/
DRemoteConnectionService.java98 public void setActive(String callId) {
99 if (mConnectionById.containsKey(callId)) {
100 findConnectionForAction(callId, "setActive")
103 findConferenceForAction(callId, "setActive")
109 public void setRinging(String callId) {
110 findConnectionForAction(callId, "setRinging")
115 public void setDialing(String callId) {
116 findConnectionForAction(callId, "setDialing")
121 public void setPulling(String callId) {
122 findConnectionForAction(callId, "setPulling")
[all …]
DInCallAdapter.java55 public void answerCall(String callId, int videoState) { in answerCall() argument
57 mAdapter.answerCall(callId, videoState); in answerCall()
69 public void rejectCall(String callId, boolean rejectWithMessage, String textMessage) { in rejectCall() argument
71 mAdapter.rejectCall(callId, rejectWithMessage, textMessage); in rejectCall()
81 public void disconnectCall(String callId) { in disconnectCall() argument
83 mAdapter.disconnectCall(callId); in disconnectCall()
93 public void holdCall(String callId) { in holdCall() argument
95 mAdapter.holdCall(callId); in holdCall()
105 public void unholdCall(String callId) { in unholdCall() argument
107 mAdapter.unholdCall(callId); in unholdCall()
[all …]
DConnectionServiceAdapter.java108 void setActive(String callId) { in setActive() argument
111 adapter.setActive(callId); in setActive()
122 void setRinging(String callId) { in setRinging() argument
125 adapter.setRinging(callId); in setRinging()
136 void setDialing(String callId) { in setDialing() argument
139 adapter.setDialing(callId); in setDialing()
151 void setPulling(String callId) { in setPulling() argument
154 adapter.setPulling(callId); in setPulling()
167 void setDisconnected(String callId, DisconnectCause disconnectCause) { in setDisconnected() argument
170 adapter.setDisconnected(callId, disconnectCause); in setDisconnected()
[all …]
DConnectionService.java153 public void abort(String callId) {
154 mHandler.obtainMessage(MSG_ABORT, callId).sendToTarget();
158 public void answerVideo(String callId, int videoState) {
160 args.arg1 = callId;
166 public void answer(String callId) {
167 mHandler.obtainMessage(MSG_ANSWER, callId).sendToTarget();
171 public void reject(String callId) {
172 mHandler.obtainMessage(MSG_REJECT, callId).sendToTarget();
176 public void rejectWithMessage(String callId, String message) {
178 args.arg1 = callId;
[all …]
DInCallService.java103 String callId = (String) args.arg1;
105 mPhone.internalSetPostDialWait(callId, remaining);
126 String callId = (String) args.arg1;
129 mPhone.internalOnConnectionEvent(callId, event, extras);
159 public void setPostDial(String callId, String remaining) { in setPostDial() argument
164 public void setPostDialWait(String callId, String remaining) { in setPostDialWait() argument
166 args.arg1 = callId; in setPostDialWait()
193 public void onConnectionEvent(String callId, String event, Bundle extras) { in onConnectionEvent() argument
195 args.arg1 = callId; in onConnectionEvent()
DConnectionServiceAdapterServant.java345 public void setConferenceMergeFailed(String callId) {
347 args.arg1 = callId;
352 public void setIsConferenced(String callId, String conferenceCallId) {
354 args.arg1 = callId;
360 public void addConferenceCall(String callId, ParcelableConference parcelableConference) {
362 args.arg1 = callId;
DRemoteConnection.java630 RemoteConnection(String callId, IConnectionService connectionService, in RemoteConnection() argument
632 mConnectionId = callId; in RemoteConnection()
660 newExtras.putString(Connection.EXTRA_ORIGINAL_CONNECTION_ID, callId); in RemoteConnection()
/frameworks/base/telecomm/java/com/android/internal/telecom/
DIConnectionServiceAdapter.aidl40 String callId, in handleCreateConnectionComplete() argument
44 void setActive(String callId); in setActive() argument
46 void setRinging(String callId); in setRinging() argument
48 void setDialing(String callId); in setDialing() argument
50 void setPulling(String callId); in setPulling() argument
52 void setDisconnected(String callId, in DisconnectCause disconnectCause); in setDisconnected() argument
54 void setOnHold(String callId); in setOnHold() argument
56 void setRingbackRequested(String callId, boolean ringing); in setRingbackRequested() argument
58 void setConnectionCapabilities(String callId, int connectionCapabilities); in setConnectionCapabilities() argument
60 void setConnectionProperties(String callId, int connectionProperties); in setConnectionProperties() argument
[all …]
DIInCallAdapter.aidl30 void answerCall(String callId, int videoState); in answerCall() argument
32 void rejectCall(String callId, boolean rejectWithMessage, String textMessage); in rejectCall() argument
34 void disconnectCall(String callId); in disconnectCall() argument
36 void holdCall(String callId); in holdCall() argument
38 void unholdCall(String callId); in unholdCall() argument
44 void playDtmfTone(String callId, char digit); in playDtmfTone() argument
46 void stopDtmfTone(String callId); in stopDtmfTone() argument
48 void postDialContinue(String callId, boolean proceed); in postDialContinue() argument
50 void phoneAccountSelected(String callId, in PhoneAccountHandle accountHandle, in phoneAccountSelected() argument
53 void conference(String callId, String otherCallId); in conference() argument
[all …]
DIConnectionService.aidl40 String callId, in createConnection() argument
45 void abort(String callId); in abort() argument
47 void answerVideo(String callId, int videoState); in answerVideo() argument
49 void answer(String callId); in answer() argument
51 void reject(String callId); in reject() argument
53 void rejectWithMessage(String callId, String message); in rejectWithMessage() argument
55 void disconnect(String callId); in disconnect() argument
57 void silence(String callId); in silence() argument
59 void hold(String callId); in hold() argument
61 void unhold(String callId); in unhold() argument
[all …]
DIInCallService.aidl40 void setPostDial(String callId, String remaining); in setPostDial() argument
42 void setPostDialWait(String callId, String remaining); in setPostDialWait() argument
52 void onConnectionEvent(String callId, String event, in Bundle extras); in onConnectionEvent() argument
DICallScreeningAdapter.aidl27 void allowCall(String callId); in allowCall() argument
30 String callId, in disallowCall() argument
/frameworks/base/telephony/java/com/android/internal/telephony/
DICallServiceAdapter.aidl34 void newIncomingCall(String callId, in CallInfo info); in newIncomingCall() argument
39 void newOutgoingCall(String callId, in CallInfo info); in newOutgoingCall() argument
45 void setActive(String callId); in setActive() argument
50 void setRinging(String callId); in setRinging() argument
55 void setDialing(String callId); in setDialing() argument
60 void setDisconnected(String callId); in setDisconnected() argument
DICallService.aidl53 void disconnect(String callId); in disconnect() argument
/frameworks/opt/net/voip/src/java/android/net/sip/
DSipManager.java413 String callId = getCallId(incomingCallIntent); in takeAudioCall() local
414 if (callId == null) { in takeAudioCall()
426 ISipSession session = mSipService.getPendingSession(callId, in takeAudioCall()
449 String callId = getCallId(intent); in isIncomingCallIntent()
451 return ((callId != null) && (offerSd != null)); in isIncomingCallIntent()
484 public static Intent createIncomingCallBroadcast(String callId, in createIncomingCallBroadcast() argument
487 intent.putExtra(EXTRA_CALL_ID, callId); in createIncomingCallBroadcast()
563 String callId = getCallId(incomingCallIntent); in getSessionFor() local
564 ISipSession s = mSipService.getPendingSession(callId, in getSessionFor()
DISipService.aidl40 ISipSession getPendingSession(String callId, String opPackageName); in getPendingSession() argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
DImsExternalCallTracker.java252 int callId = entry.getKey().intValue(); in refreshExternalCallState() local
254 if (!containsCallId(externalCallStates, callId)) { in refreshExternalCallState()
293 public Connection getConnectionById(int callId) { in getConnectionById() argument
294 return mExternalConnections.get(callId); in getConnectionById()
417 private boolean containsCallId(List<ImsExternalCallState> externalCallStates, int callId) { in containsCallId() argument
423 if (state.getCallId() == callId) { in containsCallId()
DImsExternalConnection.java86 protected ImsExternalConnection(Phone phone, int callId, Uri address, boolean isPullable) { in ImsExternalConnection() argument
90 mCallId = callId; in ImsExternalConnection()
/frameworks/opt/net/ims/src/java/com/android/ims/
DImsServiceBase.java87 public IImsCallSession getPendingCallSession(int serviceId, String callId) { in getPendingCallSession() argument
88 return onGetPendingCallSession(serviceId, callId); in getPendingCallSession()
181 protected IImsCallSession onGetPendingCallSession(int serviceId, String callId) { in onGetPendingCallSession() argument
DImsManager.java1163 String callId = getCallId(incomingCallIntent); in takeCall() local
1165 if (callId == null) { in takeCall()
1171 IImsCallSession session = mImsService.getPendingCallSession(serviceId, callId); in takeCall()
DImsCall.java2452 String callId = cs.getCallId(); in doesCallSessionExistsInMerge() local
2453 return ((isMergeHost() && Objects.equals(mMergePeer.mSession.getCallId(), callId)) || in doesCallSessionExistsInMerge()
2454 (isMergePeer() && Objects.equals(mMergeHost.mSession.getCallId(), callId)) || in doesCallSessionExistsInMerge()
2455 Objects.equals(mSession.getCallId(), callId)); in doesCallSessionExistsInMerge()
/frameworks/base/telephony/java/com/android/ims/
DImsExternalCallState.java56 public ImsExternalCallState(int callId, Uri address, boolean isPullable, int callState, in ImsExternalCallState() argument
58 mCallId = callId; in ImsExternalCallState()
/frameworks/opt/net/voip/src/java/com/android/server/sip/
DSipService.java287 public synchronized ISipSession getPendingSession(String callId, String opPackageName) { in getPendingSession() argument
291 if (callId == null) return null; in getPendingSession()
292 return mPendingSessions.get(callId); in getPendingSession()
427 String callId = ringingSession.getCallId(); in callingSelf() local
429 if ((group != ringingGroup) && group.containsSession(callId)) { in callingSelf()
501 public boolean containsSession(String callId) { in containsSession() argument
502 return mSipGroup.containsSession(callId); in containsSession()
DSipSessionGroup.java273 synchronized boolean containsSession(String callId) { in containsSession() argument
274 return mSessionMap.containsKey(callId); in containsSession()
447 String callId = replaces.getCallId(); in processInviteWithReplaces() local
448 SipSessionImpl session = mSessionMap.get(callId); in processInviteWithReplaces()
/frameworks/base/telephony/java/com/android/ims/internal/
DIImsService.aidl58 IImsCallSession getPendingCallSession(int serviceId, String callId); in getPendingCallSession() argument

12