Searched defs:Request (Results 1 - 3 of 3) sorted by relevance
/frameworks/base/core/java/android/net/http/ |
H A D | Request.java | 52 class Request { class 101 * Instantiates a new Request. 111 Request(String method, HttpHost host, HttpHost proxyHost, String path, method in class:Request 156 * @param connection Request served by this connection 212 HttpLog.v("Request.sendRequest() " + mHost.getSchemeName() + "://" + getHostPort()); 232 HttpLog.v("Request.requestSent() " + mHost.getSchemeName() + "://" + getHostPort() + mPath); 258 "Request.readResponseStatus() " + 321 if (HttpLog.LOGV) HttpLog.v("Request.readResponse() " + count); 357 if (HttpLog.LOGV) HttpLog.v("Request.readResponse(): done " + 369 HttpLog.v("Request [all...] |
/frameworks/volley/src/com/android/volley/ |
H A D | Request.java | 38 public abstract class Request<T> implements Comparable<Request<T>> { class in inherits:Comparable 59 /** Request method of this request. Currently supports GET, POST, PUT, and DELETE. */ 111 * @deprecated Use {@link #Request(int, String, com.android.volley.Response.ErrorListener)}. 113 public Request(String url, Response.ErrorListener listener) { method in class:Request 123 public Request(int method, String url, Response.ErrorListener listener) { method in class:Request 149 * @see Request#setTag(Object) 510 * Delivers error message to the ErrorListener that the Request was 526 public int compareTo(Request<T> other) {
|
/frameworks/base/core/java/android/app/ |
H A D | DownloadManager.java | 345 public static class Request { class in class:DownloadManager 423 public Request(Uri uri) { method in class:DownloadManager.Request 434 Request(String uriString) { method in class:DownloadManager.Request 451 public Request setDestinationUri(Uri uri) { 469 public Request setDestinationToSystemCache() { 492 public Request setDestinationInExternalFilesDir(Context context, String dirType, 527 public Request setDestinationInExternalPublicDir(String dirType, String subPath) { 555 * should be called before {@link DownloadManager#enqueue(Request)} is called. 570 public Request addRequestHeader(String header, String value) { 590 public Request setTitl [all...] |
Completed in 328 milliseconds