Searched refs:answer (Results 1 - 7 of 7) sorted by relevance

/packages/apps/Mms/src/com/android/mms/ui/
H A DConfirmRateLimitActivity.java112 private void doAnswer(boolean answer) { argument
114 intent.putExtra("answer", answer);
/packages/apps/InCallUI/src/com/android/incallui/
H A DTelecomAdapter.java75 call.answer(videoState);
/packages/services/Telecomm/tests/src/com/android/server/telecom/testapps/
H A DTestConnectionManager.java142 mRemote.answer(videoState);
/packages/services/Telecomm/src/com/android/server/telecom/
H A DTelecomServiceImpl.java511 call.answer(call.getVideoState());
H A DCall.java797 * @param videoState The video state in which to answer the call.
799 void answer(int videoState) { method in class:Call
803 // between the time the user hits 'answer' and Telecom receives the command.
804 if (isRinging("answer")) {
805 // At this point, we are asking the connection service to answer but we don't assume
809 mConnectionService.answer(this, videoState);
H A DCallsManager.java515 * Instructs Telecom to answer the specified call. Intended to be invoked by the in-call
517 * the user opting to answer said call.
519 * @param call The call to answer.
520 * @param videoState The video state in which to answer the call.
524 Log.i(this, "Request to answer a non-existent call %s", call);
552 // We do not update the UI until we get confirmation of the answer() through
554 call.answer(videoState);
812 ringingCall.answer(ringingCall.getVideoState());
H A DConnectionServiceWrapper.java730 /** @see ConnectionService#answer(String,int) */
731 void answer(Call call, int videoState) { method in class:ConnectionServiceWrapper
733 if (callId != null && isServiceValid("answer")) {
735 logOutgoing("answer %s %d", callId, videoState);
737 mServiceInterface.answer(callId);

Completed in 222 milliseconds