HomeSort by relevance Sort by last modified time
    Searched refs:HttpStack (Results 1 - 8 of 8) sorted by null

  /external/volley/src/main/java/com/android/volley/toolbox/
HttpStack.java 33 public interface HttpStack {
AdaptedHttpStack.java 29 * {@link BaseHttpStack} implementation wrapping a {@link HttpStack}.
31 * <p>{@link BasicNetwork} uses this if it is provided a {@link HttpStack} at construction time,
37 private final HttpStack mHttpStack;
39 AdaptedHttpStack(HttpStack httpStack) {
40 mHttpStack = httpStack;
BaseHttpStack.java 35 @SuppressWarnings("deprecation") // for HttpStack
36 public abstract class BaseHttpStack implements HttpStack {
Volley.java 74 * @param stack An {@link HttpStack} to use for the network, or null for default.
81 public static RequestQueue newRequestQueue(Context context, HttpStack stack) {
BasicNetwork.java 49 /** A network performing Volley requests over an {@link HttpStack}. */
61 @Deprecated protected final HttpStack mHttpStack;
68 * @param httpStack HTTP stack to be used
73 public BasicNetwork(HttpStack httpStack) {
76 this(httpStack, new ByteArrayPool(DEFAULT_POOL_SIZE));
80 * @param httpStack HTTP stack to be used
86 public BasicNetwork(HttpStack httpStack, ByteArrayPool pool) {
87 mHttpStack = httpStack;
    [all...]
HttpClientStack.java 46 * An HttpStack that performs request over an {@link HttpClient}.
52 public class HttpClientStack implements HttpStack {
  /external/volley/src/test/java/com/android/volley/toolbox/
HttpStackConformanceTest.java 36 /** Tests to validate that HttpStack implementations conform with expected behavior. */
54 public HttpStack getStack() {
96 public HttpStack getStack() {
188 HttpStack getStack();
AdaptedHttpStackTest.java 35 @Mock private HttpStack mHttpStack;

Completed in 131 milliseconds