Home
last modified time | relevance | path

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

/packages/apps/Dialer/java/com/android/incallui/calllocation/impl/
DHttpFetcher.java128 HttpURLConnection httpUrlConnection = null; in sendRequestAsInputStream() local
131 httpUrlConnection = (HttpURLConnection) url.openConnection(); in sendRequestAsInputStream()
132 setMethodAndHeaders(httpUrlConnection, requestMethod, headers); in sendRequestAsInputStream()
133 int responseCode = httpUrlConnection.getResponseCode(); in sendRequestAsInputStream()
139 InputStream is = httpUrlConnection.getInputStream(); in sendRequestAsInputStream()
141 is = new HttpInputStreamWrapper(httpUrlConnection, is); in sendRequestAsInputStream()
149 if (httpUrlConnection != null && !isSuccess) { in sendRequestAsInputStream()
150 httpUrlConnection.disconnect(); in sendRequestAsInputStream()
268 final HttpURLConnection httpUrlConnection; field in HttpFetcher.HttpInputStreamWrapper
273 httpUrlConnection = conn; in HttpInputStreamWrapper()
[all …]