Searched defs:answer (Results 1 - 3 of 3) 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/services/Telecomm/src/com/android/server/telecom/
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);
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);

Completed in 169 milliseconds