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

1 2 3 4 5 6 7 8

  /frameworks/base/core/java/android/net/http/
RequestFeeder.java 30 Request getRequest();
31 Request getRequest(HttpHost host);
34 * @return true if a request for this host is available
39 * Put request back on head of queue
41 void requeueRequest(Request request);
  /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 {
  /packages/apps/Exchange/exchange2/src/com/android/exchange/
Request.java 24 public abstract class Request {
28 public Request(long messageId) {
32 // Subclasses of Request may have different semantics regarding equality; therefore,
  /frameworks/testing/androidtestlib/src/com/android/test/runner/
TestRequest.java 18 import org.junit.runner.Request;
24 * A data structure for holding a {@link Request} and the {@link Failure}s that occurred during its
29 private final Request mRequest;
31 public TestRequest(List<Failure> requestBuildFailures, Request request) {
32 mRequest = request;
40 public Request getRequest() {
  /frameworks/volley/src/com/android/volley/
Network.java 24 * Performs the specified request.
25 * @param request Request to process
29 public NetworkResponse performRequest(Request<?> request) throws VolleyError;
ResponseDelivery.java 23 public void postResponse(Request<?> request, Response<?> response);
29 public void postResponse(Request<?> request, Response<?> response, Runnable runnable);
32 * Posts an error for the given request.
34 public void postError(Request<?> request, VolleyError error);
RequestQueue.java 32 * A request dispatch queue with a thread pool of dispatchers.
34 * Calling {@link #add(Request)} will enqueue the given Request for dispatch,
45 * Staging area for requests that already have a duplicate request in flight.
48 * <li>containsKey(cacheKey) indicates that there is a request in flight for the given cache
50 * <li>get(cacheKey) returns waiting requests for the given cache key. The in flight request
54 private final Map<String, Queue<Request>> mWaitingRequests =
55 new HashMap<String, Queue<Request>>();
58 * The set of all requests currently being processed by this RequestQueue. A Request
62 private final Set<Request> mCurrentRequests = new HashSet<Request>()
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
DownloadManagerCompatUtils.java 24 // DownloadManager.Request#setAllowedOverMetered() has been introduced
27 DownloadManager.Request.class, "setAllowedOverMetered", Boolean.TYPE);
29 public static DownloadManager.Request setAllowedOverMetered(
30 final DownloadManager.Request request, final boolean allowOverMetered) {
31 return (DownloadManager.Request)CompatUtils.invoke(request,
32 request /* default return value */, METHOD_setAllowedOverMetered, allowOverMetered);
  /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() {
SipProvider.java 5 import javax.sip.message.Request;
35 ClientTransaction getNewClientTransaction(Request request)
37 ServerTransaction getNewServerTransaction(Request request)
48 void sendRequest(Request request) throws SipException;
Transaction.java 4 import javax.sip.message.Request;
16 Request getRequest();
Dialog.java 8 import javax.sip.message.Request;
63 Request createRequest(String method) throws SipException;
64 Request createAck(long cseq) throws InvalidArgumentException, SipException;
65 Request createPrack(Response relResponse)
73 void sendAck(Request ackRequest) throws SipException;
  /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);
  /external/junit/src/org/junit/runner/
Request.java 14 * <p>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 ->
21 * a {@link org.junit.runner.Runner} is created for each class implied by the <code>Request</code> ->
25 public abstract class Request {
27 * Create a <code>Request</code> that, when processed, will run a single test.
32 * @return a <code>Request</code> that will cause a single test be run
34 public static Request method(Class<?> clazz, String methodName) {
36 return Request.aClass(clazz).filterWith(method);
40 * Create a <code>Request</code> that, when processed, will run all the tests
43 * @return a <code>Request</code> that will cause all tests in the class to be ru
    [all...]
  /external/junit/src/org/junit/internal/requests/
SortingRequest.java 6 import org.junit.runner.Request;
10 public class SortingRequest extends Request {
11 private final Request fRequest;
14 public SortingRequest(Request request, Comparator<Description> comparator) {
15 fRequest= request;
FilterRequest.java 7 import org.junit.runner.Request;
13 * A filtered {@link Request}.
15 public final class FilterRequest extends Request {
16 private final Request fRequest;
20 * Creates a filtered Request
21 * @param classRequest a {@link Request} describing your Tests
25 public FilterRequest(Request classRequest, Filter filter) {
ClassRequest.java 5 import org.junit.runner.Request;
8 public class ClassRequest extends Request {
  /external/chromium/net/proxy/
mock_proxy_resolver.h 21 // user must call Request::CompleteNow() on a pending request to signal it.
24 class Request : public base::RefCounted<Request> {
26 Request(MockAsyncProxyResolverBase* resolver,
38 friend class base::RefCounted<Request>;
40 virtual ~Request();
68 typedef std::vector<scoped_refptr<Request> > RequestsList;
97 void RemovePendingRequest(Request* request);
    [all...]
mock_proxy_resolver.cc 12 MockAsyncProxyResolverBase::Request::Request(
24 void MockAsyncProxyResolverBase::Request::CompleteNow(int rv) {
33 MockAsyncProxyResolverBase::Request::~Request() {}
64 scoped_refptr<Request> request = new Request(this, url, results, callback); local
65 pending_requests_.push_back(request);
68 *request_handle = reinterpret_cast<RequestHandle>(request.get())
75 scoped_refptr<Request> request = reinterpret_cast<Request*>(request_handle); local
    [all...]
  /frameworks/volley/tests/src/com/android/volley/mock/
MockResponseDelivery.java 19 import com.android.volley.Request;
35 public void postResponse(Request<?> request, Response<?> response) {
41 public void postResponse(Request<?> request, Response<?> response, Runnable runnable) {
48 public void postError(Request<?> request, VolleyError error) {
WaitableQueue.java 20 import com.android.volley.Request;
30 public class WaitableQueue extends PriorityBlockingQueue<Request> {
31 private final Request<?> mStopRequest = new MagicStopRequest();
44 public Request<?> take() throws InterruptedException {
45 Request<?> item = super.take();
53 private static class MagicStopRequest extends Request<Object> {
  /frameworks/volley/src/com/android/volley/toolbox/
HttpStack.java 20 import com.android.volley.Request;
32 * Performs an HTTP request with the given parameters.
34 * <p>A GET request is sent if request.getPostBody() == null. A POST request is sent otherwise,
35 * and the Content-Type header is set to request.getPostBodyContentType().</p>
37 * @param request the request to perform
39 * {@link Request#getHeaders()}
42 public HttpResponse performRequest(Request<?> request, Map<String, String> additionalHeaders
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
TokenNames.java 27 import javax.sip.message.Request;
45 public static final String INVITE = Request.INVITE;
46 public static final String ACK = Request.ACK;
47 public static final String BYE = Request.BYE;
48 public static final String SUBSCRIBE = Request.SUBSCRIBE;
49 public static final String NOTIFY = Request.NOTIFY;
50 public static final String OPTIONS = Request.OPTIONS;
51 public static final String REGISTER = Request.REGISTER;
52 public static final String MESSAGE = Request.MESSAGE;
53 public static final String PUBLISH = Request.PUBLISH
    [all...]
  /external/chromium/net/http/
http_stream_factory_impl_request.cc 15 HttpStreamFactoryImpl::Request::Request(const GURL& url,
32 HttpStreamFactoryImpl::Request::~Request() {
48 void HttpStreamFactoryImpl::Request::SetSpdySessionKey(
58 void HttpStreamFactoryImpl::Request::AttachJob(Job* job) {
64 void HttpStreamFactoryImpl::Request::Complete(
78 void HttpStreamFactoryImpl::Request::OnStreamReady(
109 void HttpStreamFactoryImpl::Request::OnStreamFailed(
134 void HttpStreamFactoryImpl::Request::OnCertificateError
    [all...]

Completed in 370 milliseconds

1 2 3 4 5 6 7 8