Searched defs:host_and_port (Results 1 - 2 of 2) sorted by relevance
/packages/apps/Browser/tests/src/com/android/browser/ |
H A D | TestWebViewClient.java | 108 String host_and_port) { 110 ((WebViewClientClassicExt) mWrappedClient).onReceivedClientCertRequest(view, handler, host_and_port); 112 super.onReceivedClientCertRequest(view, handler, host_and_port); 107 onReceivedClientCertRequest(WebView view, ClientCertRequestHandler handler, String host_and_port) argument
|
/packages/apps/Browser/src/com/android/browser/ |
H A D | Tab.java | 579 final ClientCertRequestHandler handler, final String host_and_port) { 584 int colon = host_and_port.lastIndexOf(':'); 588 host = host_and_port; 591 String portString = host_and_port.substring(colon + 1); 594 host = host_and_port.substring(0, colon); 596 host = host_and_port; 1083 ClientCertRequestHandler handler, String host_and_port) { 1084 mClient.onReceivedClientCertRequest(view, handler, host_and_port); 1082 onReceivedClientCertRequest(WebView view, ClientCertRequestHandler handler, String host_and_port) argument
|
Completed in 123 milliseconds