Home
last modified time | relevance | path

Searched refs:fileUrl (Results 1 – 2 of 2) sorted by relevance

/libcore/luni/src/test/java/libcore/java/net/
DFtpURLConnectionTest.java91 URL fileUrl = getFileUrlWithCredentials(VALID_USER, VALID_PASSWORD, FILE_PATH); in testInputUrl() local
92 URLConnection connection = fileUrl.openConnection(); in testInputUrl()
113 URL fileUrl = getFileUrlWithCredentials(user, password, FILE_PATH); in checkInputUrl_invalidUserOrPassword() local
114 URLConnection connection = fileUrl.openConnection(); in checkInputUrl_invalidUserOrPassword()
128 URL fileUrl = getFileUrlWithCredentials(VALID_USER, VALID_PASSWORD, filePath); in testOutputUrl() local
129 URLConnection connection = fileUrl.openConnection(); in testOutputUrl()
141 URL fileUrl = addFileEntry(FILE_PATH, fileContents); in testConnectOverProxy_noProxy() local
142 URLConnection connection = fileUrl.openConnection(proxy); in testConnectOverProxy_noProxy()
177 URL fileUrl = addFileEntry(FILE_PATH, fileContents); in testConnectOverProxy_explicit_http_uses_direct_connection() local
181 URLConnection connection = fileUrl.openConnection(proxy); in testConnectOverProxy_explicit_http_uses_direct_connection()
[all …]
DURLConnectionTest.java2748 URL fileUrl = server.getUrl("/file" + string + "/#discarded");
2749 HttpURLConnection urlConnection = (HttpURLConnection) fileUrl.openConnection();