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

1 2 3 4 5 6

  /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);
RequestQueue.java 56 private final LinkedHashMap<HttpHost, LinkedList<Request>> mPending;
193 * is read. It supports request prioritization, connection reuse
206 * is read. It supports request prioritization, connection reuse
215 mPending = new LinkedHashMap<HttpHost, LinkedList<Request>>(32);
287 * Queues an HTTP request
306 * Queues an HTTP request
328 /* Create and queue request */
329 Request req;
332 // set up request
333 req = new Request(method, httpHost, mProxyHost, uri.getPath(), bodyProvider
437 Request request = (Request)iter.next(); local
    [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 {
  /packages/apps/Exchange/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,
MeetingResponseRequest.java 22 public class MeetingResponseRequest extends Request {
MessageMoveRequest.java 22 public class MessageMoveRequest extends Request {
  /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/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...]
  /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...]
http_stream_factory_impl.h 42 class Request;
45 typedef std::set<Request*> RequestSet;
51 // Detaches |job| from |request|.
52 void OrphanJob(Job* job, const Request* request);
86 std::map<const Job*, Request*> request_map_;
97 // These jobs correspond to preconnect requests and have no associated Request
http_stream_factory_impl_request.h 16 class HttpStreamFactoryImpl::Request : public HttpStreamRequest {
18 Request(const GURL& url,
22 virtual ~Request();
24 // The GURL from the HttpRequestInfo the started the Request.
28 // Request. Note that this does not mean that SPDY is necessarily supported
33 // Attaches |job| to this request. Does not mean that Request will use |job|,
34 // but Request will own |job|.
37 // Marks completion of the request. Must be called before OnStreamReady().
39 // request
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
AuthenticationHelper.java 11 import javax.sip.message.Request;
31 * request so that it could be retransmitted.
38 * the transaction established by the challenged request
48 * @return a transaction containing a re-originated request with the
61 * Attach authentication headers to the given request. This looks up
63 * for the given call ID and attaches it to the request.
64 * @param request - the request for which we attach the authentication headers.
66 public abstract void setAuthenticationHeaders(Request request) ;
    [all...]
  /hardware/ril/mock-ril/src/cpp/
requests.h 28 * A request
30 struct Request {
35 Request(const int request, const Buffer *buffer, const RIL_Token token) :
39 Set(request, buffer, token);
42 ~Request() {
46 void Set(const int request,
48 request_ = request;
55 * Ril request worker queue.
63 std::queue<Request *> free_list_
    [all...]
  /external/nist-sip/java/javax/sip/message/
MessageFactory.java 16 Request createRequest(URI requestURI, String method, CallIdHeader callId,
21 Request createRequest(URI requestURI, String method, CallIdHeader callId,
26 Request createRequest(URI requestURI, String method, CallIdHeader callId,
30 Request createRequest(String request) throws ParseException;
46 Response createResponse(int statusCode, Request request,
50 Response createResponse(int statusCode, Request request,
54 Response createResponse(int statusCode, Request request
    [all...]
  /external/chromium/chrome/browser/chromeos/cros/
libcros_service_library.cc 53 class Request {
55 explicit Request(const std::string& source_url);
56 virtual ~Request() {}
61 net::CompletionCallbackImpl<Request> completion_callback_;
70 DISALLOW_COPY_AND_ASSIGN(Request);
75 // chrome executable. Called on UI thread from dbus request.
81 void NotifyProxyResolved(Request* request);
83 std::vector<Request*> all_requests_;
179 LOG(WARNING) << "Pending request for " << all_requests_[i]->source_url_
206 Request* request = new Request(source_url); local
    [all...]
  /external/chromium/net/base/
host_resolver_impl.h 37 // Request ... Request Request ... Request Request ... Request
42 // callbacks of each waiting request are run on the origin thread.
135 class Request;
136 typedef std::vector<Request*> RequestsList;
168 // Called when a request has just been started
    [all...]
  /external/webkit/Source/WebKit/mac/Plugins/
WebPluginContainerPrivate.h 41 - (id)_webPluginContainerCheckIfAllowedToLoadRequest:(NSURLRequest *)Request inFrame:(NSString *)target resultObject:(id)obj selector:(SEL)selector;
  /frameworks/base/core/java/android/provider/
Downloads.java 149 * a byte-range request without an ETag, or when it can't determine
254 * header that gets sent with the request.
538 return visibility == DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED ||
539 visibility == DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_ONLY_COMPLETION;
566 * This download encountered some network error and is waiting before retrying the request.
603 * This request couldn't be parsed. This is also used when processing
688 * HttpException while setting up the request.
710 public static final int VISIBILITY_VISIBLE = DownloadManager.Request.VISIBILITY_VISIBLE;
717 DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED;
722 public static final int VISIBILITY_HIDDEN = DownloadManager.Request.VISIBILITY_HIDDEN
    [all...]

Completed in 1423 milliseconds

1 2 3 4 5 6