Searched defs:proceed (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/core/java/android/webkit/
H A DSslErrorHandler.java26 * either {@link #proceed} or {@link #cancel} to set the WebView's response
40 public void proceed() {} method in class:SslErrorHandler
H A DHttpAuthHandler.java26 * call either {@link #proceed} or {@link #cancel} to set the WebView's
58 * Instructs the WebView to proceed with the authentication with the given
62 public void proceed(String username, String password) { method in class:HttpAuthHandler
H A DClientCertRequest.java34 * WebView caches the {@link #proceed} and {@link #cancel} responses in memory
69 public abstract void proceed(PrivateKey privateKey, X509Certificate[] chain); method in class:ClientCertRequest
/frameworks/base/telecomm/java/android/telecom/
H A DInCallAdapter.java185 * @param proceed Whether or not to continue with the post-dial sequence.
187 public void postDialContinue(String callId, boolean proceed) { argument
189 mAdapter.postDialContinue(callId, proceed);
H A DConnectionService.java245 public void onPostDialContinue(String callId, boolean proceed) {
248 args.argi1 = proceed ? 1 : 0;
403 boolean proceed = (args.argi1 == 1);
404 onPostDialContinue(callId, proceed);
1013 private void onPostDialContinue(String callId, boolean proceed) { argument
1015 findConnectionForAction(callId, "stopDtmfTone").onPostDialContinue(proceed);
H A DCall.java910 * @param proceed Whether or not to continue with the post-dial sequence.
912 public void postDialContinue(boolean proceed) { argument
913 mInCallAdapter.postDialContinue(mTelecomCallId, proceed);
917 * Notifies this {@code Call} that an account has been selected and to proceed with placing
H A DRemoteConnection.java981 * @param proceed Whether or not to continue with the post-dial sequence.
983 public void postDialContinue(boolean proceed) { argument
986 mConnectionService.onPostDialContinue(mConnectionId, proceed);
H A DConnection.java2118 * Notifies this Connection whether the user wishes to proceed with the post-dial DTMF codes.
2120 public void onPostDialContinue(boolean proceed) {} argument

Completed in 84 milliseconds