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

1 2

  /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...]
  /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,
  /external/nist-sip/java/gov/nist/javax/sip/message/
SIPRequest.java 55 * Bystrom. Szabo Barna noticed a contact in a cancel request - this is a pointless header for
62 * The SIP Request structure.
73 public final class SIPRequest extends SIPMessage implements javax.sip.message.Request, RequestExt {
89 private transient Object inviteTransaction; // The original invite request for a
90 // given cancel request
95 * A target refresh request and its response MUST have a Contact
110 targetRefreshMethods.add(Request.INVITE);
111 targetRefreshMethods.add(Request.UPDATE);
112 targetRefreshMethods.add(Request.SUBSCRIBE);
113 targetRefreshMethods.add(Request.NOTIFY)
    [all...]
  /external/chromium/net/proxy/
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...]
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...]
  /external/chromium/net/http/
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...]
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...]
  /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/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/nist-sip/java/javax/sip/message/
Request.java 6 public interface Request extends Message {
  /external/webkit/Source/WebCore/inspector/front-end/
CookieParser.js 57 this._addCookie(kv, WebInspector.Cookie.Type.Request);
208 Request: 0,
  /hardware/ril/mock-ril/src/js/
mock_ril.js 34 * Send a completion request to the framework.
38 * Send a complete request to the controller.
139 * Construct a new request which is passed to the
142 function Request(reqNum, token, protobuf, schema, schemaName) {
148 // not a valid protobuf in the request
187 req = new Request(reqNum, token, requestProtobuf, rilSchema, entry.schemaName);
213 * and contains an array of components this request
216 * appropriate request data.
  /external/chromium/net/websockets/
websocket.h 72 class Request {
74 Request(const GURL& url, const std::string protocol,
86 ~Request() {}
121 DISALLOW_COPY_AND_ASSIGN(Request);
127 WebSocket(Request* req, WebSocketDelegate* delegate);
129 const Request* request() const { return request_.get(); } function in class:net::WebSocket
192 scoped_ptr<Request> request_;
  /external/qemu/distrib/sdl-1.2.15/src/audio/symbian/
streamplayer.cpp 148 Request();
164 void CStreamPlayer::Request()
224 Request();
240 Request();
267 void CStreamPlayer::Request()
  /frameworks/native/include/utils/
Looper.h 323 struct Request {
332 Request request; member in struct:android::Looper::Response
359 KeyedVector<int, Request> mRequests; // guarded by mLock
369 void pushResponse(int events, const Request& request);
  /packages/apps/Contacts/tests/src/com/android/contacts/calllog/
CallLogAdapterTest.java 89 // There is one request for contact details.
92 TestCallLogAdapter.Request request = mAdapter.requests.get(0); local
94 assertEquals(TEST_NUMBER, request.number);
96 assertEquals(TEST_COUNTRY_ISO, request.countryIso);
97 // Since there is nothing in the cache, it is an immediate request.
98 assertTrue("should be immediate", request.immediate);
107 // There is one request for contact details.
110 TestCallLogAdapter.Request request = mAdapter.requests.get(0) local
128 TestCallLogAdapter.Request request = mAdapter.requests.get(0); local
158 TestCallLogAdapter.Request request = mAdapter.requests.get(0); local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
FilterDeleteSet.java 38 private static class Request {
42 public Request(int type, Path path, int indexHint) {
62 private ArrayList<Request> mRequests = new ArrayList<Request>();
153 Request r = mRequests.get(i);
227 Request r = new Request(type, path, indexHint);
  /external/chromium/net/socket/
client_socket_pool_base.cc 24 // disabled, sockets are closed next time a socket request is made.
140 ClientSocketPoolBaseHelper::Request::Request(
162 ClientSocketPoolBaseHelper::Request::~Request() {}
200 // InsertRequestIntoQueue inserts the request into the queue based on
206 const Request* r, RequestQueue* pending_requests) {
214 const ClientSocketPoolBaseHelper::Request*
217 const Request* req = *it;
227 const Request* request)
    [all...]
client_socket_pool_base.h 169 class Request {
171 Request(ClientSocketHandle* handle,
182 virtual ~Request();
203 DISALLOW_COPY_AND_ASSIGN(Request);
213 const Request& request,
232 // ClientSocketPoolBaseHelper takes ownership of |request|, which must be
234 int RequestSocket(const std::string& group_name, const Request* request);
238 const Request& request
663 Request* request = local
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/oauth2/
__init__.py 70 request = Request.from_consumer_and_token(consumer, token,
74 request.sign_request(signing_method, consumer, token)
77 for k, v in sorted(request.iteritems()):
115 key in each request to identify itself, but will use its secret only when
116 signing requests, to prove that the request is from that particular
120 the service provider for a request token, kicking off the OAuth
142 """An OAuth credential used to request authorization or a protected
150 When first negotiating the authorization, the consumer asks for a *request
152 consumer then exchanges the request token for an *access token* that ca
540 def request(self, uri, method="GET", body=None, headers=None, member in class:Client
    [all...]
  /frameworks/support/volley/src/com/android/volley/
Request.java 33 * @param <T> The type of parsed response this request expects.
35 public abstract class Request<T> implements Comparable<Request<T>> {
40 /** An event log tracing the lifetime of this request; for debugging. */
43 /** URL of this request. */
49 /** Sequence number of this request, used to enforce FIFO ordering. */
52 /** The request queue this request is associated with. */
55 /** Whether or not responses to this request should be cached. */
58 /** Whether or not this request has been canceled. *
    [all...]
  /frameworks/base/core/java/android/net/http/
Request.java 47 * Represents an HTTP request for a given host.
52 class Request {
54 /** The eventhandler to call as the request progresses */
59 /** The Apache http request */
62 /** The path component of this request */
65 /** Host serving this request */
71 /** True if request has been cancelled */
101 * Instantiates a new Request.
103 * @param host The server that will handle this request
107 * @param eventHandler request will make progress callbacks o
    [all...]
  /libcore/support/src/test/java/tests/support/
Support_TestWebServer.java 42 /** maps the recently requested URLs to the full request snapshot */
43 private final Map<String, Request> pathToRequest
44 = new ConcurrentHashMap<String, Request>();
72 /* If set, this will keep connections alive after a request has been
144 * @param value Set true to keep connections open after a request
178 * When this value is set, the server will respond to a request with
192 * snapshot of the request data.
194 public Map<String, Request> pathToRequest() {
280 * An immutable snapshot of an HTTP request.
282 public static class Request {
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPTransactionStack.java 78 import javax.sip.message.Request;
187 * Internal router. Use this for all sip: request routing.
232 * Request factory interface (to be provided by the application)
237 * Router to determine where to forward the request.
316 // request. Default is "infinity". This property allows
414 dialogCreatingMethods.add(Request.REFER);
415 dialogCreatingMethods.add(Request.INVITE);
416 dialogCreatingMethods.add(Request.SUBSCRIBE);
431 // Close the request socket after infinite time.
589 if (extensionMethod.equals(Request.NOTIFY))
    [all...]
  /external/chromium/net/base/
host_resolver_impl.cc 249 class HostResolverImpl::Request {
251 Request(const BoundNetLog& source_net_log,
266 // Mark the request as cancelled.
279 // Identify which job the request is waiting on.
319 // Unique ID for this request. Used by observers to identify requests.
322 // The request info that started the request.
325 // The resolve job (running in worker pool) that this request is dependent on.
328 // The user's callback to invoke when the request completes.
334 DISALLOW_COPY_AND_ASSIGN(Request);
    [all...]

Completed in 794 milliseconds

1 2