HomeSort by relevance Sort by last modified time
    Searched refs:request (Results 1076 - 1100 of 2852) sorted by null

<<41424344454647484950>>

  /external/chromium_org/third_party/libjingle/source/talk/base/
asynchttprequest.h 44 // Performs an HTTP request on a background thread. Notifies on the foreground
45 // thread once the request is done (successfully or unsuccessfully).
74 // Whether the request should use SSL.
89 HttpRequestData& request() { return client_.request(); } function in class:talk_base::AsyncHttpRequest
httprequest.h 68 // Whether the request should use SSL.
83 HttpRequestData& request() { return client_.request(); } function in class:talk_base::HttpRequest
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
portinterface.h 104 // Indicates that we received a successful STUN binding request from an
111 // Sends a response message (normal or error) to the given request. One of
114 virtual void SendBindingResponse(StunMessage* request,
117 StunMessage* request, const talk_base::SocketAddress& addr,
portproxy.h 78 virtual void SendBindingResponse(StunMessage* request,
81 StunMessage* request, const talk_base::SocketAddress& addr,
  /external/chromium_org/third_party/protobuf/python/google/protobuf/
service.py 66 request, done):
77 * request is of the exact same classes as returned by
79 * After the call has started, the request must not be modified.
94 """Returns the class of the request message for the specified method.
96 CallMethod() requires that the request is of a particular subclass of
102 request = stub.GetRequestClass(method)()
103 request.ParseFromString(input)
104 service.CallMethod(method, request, callback)
196 NotifyOnCancel() must be called no more than once per request.
214 service.MyMethod(controller, request, callback
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
service.h 65 // const MyRequest* request,
68 // // ... read request and fill in response ...
81 // FooRequest request;
84 // // ... fill in request ...
86 // stub.Foo(&controller, request, &response, NewCallback(HandleResponse));
147 // * request and response are of the exact same classes as the objects
150 // * After the call has started, the request must not be modified and the
168 const Message* request,
172 // CallMethod() requires that the request and response passed in are of a
181 // Message* request = stub->GetRequestPrototype (method)->New()
    [all...]
  /external/chromium_org/webkit/child/
weburlloader_impl.cc 63 "Request throttled. Visit http://dev.chromium.org/throttling for more "
337 const WebURLRequest& request,
413 const WebURLRequest& request,
418 request_ = request; // Save the request.
420 GURL url = request.url();
438 request.httpHeaderField(WebString::fromUTF8("Referer")).utf8());
439 const std::string& method = request.httpMethod().utf8();
442 switch (request.cachePolicy()) {
457 if (request.reportUploadProgress()
    [all...]
  /external/junit/src/org/junit/experimental/results/
PrintableResult.java 9 import org.junit.runner.Request;
27 return testResult(Request.aClass(type));
31 * The result of running JUnit on Request {@code request}
33 public static PrintableResult testResult(Request request) {
34 return new PrintableResult(new JUnitCore().run(request));
  /external/mockwebserver/src/main/java/com/google/mockwebserver/
QueueDispatcher.java 31 @Override public MockResponse dispatch(RecordedRequest request) throws InterruptedException {
33 final String requestLine = request.getRequestLine();
  /external/protobuf/python/google/protobuf/
service.py 66 request, done):
77 * request is of the exact same classes as returned by
79 * After the call has started, the request must not be modified.
94 """Returns the class of the request message for the specified method.
96 CallMethod() requires that the request is of a particular subclass of
102 request = stub.GetRequestClass(method)()
103 request.ParseFromString(input)
104 service.CallMethod(method, request, callback)
196 NotifyOnCancel() must be called no more than once per request.
214 service.MyMethod(controller, request, callback
    [all...]
  /external/protobuf/src/google/protobuf/
service.h 65 // const MyRequest* request,
68 // // ... read request and fill in response ...
81 // FooRequest request;
84 // // ... fill in request ...
86 // stub.Foo(&controller, request, &response, NewCallback(HandleResponse));
147 // * request and response are of the exact same classes as the objects
150 // * After the call has started, the request must not be modified and the
168 const Message* request,
172 // CallMethod() requires that the request and response passed in are of a
181 // Message* request = stub->GetRequestPrototype (method)->New()
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/Xext/Xv/
Xvlibint.h 65 dpy->request++
77 dpy->request++
  /external/valgrind/main/gdbserver_tests/
mcbreak.stderrB.exp 6 monitor command request to kill this process
  /external/wpa_supplicant_8/hostapd/
wps-ap-nfc.py 51 print wpas.request("WPS_NFC_TAG_READ " + message.encode("hex"))
58 return wpas.request("WPS_NFC_CONFIG_TOKEN NDEF").rstrip().decode("hex")
65 return wpas.request("WPS_NFC_TOKEN NDEF").rstrip().decode("hex")
72 return wpas.request("NFC_GET_HANDOVER_SEL NDEF WPS-CR").rstrip().decode("hex")
79 return wpas.request("NFC_REPORT_HANDOVER RESP WPS " +
88 def process_request(self, request):
89 print "HandoverServer - request received"
90 print "Parsed handover request: " + request.pretty()
94 for carrier in request.carriers
    [all...]
  /frameworks/av/media/libmediaplayerservice/
StagefrightPlayer.h 57 virtual status_t invoke(const Parcel &request, Parcel *reply);
59 virtual status_t setParameter(int key, const Parcel &request);
  /frameworks/base/location/java/com/android/internal/location/
ILocationProvider.aidl 37 void setRequest(in ProviderRequest request, in WorkSource ws);
  /frameworks/compile/mclinker/unittests/
MCRegionFragmentTest.cpp 51 MemoryRegion* region = area->request(0, 4096);
66 MemoryRegion* region = area->request(0, 4096);
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/protos/mock/
MockRespondMatrixCursor.java 43 public Bundle respond(Bundle request) {
54 // For each of the keys in the request, we want to see if there is a mock response for the
55 // request
56 final Set<String> bundleKeys = request.keySet();
  /external/chromium/chrome/browser/policy/
device_management_backend_impl.cc 28 const char DeviceManagementBackendImpl::kParamRequest[] = "request";
158 void SetPayload(const em::DeviceManagementRequest& request) {
159 if (!request.SerializeToString(&payload_)) {
161 LOG(ERROR) << "Failed to serialize request.";
171 // The backend this job is handling a request for.
280 const em::DeviceRegisterRequest& request,
289 request_wrapper.mutable_register_request()->CopyFrom(request);
315 const em::DeviceUnregisterRequest& request,
324 request_wrapper.mutable_unregister_request()->CopyFrom(request);
343 // Handles policy request jobs
    [all...]
  /external/chromium_org/content/browser/loader/
resource_dispatcher_host_unittest.cc 49 // Returns the resource response header structure for this request.
94 ResourceHostMsg_Request request; local
95 request.method = std::string(method);
96 request.url = url;
97 request.first_party_for_cookies = url; // bypass third-party cookie blocking
98 request.referrer_policy = WebKit::WebReferrerPolicyDefault;
99 request.load_flags = 0;
100 request.origin_pid = 0;
101 request.resource_type = type;
102 request.request_context = 0
759 ResourceHostMsg_Request request = local
1081 ResourceHostMsg_Request request = CreateResourceRequest( local
1741 ResourceHostMsg_Request request = local
1804 ResourceHostMsg_Request request = local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
WebSocketHandshake.cpp 210 // to "Connection: close" in the response if a request doesn't contain
243 RefPtr<WebSocketHandshakeRequest> request = WebSocketHandshakeRequest::create("GET", m_url); local
244 request->addHeaderField("Upgrade", "websocket");
245 request->addHeaderField("Connection", "Upgrade");
246 request->addHeaderField("Host", hostName(m_url, m_secure));
247 request->addHeaderField("Origin", clientOrigin());
249 request->addHeaderField("Sec-WebSocket-Protocol", m_clientProtocol);
256 request->addHeaderField("Cookie", cookie);
260 request->addHeaderField("Pragma", "no-cache");
261 request->addHeaderField("Cache-Control", "no-cache")
    [all...]
  /external/chromium/chrome/browser/net/
url_request_slow_download_job.cc 49 net::URLRequest* request,
51 URLRequestSlowDownloadJob* job = new URLRequestSlowDownloadJob(request);
52 if (request->url().spec() != kFinishDownloadUrl)
67 URLRequestSlowDownloadJob::URLRequestSlowDownloadJob(net::URLRequest* request)
68 : net::URLRequestJob(request),
117 // until a request is made for kFinishDownloadUrl.
  /external/chromium_org/base/posix/
unix_domain_socket_linux.cc 120 const Pickle& request) {
123 result_fd, request);
132 const Pickle& request) {
142 if (!SendMsg(fd, request.data(), request.size(), fd_vector)) {
  /external/chromium_org/chrome/browser/extensions/updater/
request_queue_impl.h 47 void RequestQueue<T>::ScheduleRequest(scoped_ptr<T> request) {
48 PushImpl(request.Pass(), scoped_ptr<net::BackoffEntry>(
54 void RequestQueue<T>::PushImpl(scoped_ptr<T> request,
56 pending_requests_.push_back(Request(
57 backoff_entry.release(), request.release()));
80 // Already running a request, assume this method will be called again when
81 // the request is done.
110 active_request_.reset(pending_requests_.back().request.release());
146 const Request& a,
147 const Request& b)
    [all...]
  /external/chromium_org/chrome/browser/history/
history_service.h 83 // This service is thread safe. Each request callback is invoked in the
84 // thread that made the request.
304 // if the request is not canceled.
343 // Request the top |result_count| most visited URLs and the chain of redirects
357 // Request the |result_count| most visited URLs and the chain of
364 // Request the |result_count| URLs filtered and sorted based on the |filter|.
379 // Implemented by consumers to get thumbnail data. Called when a request for
380 // the thumbnail data is complete. Once this callback is made, the request
446 // Begins a history request to create a new row for a download. 'info'
448 // history service request is complete. The callback is called on the threa
    [all...]

Completed in 522 milliseconds

<<41424344454647484950>>