Home
last modified time | relevance | path

Searched defs:callId (Results 1 – 25 of 26) sorted by relevance

12

/frameworks/base/telecomm/java/com/android/internal/telecom/
DIInCallAdapter.aidl31 void answerCall(String callId, int videoState); in answerCall()
33 void deflectCall(String callId, in Uri address); in deflectCall()
35 void rejectCall(String callId, boolean rejectWithMessage, String textMessage); in rejectCall()
37 void rejectCallWithReason(String callId, int rejectReason); in rejectCallWithReason()
39 void transferCall(String callId, in Uri targetNumber, boolean isConfirmationRequired); in transferCall()
41 void consultativeTransfer(String callId, String otherCallId); in consultativeTransfer()
43 void disconnectCall(String callId); in disconnectCall()
45 void holdCall(String callId); in holdCall()
47 void unholdCall(String callId); in unholdCall()
53 void enterBackgroundAudioProcessing(String callId); in enterBackgroundAudioProcessing()
[all …]
DIConnectionServiceAdapter.aidl42 String callId, in handleCreateConnectionComplete()
48 String callId, in handleCreateConferenceComplete()
53 void setActive(String callId, in Session.Info sessionInfo); in setActive()
55 void setRinging(String callId, in Session.Info sessionInfo); in setRinging()
57 void setDialing(String callId, in Session.Info sessionInfo); in setDialing()
59 void setPulling(String callId, in Session.Info sessionInfo); in setPulling()
61 void setDisconnected(String callId, in DisconnectCause disconnectCause, in setDisconnected()
64 void setOnHold(String callId, in Session.Info sessionInfo); in setOnHold()
66 void setRingbackRequested(String callId, boolean ringing, in Session.Info sessionInfo); in setRingbackRequested()
68 void setConnectionCapabilities(String callId, int connectionCapabilities, in setConnectionCapabilities()
[all …]
DIConnectionService.aidl45 String callId, in createConnection()
51 void createConnectionComplete(String callId, in Session.Info sessionInfo); in createConnectionComplete()
53 void createConnectionFailed(in PhoneAccountHandle connectionManagerPhoneAccount, String callId, in createConnectionFailed()
58 String callId, in createConference()
64 void createConferenceComplete(String callId, in Session.Info sessionInfo); in createConferenceComplete()
66 void createConferenceFailed(in PhoneAccountHandle connectionManagerPhoneAccount, String callId, in createConferenceFailed()
70 void abort(String callId, in Session.Info sessionInfo); in abort()
72 void answerVideo(String callId, int videoState, in Session.Info sessionInfo); in answerVideo()
74 void answer(String callId, in Session.Info sessionInfo); in answer()
76 void deflect(String callId, in Uri address, in Session.Info sessionInfo); in deflect()
[all …]
DIInCallService.aidl40 void setPostDial(String callId, String remaining); in setPostDial()
42 void setPostDialWait(String callId, String remaining); in setPostDialWait()
52 void onConnectionEvent(String callId, String event, in Bundle extras); in onConnectionEvent()
54 void onRttUpgradeRequest(String callId, int id); in onRttUpgradeRequest()
56 void onRttInitiationFailure(String callId, int reason); in onRttInitiationFailure()
58 void onHandoverFailed(String callId, int error); in onHandoverFailed()
60 void onHandoverComplete(String callId); in onHandoverComplete()
DICallScreeningAdapter.aidl29 void allowCall(String callId); in allowCall()
31 void silenceCall(String callId); in silenceCall()
33 void screenCallFurther(String callId); in screenCallFurther()
36 String callId, in disallowCall()
/frameworks/base/telecomm/java/android/telecom/
DConnectionServiceAdapter.java122 void setActive(String callId) { in setActive()
136 void setRinging(String callId) { in setRinging()
150 void setDialing(String callId) { in setDialing()
165 void setPulling(String callId) { in setPulling()
181 void setDisconnected(String callId, DisconnectCause disconnectCause) { in setDisconnected()
195 void setOnHold(String callId) { in setOnHold()
210 void setRingbackRequested(String callId, boolean ringback) { in setRingbackRequested()
219 void setConnectionCapabilities(String callId, int capabilities) { in setConnectionCapabilities()
228 void setConnectionProperties(String callId, int properties) { in setConnectionProperties()
245 void setIsConferenced(String callId, String conferenceCallId) { in setIsConferenced()
[all …]
DInCallAdapter.java58 public void answerCall(String callId, int videoState) { in answerCall()
71 public void deflectCall(String callId, Uri address) { in deflectCall()
85 public void rejectCall(String callId, boolean rejectWithMessage, String textMessage) { in rejectCall()
98 public void rejectCall(String callId, @Call.RejectReason int rejectReason) { in rejectCall()
113 public void transferCall(@NonNull String callId, @NonNull Uri targetNumber, in transferCall()
127 public void transferCall(@NonNull String callId, @NonNull String otherCallId) { in transferCall()
139 public void disconnectCall(String callId) { in disconnectCall()
151 public void holdCall(String callId) { in holdCall()
163 public void unholdCall(String callId) { in unholdCall()
197 public void enterBackgroundAudioProcessing(String callId) { in enterBackgroundAudioProcessing()
[all …]
DConnectionService.java1846 final String callId, in createConference()
1907 final String callId, in createConnection()
1952 addConnection(request.getAccountHandle(), callId, connection); in createConnection() local
2000 final String callId, final ConnectionRequest request, in createConnectionFailed()
2012 final String callId, final ConnectionRequest request, in createConferenceFailed()
2023 private void handoverFailed(final String callId, final ConnectionRequest request, in handoverFailed()
2035 private void notifyCreateConnectionComplete(final String callId) { in notifyCreateConnectionComplete()
2052 private void notifyCreateConferenceComplete(final String callId) { in notifyCreateConferenceComplete()
2065 private void abort(String callId) { in abort()
2070 private void answerVideo(String callId, int videoState) { in answerVideo()
[all …]
DRemoteConnectionService.java576 private boolean hasConnection(String callId) { in hasConnection()
581 String callId, String action) { in findConnectionForAction()
590 String callId, String action) { in findConferenceForAction()
DInCallService.java336 public void setPostDial(String callId, String remaining) { in setPostDial()
341 public void setPostDialWait(String callId, String remaining) { in setPostDialWait()
370 public void onConnectionEvent(String callId, String event, Bundle extras) { in onConnectionEvent()
379 public void onRttUpgradeRequest(String callId, int id) { in onRttUpgradeRequest()
384 public void onRttInitiationFailure(String callId, int reason) { in onRttInitiationFailure()
389 public void onHandoverFailed(String callId, int error) { in onHandoverFailed()
394 public void onHandoverComplete(String callId) { in onHandoverComplete()
DPhone.java250 final void internalOnRttUpgradeRequest(String callId, int requestId) { in internalOnRttUpgradeRequest()
257 final void internalOnRttInitiationFailure(String callId, int reason) { in internalOnRttInitiationFailure()
264 final void internalOnHandoverFailed(String callId, int error) { in internalOnHandoverFailed()
271 final void internalOnHandoverComplete(String callId) { in internalOnHandoverComplete()
DRemoteConnection.java675 RemoteConnection(String callId, IConnectionService connectionService, in RemoteConnection()
/frameworks/base/core/java/android/view/textclassifier/
DGenerateLinksLogger.java91 final String callId = UUID.randomUUID().toString(); in logGenerateLinks() local
113 private void writeStats(String callId, String callingPackageName, @Nullable String entityType, in writeStats()
133 final String callId = Objects.toString( in debugLog() local
/frameworks/base/telephony/java/android/telephony/ims/
DImsExternalCallState.java94 public ImsExternalCallState(int callId, Uri address, boolean isPullable, in ImsExternalCallState()
106 public ImsExternalCallState(int callId, Uri address, Uri localAddress, in ImsExternalCallState()
131 public ImsExternalCallState(@NonNull String callId, @NonNull Uri address, in ImsExternalCallState()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
DImsExternalCallTracker.java251 int callId = entry.getKey().intValue(); in refreshExternalCallState() local
292 public Connection getConnectionById(int callId) { in getConnectionById()
416 private boolean containsCallId(List<ImsExternalCallState> externalCallStates, int callId) { in containsCallId()
DImsExternalConnection.java84 protected ImsExternalConnection(Phone phone, int callId, Uri address, boolean isPullable) { in ImsExternalConnection()
/frameworks/opt/net/voip/src/java/android/net/sip/
DSipManager.java433 String callId = getCallId(incomingCallIntent); in takeAudioCall() local
504 public static Intent createIncomingCallBroadcast(String callId, in createIncomingCallBroadcast()
583 String callId = getCallId(incomingCallIntent); in getSessionFor() local
DISipService.aidl40 ISipSession getPendingSession(String callId, String opPackageName); in getPendingSession()
/frameworks/base/telephony/java/com/android/ims/internal/
DIImsMMTelFeature.aidl46 IImsCallSession getPendingCallSession(int sessionId, String callId); in getPendingCallSession()
DIImsService.aidl58 IImsCallSession getPendingCallSession(int serviceId, String callId); in getPendingCallSession()
/frameworks/base/telephony/java/android/telephony/ims/compat/feature/
DMMTelFeature.java307 public IImsCallSession getPendingCallSession(int sessionId, String callId) { in getPendingCallSession()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ims/
DMmTelInterfaceAdapter.java88 public IImsCallSession getPendingCallSession(int sessionId, String callId) in getPendingCallSession()
/frameworks/opt/net/voip/src/java/com/android/server/sip/
DSipService.java289 public synchronized ISipSession getPendingSession(String callId, String opPackageName) { in getPendingSession()
429 String callId = ringingSession.getCallId(); in callingSelf() local
503 public boolean containsSession(String callId) { in containsSession()
DSipSessionGroup.java273 synchronized boolean containsSession(String callId) { in containsSession()
447 String callId = replaces.getCallId(); in processInviteWithReplaces() local
/frameworks/opt/telephony/src/java/com/android/internal/telephony/metrics/
DTelephonyMetrics.java1643 public void writeRilHangup(int phoneId, GsmCdmaConnection conn, int callId, in writeRilHangup()

12