Home
last modified time | relevance | path

Searched defs:call (Results 1 – 25 of 100) sorted by relevance

1234

/packages/services/Telecomm/src/com/android/server/telecom/
DCallsManagerListenerBase.java28 public void onCallAdded(Call call) { in onCallAdded()
32 public void onCallRemoved(Call call) { in onCallRemoved()
36 public void onCallStateChanged(Call call, int oldState, int newState) { in onCallStateChanged()
41 Call call, in onConnectionServiceChanged()
47 public void onIncomingCallAnswered(Call call) { in onIncomingCallAnswered()
51 public void onIncomingCallRejected(Call call, boolean rejectWithMessage, String textMessage) { in onIncomingCallRejected()
60 public void onRingbackRequested(Call call, boolean ringback) { in onRingbackRequested()
64 public void onIsConferencedChanged(Call call) { in onIsConferencedChanged()
68 public void onIsVoipAudioModeChanged(Call call) { in onIsVoipAudioModeChanged()
72 public void onVideoStateChanged(Call call) { in onVideoStateChanged()
[all …]
DCallsManager.java92 void onCallAdded(Call call); in onCallAdded()
93 void onCallRemoved(Call call); in onCallRemoved()
94 void onCallStateChanged(Call call, int oldState, int newState); in onCallStateChanged()
96 Call call, in onConnectionServiceChanged()
99 void onIncomingCallAnswered(Call call); in onIncomingCallAnswered()
100 void onIncomingCallRejected(Call call, boolean rejectWithMessage, String textMessage); in onIncomingCallRejected()
102 void onRingbackRequested(Call call, boolean ringback); in onRingbackRequested()
103 void onIsConferencedChanged(Call call); in onIsConferencedChanged()
104 void onIsVoipAudioModeChanged(Call call); in onIsVoipAudioModeChanged()
105 void onVideoStateChanged(Call call); in onVideoStateChanged()
[all …]
DConnectionServiceWrapper.java90 Call call = mCallIdMapper.getCall(callId); in setActive() local
110 Call call = mCallIdMapper.getCall(callId); in setRinging() local
130 Call call = mCallIdMapper.getCall(callId); in setVideoProvider() local
148 Call call = mCallIdMapper.getCall(callId); in setDialing() local
168 Call call = mCallIdMapper.getCall(callId); in setDisconnected() local
189 Call call = mCallIdMapper.getCall(callId); in setOnHold() local
209 Call call = mCallIdMapper.getCall(callId); in setRingbackRequested() local
229 Call call = mCallIdMapper.getCall(callId); in removeCall() local
252 Call call = mCallIdMapper.getCall(callId); in setConnectionCapabilities() local
273 Call call = mCallIdMapper.getCall(callId); in setConnectionProperties() local
[all …]
DCallAudioManager.java92 public void onCallStateChanged(Call call, int oldState, int newState) { in onCallStateChanged()
117 public void onCallAdded(Call call) { in onCallAdded()
126 public void onCallRemoved(Call call) { in onCallRemoved()
134 private void addCall(Call call) { in addCall()
152 private void removeCall(Call call) { in removeCall()
179 public void onExternalCallChanged(Call call, boolean isExternalCall) { in onExternalCallChanged()
197 private boolean shouldIgnoreCallForAudio(Call call) { in shouldIgnoreCallForAudio()
202 public void onIncomingCallAnswered(Call call) { in onIncomingCallAnswered()
229 public void onSessionModifyRequestReceived(Call call, VideoProfile videoProfile) { in onSessionModifyRequestReceived()
261 public void onHoldToneRequested(Call call) { in onHoldToneRequested()
[all …]
DInCallAdapter.java55 Call call = mCallIdMapper.getCall(callId); in answerCall() local
78 Call call = mCallIdMapper.getCall(callId); in rejectCall() local
101 Call call = mCallIdMapper.getCall(callId); in playDtmfTone() local
124 Call call = mCallIdMapper.getCall(callId); in stopDtmfTone() local
147 Call call = mCallIdMapper.getCall(callId); in postDialContinue() local
170 Call call = mCallIdMapper.getCall(callId); in disconnectCall() local
192 Call call = mCallIdMapper.getCall(callId); in holdCall() local
214 Call call = mCallIdMapper.getCall(callId); in unholdCall() local
237 Call call = mCallIdMapper.getCall(callId); in phoneAccountSelected() local
293 Call call = mCallIdMapper.getCall(callId); in conference() local
[all …]
DCall.java84 void onSuccessfulOutgoingCall(Call call, int callState); in onSuccessfulOutgoingCall()
85 void onFailedOutgoingCall(Call call, DisconnectCause disconnectCause); in onFailedOutgoingCall()
86 void onSuccessfulIncomingCall(Call call); in onSuccessfulIncomingCall()
87 void onFailedIncomingCall(Call call); in onFailedIncomingCall()
88 void onSuccessfulUnknownCall(Call call, int callState); in onSuccessfulUnknownCall()
89 void onFailedUnknownCall(Call call); in onFailedUnknownCall()
90 void onRingbackRequested(Call call, boolean ringbackRequested); in onRingbackRequested()
91 void onPostDialWait(Call call, String remaining); in onPostDialWait()
92 void onPostDialChar(Call call, char nextChar); in onPostDialChar()
93 void onConnectionCapabilitiesChanged(Call call); in onConnectionCapabilitiesChanged()
[all …]
DPhoneStateBroadcaster.java45 public void onCallStateChanged(Call call, int oldState, int newState) { in onCallStateChanged()
50 public void onCallAdded(Call call) { in onCallAdded()
58 public void onCallRemoved(Call call) { in onCallRemoved()
74 public void onExternalCallChanged(Call call, boolean isExternalCall) { in onExternalCallChanged()
78 private void updateStates(Call call) { in updateStates()
97 private void sendPhoneStateChangedBroadcast(Call call, int phoneState) { in sendPhoneStateChangedBroadcast()
DDtmfLocalTonePlayer.java67 void playTone(Call call, char c) { in playTone()
90 void stopTone(Call call) { in stopTone()
110 private void startDtmfSession(Call call) { in startDtmfSession()
136 private void endDtmfSession(Call call) { in endDtmfSession()
DInCallController.java72 public boolean connect(Call call) { return false; } in connect()
125 public boolean connect(Call call) { in connect()
227 public boolean connect(Call call) { in connect()
333 public boolean connect(Call call) { in connect()
399 public boolean connect(Call call) { in connect()
576 public void onCallAdded(Call call) { in onCallAdded()
600 public void onCallRemoved(Call call) { in onCallRemoved()
625 public void onExternalCallChanged(Call call, boolean isExternalCall) { in onExternalCallChanged()
632 public void onCallStateChanged(Call call, int oldState, int newState) { in onCallStateChanged()
638 Call call, in onConnectionServiceChanged()
[all …]
DInCallWakeLockController.java39 public void onCallAdded(Call call) { in onCallAdded()
44 public void onCallRemoved(Call call) { in onCallRemoved()
49 public void onCallStateChanged(Call call, int oldState, int newState) { in onCallStateChanged()
DCallIdMapper.java88 void addCall(Call call, String id) { in addCall()
95 void addCall(Call call) { in addCall()
99 void removeCall(Call call) { in removeCall()
110 String getCallId(Call call) { in getCallId()
/packages/apps/Dialer/InCallUI/src/com/android/incallui/
DCallList.java91 final Call call = new Call(telecomCall); in onCallAdded() local
107 Call call = mCallByTelecomCall.get(telecomCall); in onCallRemoved() local
119 public void onDisconnect(Call call) { in onDisconnect()
132 public void onIncoming(Call call, List<String> textMessages) { in onIncoming()
143 public void onUpgradeToVideo(Call call){ in onUpgradeToVideo()
152 public void onUpdate(Call call) { in onUpdate()
165 public void onSessionModificationStateChange(Call call, int sessionModificationState) { in onSessionModificationStateChange()
181 public void onLastForwardedNumberChange(Call call) { in onLastForwardedNumberChange()
196 public void onChildNumberChange(Call call) { in onChildNumberChange()
205 public void notifyCallUpdateListeners(Call call) { in notifyCallUpdateListeners()
[all …]
DVideoUtils.java27 public static boolean isVideoCall(Call call) { in isVideoCall()
40 public static boolean isBidirectionalVideoCall(Call call) { in isBidirectionalVideoCall()
48 public static boolean isIncomingVideoCall(Call call) { in isIncomingVideoCall()
56 public static boolean isActiveVideoCall(Call call) { in isActiveVideoCall()
60 public static boolean isOutgoingVideoCall(Call call) { in isOutgoingVideoCall()
69 public static boolean isAudioCall(Call call) { in isAudioCall()
78 public static boolean canVideoPause(Call call) { in canVideoPause()
82 public static VideoProfile makeVideoPauseProfile(Call call) { in makeVideoPauseProfile()
88 public static VideoProfile makeVideoUnPauseProfile(Call call) { in makeVideoUnPauseProfile()
DTelecomAdapter.java57 Call call = CallList.getInstance().getCallById(callId); in getTelecomCallById() local
62 android.telecom.Call call = getTelecomCallById(callId); in answerCall() local
71 android.telecom.Call call = getTelecomCallById(callId); in rejectCall() local
80 android.telecom.Call call = getTelecomCallById(callId); in disconnectCall() local
89 android.telecom.Call call = getTelecomCallById(callId); in holdCall() local
98 android.telecom.Call call = getTelecomCallById(callId); in unholdCall() local
123 android.telecom.Call call = getTelecomCallById(callId); in separateCall() local
132 android.telecom.Call call = getTelecomCallById(callId); in merge() local
148 android.telecom.Call call = getTelecomCallById(callId); in swap() local
180 android.telecom.Call call = getTelecomCallById(callId); in playDtmfTone() local
[all …]
DVideoPauseController.java39 public CallContext(Call call) { in CallContext()
44 public void update(Call call) { in update()
143 Call call = null; in onStateChange() local
189 private void onPrimaryCallChanged(Call call) { in onPrimaryCallChanged()
220 public void onIncomingCall(InCallState oldState, InCallState newState, Call call) { in onIncomingCall()
235 private void updatePrimaryCallContext(Call call) { in updatePrimaryCallContext()
307 private void sendRequest(Call call, boolean resume) { in sendRequest()
331 private static boolean areSame(Call call, CallContext callContext) { in areSame()
366 private static boolean isIncomingCall(CallContext call) { in isIncomingCall()
376 private static boolean isIncomingCall(Call call) { in isIncomingCall()
[all …]
DInCallVideoCallCallbackNotifier.java130 public void upgradeToVideoRequest(Call call, int videoState) { in upgradeToVideoRequest()
154 public void peerPausedStateChanged(Call call, boolean paused) { in peerPausedStateChanged()
166 public void videoQualityChanged(Call call, int videoQuality) { in videoQualityChanged()
179 public void peerDimensionsChanged(Call call, int width, int height) { in peerDimensionsChanged()
192 public void cameraDimensionsChanged(Call call, int width, int height) { in cameraDimensionsChanged()
219 public void onUpgradeToVideoRequest(Call call, int videoState); in onUpgradeToVideoRequest()
234 public void onPeerPauseStateChanged(Call call, boolean paused); in onPeerPauseStateChanged()
242 public void onVideoQualityChanged(Call call, int videoCallQuality); in onVideoQualityChanged()
272 public void onUpdatePeerDimensions(Call call, int width, int height); in onUpdatePeerDimensions()
282 public void onCameraDimensionsChange(Call call, int width, int height); in onCameraDimensionsChange()
DAnswerPresenter.java52 Call call; in onUiShowing() local
74 public void onIncomingCall(InCallState oldState, InCallState newState, Call call) { in onIncomingCall()
90 public void onIncomingCall(Call call) { in onIncomingCall()
98 public void onDisconnect(Call call) { in onDisconnect()
123 private boolean isVideoUpgradePending(Call call) { in isVideoUpgradePending()
129 public void onUpgradeToVideo(Call call) { in onUpgradeToVideo()
148 private void processIncomingCall(Call call) { in processIncomingCall()
175 private void processVideoUpgradeRequestCall(Call call) { in processVideoUpgradeRequestCall()
207 public void onCallChanged(Call call) { in onCallChanged()
279 private void configureAnswerTargetsForSms(Call call, List<String> textMsgs) { in configureAnswerTargetsForSms()
DVideoCallPresenter.java385 InCallPresenter.InCallState newState, Call call) { in onIncomingCall()
481 private void checkForVideoStateChange(Call call) { in checkForVideoStateChange()
504 private void checkForCallStateChange(Call call) { in checkForCallStateChange()
566 private void updateCallCache(Call call) { in updateCallCache()
588 public void onDetailsChanged(Call call, android.telecom.Call.Details details) { in onDetailsChanged()
605 private void updateVideoCall(Call call) { in updateVideoCall()
612 private void checkForOrientationAllowedChange(Call call) { in checkForOrientationAllowedChange()
620 private void checkForVideoCallChange(Call call) { in checkForVideoCallChange()
635 private void changeVideoCall(Call call) { in changeVideoCall()
671 private void enterVideoMode(Call call) { in enterVideoMode()
[all …]
DStatusBarNotifier.java183 final Call call = getCallToShow(callList); in updateInCallNotification() local
192 private void showNotification(final Call call) { in showNotification()
236 final Call call = getCallToShow(CallList.getInstance()); in buildAndSendNotification() local
347 Call call, int state, Notification.Builder builder) { in createIncomingCallNotification()
371 private void setNotificationWhen(Call call, int state, Notification.Builder builder) { in setNotificationWhen()
427 String getContentTitle(ContactCacheEntry contactInfo, Call call) { in getContentTitle()
442 Call call) { in addPersonReference()
457 private Bitmap getLargeIconToDisplay(ContactCacheEntry contactInfo, Call call) { in getLargeIconToDisplay()
484 private int getIconToDisplay(Call call) { in getIconToDisplay()
504 private String getContentString(Call call, @UserType long userType) { in getContentString()
[all …]
DConferenceManagerPresenter.java62 final Call call = callList.getActiveOrBackgroundCall(); in onStateChange() local
77 public void onDetailsChanged(Call call, android.telecom.Call.Details details) { in onDetailsChanged()
97 public void onIncomingCall(InCallState oldState, InCallState newState, Call call) { in onIncomingCall()
142 void refreshCall(Call call); in refreshCall()
DInCallPresenter.java500 public void onCallAdded(final android.telecom.Call call) { in onCallAdded()
512 private boolean shouldAttemptBlocking(android.telecom.Call call) { in shouldAttemptBlocking()
534 private void maybeBlockCall(final android.telecom.Call call) { in maybeBlockCall()
592 public void onCallRemoved(android.telecom.Call call) { in onCallRemoved()
651 public void onIncomingCall(Call call) { in onIncomingCall()
664 public void onUpgradeToVideo(Call call) { in onUpgradeToVideo()
672 public void onDisconnect(Call call) { in onDisconnect()
688 public void onUpgradeToVideoRequest(Call call, int videoState) { in onUpgradeToVideoRequest()
836 Call call = mCallList.getWaitingForAccountCall(); in handleAccountSelection() local
847 Call call = mCallList.getWaitingForAccountCall(); in cancelAccountSelection() local
[all …]
/packages/apps/Dialer/InCallUI/src/com/android/incallui/util/
DTelecomCallUtil.java32 public static boolean isEmergencyCall(Call call) { in isEmergencyCall()
38 public static String getNumber(Call call) { in getNumber()
50 public static Uri getHandle(Call call) { in getHandle()
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DCallAudioManagerTest.java83 Call call = createIncomingCall(); in testSingleIncomingCallFlowWithoutMTSpeedUp() local
118 Call call = createIncomingCall(); in testSingleIncomingCallFlowWithMTSpeedUp() local
151 Call call = mock(Call.class); in testSingleOutgoingCall() local
198 Call call = mock(Call.class); in createIncomingCall() local
221 private void disconnectCall(Call call) { in disconnectCall()
/packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/
DTestCallList.java38 public void onCallAdded(Call call) {} in onCallAdded()
39 public void onCallRemoved(Call call) {} in onCallRemoved()
48 public TestVideoCallListener(Call call) { in TestVideoCallListener()
122 public void addCall(Call call) { in addCall()
136 public void removeCall(Call call) { in removeCall()
206 public void onVideoCallChanged(Call call, InCallService.VideoCall videoCall) { in onVideoCallChanged()
/packages/providers/CallLogProvider/src/com/android/calllogbackup/
DCallLogBackupAgent.java189 Call call = readCallFromData(data); in onRestore() local
246 Call call = readCallFromCursor(cursor); in getAllCallLogEntries() local
259 private void writeCallToProvider(Call call) { in writeCallToProvider()
328 Call call = new Call(); in readCallFromData() local
380 Call call = new Call(); in readCallFromCursor() local
403 private void addCallToBackup(BackupDataOutput output, Call call) { in addCallToBackup()
454 private OEMData getOEMDataForCall(Call call) { in getOEMDataForCall()
490 private void readOEMDataForCall(Call call, OEMData oemData) { in readOEMDataForCall()

1234