/frameworks/base/telecomm/java/android/telecom/ |
D | InCallAdapter.java | 57 public void answerCall(String callId, int videoState) { in answerCall() argument 59 mAdapter.answerCall(callId, videoState); in answerCall() 70 public void deflectCall(String callId, Uri address) { in deflectCall() argument 72 mAdapter.deflectCall(callId, address); in deflectCall() 84 public void rejectCall(String callId, boolean rejectWithMessage, String textMessage) { in rejectCall() argument 86 mAdapter.rejectCall(callId, rejectWithMessage, textMessage); in rejectCall() 96 public void disconnectCall(String callId) { in disconnectCall() argument 98 mAdapter.disconnectCall(callId); in disconnectCall() 108 public void holdCall(String callId) { in holdCall() argument 110 mAdapter.holdCall(callId); in holdCall() [all …]
|
D | ConnectionServiceAdapter.java | 109 void setActive(String callId) { in setActive() argument 112 adapter.setActive(callId, Log.getExternalSession()); in setActive() 123 void setRinging(String callId) { in setRinging() argument 126 adapter.setRinging(callId, Log.getExternalSession()); in setRinging() 137 void setDialing(String callId) { in setDialing() argument 140 adapter.setDialing(callId, Log.getExternalSession()); in setDialing() 152 void setPulling(String callId) { in setPulling() argument 155 adapter.setPulling(callId, Log.getExternalSession()); in setPulling() 168 void setDisconnected(String callId, DisconnectCause disconnectCause) { in setDisconnected() argument 171 adapter.setDisconnected(callId, disconnectCause, Log.getExternalSession()); in setDisconnected() [all …]
|
D | RemoteConnectionService.java | 104 public void setActive(String callId, Session.Info sessionInfo) { 105 if (mConnectionById.containsKey(callId)) { 106 findConnectionForAction(callId, "setActive") 109 findConferenceForAction(callId, "setActive") 115 public void setRinging(String callId, Session.Info sessionInfo) { 116 findConnectionForAction(callId, "setRinging") 121 public void setDialing(String callId, Session.Info sessionInfo) { 122 findConnectionForAction(callId, "setDialing") 127 public void setPulling(String callId, Session.Info sessionInfo) { 128 findConnectionForAction(callId, "setPulling") [all …]
|
D | ConnectionService.java | 270 String callId, 277 args.arg1 = callId; 289 public void handoverFailed(String callId, ConnectionRequest request, int reason, 294 args.arg1 = callId; 305 public void handoverComplete(String callId, Session.Info sessionInfo) { 309 args.arg1 = callId; 318 public void abort(String callId, Session.Info sessionInfo) { 322 args.arg1 = callId; 331 public void answerVideo(String callId, int videoState, Session.Info sessionInfo) { 335 args.arg1 = callId; [all …]
|
D | InCallService.java | 230 String callId = (String) args.arg1; 232 mPhone.internalSetPostDialWait(callId, remaining); 253 String callId = (String) args.arg1; 256 mPhone.internalOnConnectionEvent(callId, event, extras); 263 String callId = (String) msg.obj; 265 mPhone.internalOnRttUpgradeRequest(callId, requestId); 269 String callId = (String) msg.obj; 271 mPhone.internalOnRttInitiationFailure(callId, reason); 275 String callId = (String) msg.obj; 277 mPhone.internalOnHandoverFailed(callId, error); [all …]
|
D | Phone.java | 214 final void internalOnRttUpgradeRequest(String callId, int requestId) { in internalOnRttUpgradeRequest() argument 215 Call call = mCallByTelecomCallId.get(callId); in internalOnRttUpgradeRequest() 221 final void internalOnRttInitiationFailure(String callId, int reason) { in internalOnRttInitiationFailure() argument 222 Call call = mCallByTelecomCallId.get(callId); in internalOnRttInitiationFailure() 228 final void internalOnHandoverFailed(String callId, int error) { in internalOnHandoverFailed() argument 229 Call call = mCallByTelecomCallId.get(callId); in internalOnHandoverFailed() 235 final void internalOnHandoverComplete(String callId) { in internalOnHandoverComplete() argument 236 Call call = mCallByTelecomCallId.get(callId); in internalOnHandoverComplete()
|
D | ConnectionServiceAdapterServant.java | 426 public void setConferenceMergeFailed(String callId, Session.Info sessionInfo) { 428 args.arg1 = callId; 433 public void setIsConferenced(String callId, String conferenceCallId, 436 args.arg1 = callId; 442 public void addConferenceCall(String callId, ParcelableConference parcelableConference, 445 args.arg1 = callId; 618 public void onPhoneAccountChanged(String callId, PhoneAccountHandle pHandle, 621 args.arg1 = callId; 632 public void resetConnectionTime(String callId, Session.Info sessionInfo) { 637 public void setConferenceState(String callId, boolean isConference, [all …]
|
/frameworks/base/telecomm/java/com/android/internal/telecom/ |
D | IInCallAdapter.aidl | 31 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 disconnectCall(String callId); in disconnectCall() argument 39 void holdCall(String callId); in holdCall() argument 41 void unholdCall(String callId); in unholdCall() argument 47 void playDtmfTone(String callId, char digit); in playDtmfTone() argument 49 void stopDtmfTone(String callId); in stopDtmfTone() argument 51 void postDialContinue(String callId, boolean proceed); in postDialContinue() argument 53 void phoneAccountSelected(String callId, in PhoneAccountHandle accountHandle, in phoneAccountSelected() argument [all …]
|
D | IConnectionServiceAdapter.aidl | 42 String callId, in handleCreateConnectionComplete() argument 47 void setActive(String callId, in Session.Info sessionInfo); in setActive() argument 49 void setRinging(String callId, in Session.Info sessionInfo); in setRinging() argument 51 void setDialing(String callId, in Session.Info sessionInfo); in setDialing() argument 53 void setPulling(String callId, in Session.Info sessionInfo); in setPulling() argument 55 void setDisconnected(String callId, in DisconnectCause disconnectCause, in setDisconnected() argument 58 void setOnHold(String callId, in Session.Info sessionInfo); in setOnHold() argument 60 void setRingbackRequested(String callId, boolean ringing, in Session.Info sessionInfo); in setRingbackRequested() argument 62 void setConnectionCapabilities(String callId, int connectionCapabilities, in setConnectionCapabilities() argument 65 void setConnectionProperties(String callId, int connectionProperties, in setConnectionProperties() argument [all …]
|
D | IConnectionService.aidl | 45 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 56 void abort(String callId, in Session.Info sessionInfo); in abort() argument 58 void answerVideo(String callId, int videoState, in Session.Info sessionInfo); in answerVideo() argument 60 void answer(String callId, in Session.Info sessionInfo); in answer() argument 62 void deflect(String callId, in Uri address, in Session.Info sessionInfo); in deflect() argument 64 void reject(String callId, in Session.Info sessionInfo); in reject() argument 66 void rejectWithMessage(String callId, String message, in Session.Info sessionInfo); in rejectWithMessage() argument 68 void disconnect(String callId, in Session.Info sessionInfo); in disconnect() argument [all …]
|
D | IInCallService.aidl | 40 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
|
D | ICallScreeningAdapter.aidl | 29 void allowCall(String callId); in allowCall() argument 31 void silenceCall(String callId); in silenceCall() argument 34 String callId, in disallowCall() argument
|
/frameworks/base/core/java/android/view/textclassifier/ |
D | GenerateLinksLogger.java | 91 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/ |
D | ImsExternalCallState.java | 92 public ImsExternalCallState(int callId, Uri address, boolean isPullable, in ImsExternalCallState() argument 94 mCallId = callId; in ImsExternalCallState() 104 public ImsExternalCallState(int callId, Uri address, Uri localAddress, in ImsExternalCallState() argument 107 mCallId = callId; in ImsExternalCallState() 129 public ImsExternalCallState(@NonNull String callId, @NonNull Uri address, in ImsExternalCallState() argument 132 mCallId = getIdForString(callId); in ImsExternalCallState()
|
/frameworks/opt/net/voip/src/java/android/net/sip/ |
D | SipManager.java | 413 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()
|
D | ISipService.aidl | 40 ISipSession getPendingSession(String callId, String opPackageName); in getPendingSession() argument
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/ |
D | ImsExternalCallTracker.java | 251 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()
|
D | ImsExternalConnection.java | 85 protected ImsExternalConnection(Phone phone, int callId, Uri address, boolean isPullable) { in ImsExternalConnection() argument 89 mCallId = callId; in ImsExternalConnection()
|
/frameworks/opt/net/ims/src/java/com/android/ims/ |
D | ImsServiceBase.java | 87 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
|
/frameworks/base/telephony/java/android/telephony/ims/compat/feature/ |
D | MMTelFeature.java | 124 public IImsCallSession getPendingCallSession(int sessionId, String callId) 127 return MMTelFeature.this.getPendingCallSession(sessionId, callId); 304 public IImsCallSession getPendingCallSession(int sessionId, String callId) { in getPendingCallSession() argument
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ims/ |
D | MmTelInterfaceAdapter.java | 88 public IImsCallSession getPendingCallSession(int sessionId, String callId) in getPendingCallSession() argument 90 return getInterface().getPendingCallSession(sessionId, callId); in getPendingCallSession()
|
D | ImsServiceInterfaceAdapter.java | 88 public IImsCallSession getPendingCallSession(int sessionId, String callId) in getPendingCallSession() argument 90 return getInterface().getPendingCallSession(sessionId, callId); in getPendingCallSession()
|
/frameworks/base/telephony/java/com/android/ims/internal/ |
D | IImsMMTelFeature.aidl | 46 IImsCallSession getPendingCallSession(int sessionId, String callId); in getPendingCallSession() argument
|
D | IImsService.aidl | 58 IImsCallSession getPendingCallSession(int serviceId, String callId); in getPendingCallSession() argument
|
/frameworks/opt/net/voip/src/java/com/android/server/sip/ |
D | SipService.java | 287 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()
|