Searched refs:proceed (Results 1 - 13 of 13) sorted by relevance

/frameworks/base/core/java/android/webkit/
H A DSafeBrowsingResponse.java22 * host application must call {@link #showInterstitial(boolean)}, {@link #proceed(boolean)}, or
43 public abstract void proceed(boolean report); method in class:SafeBrowsingResponse
H A DSslErrorHandler.java26 * either {@link #proceed} or {@link #cancel} to set the WebView's response
40 * It is not recommended to proceed past SSL errors and this method should
44 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.java36 * WebView caches the {@link #proceed} and {@link #cancel} responses in memory
73 public abstract void proceed(PrivateKey privateKey, X509Certificate[] chain); method in class:ClientCertRequest
/frameworks/support/webkit/src/main/java/androidx/webkit/
H A DSafeBrowsingResponseCompat.java51 public abstract void proceed(boolean report); method in class:SafeBrowsingResponseCompat
96 public void proceed(boolean report) {
103 responseDelegate.proceed(report);
137 public void proceed(boolean report) {
138 response.proceed(report);
/frameworks/base/telecomm/java/com/android/internal/telecom/
H A DIInCallAdapter.aidl51 void postDialContinue(String callId, boolean proceed);
H A DIConnectionService.aidl91 void onPostDialContinue(String callId, boolean proceed, in Session.Info sessionInfo);
/frameworks/base/telecomm/java/android/telecom/
H A DInCallAdapter.java215 * @param proceed Whether or not to continue with the post-dial sequence.
217 public void postDialContinue(String callId, boolean proceed) { argument
219 mAdapter.postDialContinue(callId, proceed);
H A DConnectionService.java546 public void onPostDialContinue(String callId, boolean proceed, Session.Info sessionInfo) {
552 args.argi1 = proceed ? 1 : 0;
1038 boolean proceed = (args.argi1 == 1);
1039 onPostDialContinue(callId, proceed);
1883 private void onPostDialContinue(String callId, boolean proceed) { argument
1885 findConnectionForAction(callId, "stopDtmfTone").onPostDialContinue(proceed);
H A DCall.java1388 * @param proceed Whether or not to continue with the post-dial sequence.
1390 public void postDialContinue(boolean proceed) { argument
1391 mInCallAdapter.postDialContinue(mTelecomCallId, proceed);
1395 * Notifies this {@code Call} that an account has been selected and to proceed with placing
H A DRemoteConnection.java1037 * @param proceed Whether or not to continue with the post-dial sequence.
1039 public void postDialContinue(boolean proceed) { argument
1042 mConnectionService.onPostDialContinue(mConnectionId, proceed,
H A DConnection.java2814 * Notifies this Connection whether the user wishes to proceed with the post-dial DTMF codes.
2816 public void onPostDialContinue(boolean proceed) {} argument
/frameworks/support/webkit/src/androidTest/java/androidx/webkit/
H A DWebViewClientCompatTest.java390 response.proceed(/* report */ true);

Completed in 459 milliseconds