HomeSort by relevance Sort by last modified time
    Searched refs:Request (Results 1 - 25 of 1013) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/volley/src/test/java/com/android/volley/toolbox/
RequestTest.java 32 assertNotNull(Request.class.getConstructor(int.class, String.class,
35 assertNotNull(Request.class.getMethod("getMethod"));
36 assertNotNull(Request.class.getMethod("setTag", Object.class));
37 assertNotNull(Request.class.getMethod("getTag"));
38 assertNotNull(Request.class.getMethod("getErrorListener"));
39 assertNotNull(Request.class.getMethod("getTrafficStatsTag"));
40 assertNotNull(Request.class.getMethod("setRetryPolicy", RetryPolicy.class));
41 assertNotNull(Request.class.getMethod("addMarker", String.class));
42 assertNotNull(Request.class.getDeclaredMethod("finish", String.class));
43 assertNotNull(Request.class.getMethod("setRequestQueue", RequestQueue.class))
    [all...]
  /external/apache-http/android/src/android/net/http/
RequestFeeder.java 27 Request getRequest();
28 Request getRequest(HttpHost host);
31 * @return true if a request for this host is available
36 * Put request back on head of queue
38 void requeueRequest(Request request);
  /external/dagger2/compiler/src/it/producers-functional-tests/src/main/java/producerstest/
Request.java 20 final class Request {
24 Request() {
25 this.name = "Request";
  /external/glide/library/src/main/java/com/bumptech/glide/request/
RequestCoordinator.java 1 package com.bumptech.glide.request;
4 * An interface for coordinating multiple requests with the same {@link com.bumptech.glide.request.target.Target}.
9 * Returns true if the {@link Request} can display a loaded bitmap.
11 * @param request The {@link Request} requesting permission to display a bitmap.
13 boolean canSetImage(Request request);
16 * Returns true if the {@link Request} can display a placeholder.
18 * @param request The {@link Request} requesting permission to display a placeholder
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/message/
RequestExt.java 3 import javax.sip.message.Request;
6 * Extensions for the JAIN-SIP Request interface.
8 public interface RequestExt extends Request, MessageExt {
  /device/linaro/bootloader/edk2/MdePkg/Library/UefiUsbLib/
Hid.c 20 // Hid RequestType Bits specifying characteristics of request.
35 Submit a USB get HID descriptor request for the USB device specified by UsbIo
46 @retval EFI_SUCCESS The request executed successfully.
47 @retval EFI_TIMEOUT A timeout occurred executing the request.
48 @retval EFI_DEVICE_ERROR The request failed due to a device error.
61 EFI_USB_DEVICE_REQUEST Request;
66 Request.RequestType = USB_HID_GET_DESCRIPTOR_REQ_TYPE;
67 Request.Request = USB_REQ_GET_DESCRIPTOR;
68 Request.Value = (UINT16) (USB_DESC_TYPE_HID << 8);
    [all...]
  /frameworks/base/core/java/android/view/textclassifier/
TextClassification.aidl 20 parcelable TextClassification.Request
TextLinks.aidl 20 parcelable TextLinks.Request
TextSelection.aidl 20 parcelable TextSelection.Request
  /external/volley/src/main/java/com/android/volley/
Network.java 24 * Performs the specified request.
25 * @param request Request to process
29 NetworkResponse performRequest(Request<?> request) throws VolleyError;
ResponseDelivery.java 23 void postResponse(Request<?> request, Response<?> response);
29 void postResponse(Request<?> request, Response<?> response, Runnable runnable);
32 * Posts an error for the given request.
34 void postError(Request<?> request, VolleyError error);
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/ocsp/
Req.java 3 import org.bouncycastle.asn1.ocsp.Request;
8 private Request req;
11 Request req)
  /external/nist-sip/java/javax/sip/
ClientTransaction.java 4 import javax.sip.message.Request;
12 Request createAck() throws SipException;
14 Request createCancel() throws SipException;
RequestEvent.java 4 import javax.sip.message.Request;
8 private Request mRequest;
12 Dialog dialog, Request request) {
15 mRequest = request;
23 public Request getRequest() {
  /external/nist-sip/java/javax/sip/address/
Router.java 5 import javax.sip.message.Request;
8 Hop getNextHop(Request request) throws SipException;
9 ListIterator getNextHops(Request request);
  /art/runtime/jdwp/
jdwp_request.cc 29 Request::Request(const uint8_t* bytes, uint32_t available) : p_(bytes) {
44 Request::~Request() {
47 void Request::CheckConsumed() {
55 std::string Request::ReadUtf8String() {
66 uint64_t Request::ReadValue(size_t width) {
78 int32_t Request::ReadSigned32(const char* what) {
84 uint32_t Request::ReadUnsigned32(const char* what) {
90 FieldId Request::ReadFieldId()
    [all...]
  /device/linaro/bootloader/edk2/OvmfPkg/VirtioGpuDxe/
Commands.c 120 // request, response.
216 Internal utility function that sends a request to the VirtIo GPU device
225 @param[in] RequestType The type of the request. The caller is responsible
230 @param[in] Fence Whether to enable fencing for this request. Fencing
235 @param[in,out] Header Pointer to the caller-allocated request object. The
236 request must start with VIRTIO_GPU_CONTROL_HEADER.
238 submitting the request to the host:
246 @param[in] RequestSize Size of the entire caller-allocated request object,
251 @retval EFI_DEVICE_ERROR The host rejected the request. The host error
311 DEBUG ((EFI_D_ERROR, "%a: malformed response to Request=0x%x\n",
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/manager/
RequestTracker.java 3 import com.bumptech.glide.request.Request;
15 // though the user still would like the request to finish. Weak references are therefore only really functional in
19 private final Set<Request> requests = Collections.newSetFromMap(new WeakHashMap<Request, Boolean>());
23 * Starts tracking the given request.
25 public void runRequest(Request request) {
26 requests.add(request);
28 request.begin()
    [all...]
  /external/junit/src/main/java/org/junit/runner/
Request.java 14 * A <code>Request</code> is an abstract description of tests to be run. Older versions of
20 * <p>The flow when JUnit runs tests is that a <code>Request</code> specifies some tests to be run -&gt;
21 * a {@link org.junit.runner.Runner} is created for each class implied by the <code>Request</code> -&gt;
27 public abstract class Request {
29 * Create a <code>Request</code> that, when processed, will run a single test.
35 * @return a <code>Request</code> that will cause a single test be run
37 public static Request method(Class<?> clazz, String methodName) {
39 return Request.aClass(clazz).filterWith(method);
43 * Create a <code>Request</code> that, when processed, will run all the tests
47 * @return a <code>Request</code> that will cause all tests in the class to be ru
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/
MPITypes.h 11 /// This file provides definitions to model concepts of MPI. The mpi::Request
28 class Request {
32 Request(State S) : CurrentState{S} {}
38 bool operator==(const Request &ToCompare) const {
51 clang::ento::mpi::Request>
  /external/glide/library/src/main/java/com/bumptech/glide/request/target/
BaseTarget.java 1 package com.bumptech.glide.request.target;
5 import com.bumptech.glide.request.Request;
19 * {@link com.bumptech.glide.request.target.ViewTarget} or {@link com.bumptech.glide.request.target.ImageViewTarget}
27 private Request request; field in class:BaseTarget
33 public void setRequest(Request request) {
34 this.request = request
    [all...]
  /external/junit/src/main/java/org/junit/internal/requests/
SortingRequest.java 6 import org.junit.runner.Request;
10 public class SortingRequest extends Request {
11 private final Request request; field in class:SortingRequest
14 public SortingRequest(Request request, Comparator<Description> comparator) {
15 this.request = request;
21 Runner runner = request.getRunner();
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ocsp/
Request.java 12 public class Request
18 public Request(
26 private Request(
38 public static Request getInstance(
45 public static Request getInstance(
48 if (obj instanceof Request)
50 return (Request)obj;
54 return new Request(ASN1Sequence.getInstance(obj));
73 * Request ::= SEQUENCE {
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Authenticator.java 26 * Returns a request that includes a credential to satisfy an authentication
31 * <p>Typical implementations will look up a credential and create a request
32 * derived from the initial request by setting the "Authorization" header.
36 * return response.request().newBuilder()
41 Request authenticate(Proxy proxy, Response response) throws IOException;
44 * Returns a request that includes a credential to satisfy an authentication
49 * <p>Typical implementations will look up a credential and create a request
50 * derived from the initial request by setting the "Proxy-Authorization"
54 * return response.request().newBuilder()
59 Request authenticateProxy(Proxy proxy, Response response) throws IOException
    [all...]
Interceptor.java 23 * on the request or response.
29 Request request(); method in interface:Interceptor.Chain
30 Response proceed(Request request) throws IOException;

Completed in 1043 milliseconds

1 2 3 4 5 6 7 8 91011>>