Home
last modified time | relevance | path

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

12

/frameworks/base/telecomm/java/android/telecom/
DInCallAdapter.java58 public void answerCall(String callId, int videoState) { in answerCall() argument
60 mAdapter.answerCall(callId, videoState); in answerCall()
71 public void deflectCall(String callId, Uri address) { in deflectCall() argument
73 mAdapter.deflectCall(callId, address); in deflectCall()
85 public void rejectCall(String callId, boolean rejectWithMessage, String textMessage) { in rejectCall() argument
87 mAdapter.rejectCall(callId, rejectWithMessage, textMessage); in rejectCall()
98 public void rejectCall(String callId, @Call.RejectReason int rejectReason) { in rejectCall() argument
100 mAdapter.rejectCallWithReason(callId, rejectReason); in rejectCall()
113 public void transferCall(@NonNull String callId, @NonNull Uri targetNumber, in transferCall() argument
116 mAdapter.transferCall(callId, targetNumber, isConfirmationRequired); in transferCall()
[all …]
DConnectionServiceAdapter.java122 void setActive(String callId) { in setActive() argument
125 adapter.setActive(callId, Log.getExternalSession()); in setActive()
136 void setRinging(String callId) { in setRinging() argument
139 adapter.setRinging(callId, Log.getExternalSession()); in setRinging()
150 void setDialing(String callId) { in setDialing() argument
153 adapter.setDialing(callId, Log.getExternalSession()); in setDialing()
165 void setPulling(String callId) { in setPulling() argument
168 adapter.setPulling(callId, Log.getExternalSession()); in setPulling()
181 void setDisconnected(String callId, DisconnectCause disconnectCause) { in setDisconnected() argument
184 adapter.setDisconnected(callId, disconnectCause, Log.getExternalSession()); in setDisconnected()
[all …]
DRemoteConnectionService.java112 public void setActive(String callId, Session.Info sessionInfo) {
113 if (mConnectionById.containsKey(callId)) {
114 findConnectionForAction(callId, "setActive")
117 findConferenceForAction(callId, "setActive")
123 public void setRinging(String callId, Session.Info sessionInfo) {
124 findConnectionForAction(callId, "setRinging")
129 public void setDialing(String callId, Session.Info sessionInfo) {
130 findConnectionForAction(callId, "setDialing")
135 public void setPulling(String callId, Session.Info sessionInfo) {
136 findConnectionForAction(callId, "setPulling")
[all …]
DConnectionService.java287 String callId,
294 args.arg1 = callId;
344 String callId,
351 args.arg1 = callId;
363 public void handoverFailed(String callId, ConnectionRequest request, int reason,
368 args.arg1 = callId;
379 public void handoverComplete(String callId, Session.Info sessionInfo) {
383 args.arg1 = callId;
392 public void abort(String callId, Session.Info sessionInfo) {
396 args.arg1 = callId;
[all …]
DInCallService.java257 String callId = (String) args.arg1;
259 mPhone.internalSetPostDialWait(callId, remaining);
280 String callId = (String) args.arg1;
283 mPhone.internalOnConnectionEvent(callId, event, extras);
290 String callId = (String) msg.obj;
292 mPhone.internalOnRttUpgradeRequest(callId, requestId);
296 String callId = (String) msg.obj;
298 mPhone.internalOnRttInitiationFailure(callId, reason);
302 String callId = (String) msg.obj;
304 mPhone.internalOnHandoverFailed(callId, error);
[all …]
DPhone.java250 final void internalOnRttUpgradeRequest(String callId, int requestId) { in internalOnRttUpgradeRequest() argument
251 Call call = mCallByTelecomCallId.get(callId); in internalOnRttUpgradeRequest()
257 final void internalOnRttInitiationFailure(String callId, int reason) { in internalOnRttInitiationFailure() argument
258 Call call = mCallByTelecomCallId.get(callId); in internalOnRttInitiationFailure()
264 final void internalOnHandoverFailed(String callId, int error) { in internalOnHandoverFailed() argument
265 Call call = mCallByTelecomCallId.get(callId); in internalOnHandoverFailed()
271 final void internalOnHandoverComplete(String callId) { in internalOnHandoverComplete() argument
272 Call call = mCallByTelecomCallId.get(callId); in internalOnHandoverComplete()
DConnectionServiceAdapterServant.java466 public void setConferenceMergeFailed(String callId, Session.Info sessionInfo) {
468 args.arg1 = callId;
473 public void setIsConferenced(String callId, String conferenceCallId,
476 args.arg1 = callId;
482 public void addConferenceCall(String callId, ParcelableConference parcelableConference,
485 args.arg1 = callId;
658 public void onPhoneAccountChanged(String callId, PhoneAccountHandle pHandle,
661 args.arg1 = callId;
672 public void resetConnectionTime(String callId, Session.Info sessionInfo) {
677 public void setConferenceState(String callId, boolean isConference,
[all …]
DRemoteConnection.java675 RemoteConnection(String callId, IConnectionService connectionService, in RemoteConnection() argument
677 mConnectionId = callId; in RemoteConnection()
706 newExtras.putString(Connection.EXTRA_ORIGINAL_CONNECTION_ID, callId); in RemoteConnection()
/frameworks/base/telecomm/java/com/android/internal/telecom/
DIInCallAdapter.aidl31 void answerCall(String callId, int videoState); in answerCall() argument
33 void deflectCall(String callId, in Uri address); in deflectCall() argument
35 void rejectCall(String callId, boolean rejectWithMessage, String textMessage); in rejectCall() argument
37 void rejectCallWithReason(String callId, int rejectReason); in rejectCallWithReason() argument
39 void transferCall(String callId, in Uri targetNumber, boolean isConfirmationRequired); in transferCall() argument
41 void consultativeTransfer(String callId, String otherCallId); in consultativeTransfer() argument
43 void disconnectCall(String callId); in disconnectCall() argument
45 void holdCall(String callId); in holdCall() argument
47 void unholdCall(String callId); in unholdCall() argument
53 void enterBackgroundAudioProcessing(String callId); in enterBackgroundAudioProcessing() argument
[all …]
DIConnectionServiceAdapter.aidl42 String callId, in handleCreateConnectionComplete() argument
48 String callId, in handleCreateConferenceComplete() argument
53 void setActive(String callId, in Session.Info sessionInfo); in setActive() argument
55 void setRinging(String callId, in Session.Info sessionInfo); in setRinging() argument
57 void setDialing(String callId, in Session.Info sessionInfo); in setDialing() argument
59 void setPulling(String callId, in Session.Info sessionInfo); in setPulling() argument
61 void setDisconnected(String callId, in DisconnectCause disconnectCause, in setDisconnected() argument
64 void setOnHold(String callId, in Session.Info sessionInfo); in setOnHold() argument
66 void setRingbackRequested(String callId, boolean ringing, in Session.Info sessionInfo); in setRingbackRequested() argument
68 void setConnectionCapabilities(String callId, int connectionCapabilities, in setConnectionCapabilities() argument
[all …]
DIConnectionService.aidl45 String callId, in createConnection() argument
51 void createConnectionComplete(String callId, in Session.Info sessionInfo); in createConnectionComplete() argument
53 void createConnectionFailed(in PhoneAccountHandle connectionManagerPhoneAccount, String callId, in createConnectionFailed() argument
58 String callId, in createConference() argument
64 void createConferenceComplete(String callId, in Session.Info sessionInfo); in createConferenceComplete() argument
66 void createConferenceFailed(in PhoneAccountHandle connectionManagerPhoneAccount, String callId, in createConferenceFailed() argument
70 void abort(String callId, in Session.Info sessionInfo); in abort() argument
72 void answerVideo(String callId, int videoState, in Session.Info sessionInfo); in answerVideo() argument
74 void answer(String callId, in Session.Info sessionInfo); in answer() argument
76 void deflect(String callId, in Uri address, in Session.Info sessionInfo); in deflect() 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
54 void onRttUpgradeRequest(String callId, int id); in onRttUpgradeRequest() argument
56 void onRttInitiationFailure(String callId, int reason); in onRttInitiationFailure() argument
58 void onHandoverFailed(String callId, int error); in onHandoverFailed() argument
60 void onHandoverComplete(String callId); in onHandoverComplete() argument
DICallScreeningAdapter.aidl29 void allowCall(String callId); in allowCall() argument
31 void silenceCall(String callId); in silenceCall() argument
33 void screenCallFurther(String callId); in screenCallFurther() argument
36 String callId, in disallowCall() argument
/frameworks/base/core/java/android/view/textclassifier/
DGenerateLinksLogger.java91 final String callId = UUID.randomUUID().toString(); in logGenerateLinks() local
92 writeStats(callId, callingPackageName, null, totalStats, text, latencyMs); in logGenerateLinks()
94 writeStats(callId, callingPackageName, entry.getKey(), entry.getValue(), text, in logGenerateLinks()
113 private void writeStats(String callId, String callingPackageName, @Nullable String entityType, in writeStats() argument
117 .addTaggedData(MetricsEvent.FIELD_LINKIFY_CALL_ID, callId) in writeStats()
133 final String callId = Objects.toString( in debugLog() local
147 String.format(Locale.US, "%s:%s %d links (%d/%d chars) %dms %s", callId, entityType, in debugLog()
/frameworks/base/telephony/java/android/telephony/ims/
DImsExternalCallState.java94 public ImsExternalCallState(int callId, Uri address, boolean isPullable, in ImsExternalCallState() argument
96 mCallId = callId; in ImsExternalCallState()
106 public ImsExternalCallState(int callId, Uri address, Uri localAddress, in ImsExternalCallState() argument
109 mCallId = callId; in ImsExternalCallState()
131 public ImsExternalCallState(@NonNull String callId, @NonNull Uri address, in ImsExternalCallState() argument
134 mCallId = getIdForString(callId); in ImsExternalCallState()
/frameworks/opt/net/voip/src/java/android/net/sip/
DSipManager.java433 String callId = getCallId(incomingCallIntent); in takeAudioCall() local
434 if (callId == null) { in takeAudioCall()
446 ISipSession session = mSipService.getPendingSession(callId, in takeAudioCall()
469 String callId = getCallId(intent); in isIncomingCallIntent()
471 return ((callId != null) && (offerSd != null)); in isIncomingCallIntent()
504 public static Intent createIncomingCallBroadcast(String callId, in createIncomingCallBroadcast() argument
507 intent.putExtra(EXTRA_CALL_ID, callId); in createIncomingCallBroadcast()
583 String callId = getCallId(incomingCallIntent); in getSessionFor() local
584 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.java251 int callId = entry.getKey().intValue(); in refreshExternalCallState() local
253 if (!containsCallId(externalCallStates, callId)) { in refreshExternalCallState()
292 public Connection getConnectionById(int callId) { in getConnectionById() argument
293 return mExternalConnections.get(callId); in getConnectionById()
416 private boolean containsCallId(List<ImsExternalCallState> externalCallStates, int callId) { in containsCallId() argument
422 if (state.getCallId() == callId) { in containsCallId()
DImsExternalConnection.java84 protected ImsExternalConnection(Phone phone, int callId, Uri address, boolean isPullable) { in ImsExternalConnection() argument
88 mCallId = callId; in ImsExternalConnection()
/frameworks/base/telephony/java/android/telephony/ims/compat/feature/
DMMTelFeature.java127 public IImsCallSession getPendingCallSession(int sessionId, String callId)
130 return MMTelFeature.this.getPendingCallSession(sessionId, callId);
307 public IImsCallSession getPendingCallSession(int sessionId, String callId) { in getPendingCallSession() argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ims/
DMmTelInterfaceAdapter.java88 public IImsCallSession getPendingCallSession(int sessionId, String callId) in getPendingCallSession() argument
90 return getInterface().getPendingCallSession(sessionId, callId); in getPendingCallSession()
DMmTelFeatureCompatAdapter.java272 String callId = intent.getStringExtra("android:imsCallID");
275 callId);
/frameworks/opt/net/voip/src/java/com/android/server/sip/
DSipService.java289 public synchronized ISipSession getPendingSession(String callId, String opPackageName) { in getPendingSession() argument
293 if (callId == null) return null; in getPendingSession()
294 return mPendingSessions.get(callId); in getPendingSession()
429 String callId = ringingSession.getCallId(); in callingSelf() local
431 if ((group != ringingGroup) && group.containsSession(callId)) { in callingSelf()
503 public boolean containsSession(String callId) { in containsSession() argument
504 return mSipGroup.containsSession(callId); in containsSession()
/frameworks/base/telephony/java/com/android/ims/internal/
DIImsMMTelFeature.aidl46 IImsCallSession getPendingCallSession(int sessionId, String callId); in getPendingCallSession() argument
DIImsService.aidl58 IImsCallSession getPendingCallSession(int serviceId, String callId); in getPendingCallSession() argument

12