Home | History | Annotate | Download | only in media

Lines Matching refs:mConnection

52     private HttpURLConnection mConnection = null;
138 if (mConnection != null) {
147 mConnection.disconnect();
148 mConnection = null;
191 mConnection = (HttpURLConnection)url.openConnection(Proxy.NO_PROXY);
193 mConnection = (HttpURLConnection)url.openConnection();
195 mConnection.setConnectTimeout(CONNECT_TIMEOUT_MS);
198 mConnection.setInstanceFollowRedirects(mAllowCrossDomainRedirect);
202 mConnection.setRequestProperty(
208 mConnection.setRequestProperty(
212 response = mConnection.getResponseCode();
226 String method = mConnection.getRequestMethod();
234 String location = mConnection.getHeaderField("Location");
261 mURL = mConnection.getURL();
270 mConnection.getHeaderField("Content-Range");
292 mTotalSize = mConnection.getContentLength();
302 new BufferedInputStream(mConnection.getInputStream());
372 if (mConnection == null) {
385 if (mConnection == null) {
393 return mConnection.getContentType();