Searched refs:getURLStreamHandler (Results 1 - 2 of 2) sorted by relevance

/libcore/ojluni/src/main/java/java/net/
H A DURL.java428 (handler = getURLStreamHandler(protocol)) == null) {
607 (handler = getURLStreamHandler(protocol)) == null) {
1160 static URLStreamHandler getURLStreamHandler(String protocol) { method in class:URL
1342 * the reader must ensure that calling getURLStreamHandler with
1361 if (getURLStreamHandler(protocol) == null) {
1395 handler = getURLStreamHandler(tempState.getProtocol());
/libcore/luni/src/test/java/libcore/java/net/
H A DURLTest.java454 Method getURLStreamHandler = URL.class.getDeclaredMethod(
455 "getURLStreamHandler", String.class);
456 getURLStreamHandler.setAccessible(true);
462 (URLStreamHandler) getURLStreamHandler.invoke(null, protocol);

Completed in 139 milliseconds