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

<<31323334353637383940>>

  /external/chromium_org/webkit/common/appcache/
appcache_interfaces.cc 125 bool IsSchemeAndMethodSupported(const net::URLRequest* request) {
126 return IsSchemeSupported(request->url()) &&
127 IsMethodSupported(request->method());
  /external/smack/src/org/jivesoftware/smackx/bytestreams/ibb/
InitiationListener.java 31 * listeners for a In-Band Bytestream request InitiationListener will always refuse the request and
35 * All In-Band Bytestream request having a block size greater than the maximum allowed block size
81 // ignore request if in ignore list
85 // build bytestream request from packet
86 InBandBytestreamRequest request = new InBandBytestreamRequest(this.manager, ibbRequest);
91 userListener.incomingBytestreamRequest(request);
99 listener.incomingBytestreamRequest(request);
105 * if there is no listener for this initiation request, reply with reject message
  /external/smack/src/org/jivesoftware/smackx/bytestreams/socks5/
InitiationListener.java 31 * listeners for a SOCKS5 bytestream request InitiationListener will always refuse the request and
71 // ignore request if in ignore list
76 // build bytestream request from packet
77 Socks5BytestreamRequest request = new Socks5BytestreamRequest(this.manager, local
83 userListener.incomingBytestreamRequest(request);
91 listener.incomingBytestreamRequest(request);
97 * if there is no listener for this initiation request, reply with reject message
  /frameworks/av/services/camera/libcameraservice/common/
CameraDeviceBase.h 55 * Submit request for capture. The CameraDevice takes ownership of the
58 virtual status_t capture(CameraMetadata &request) = 0;
61 * Submit request for streaming. The CameraDevice makes a copy of the
64 virtual status_t setStreamingRequest(const CameraMetadata &request) = 0;
67 * Clear the streaming request slot.
72 * Wait until a request with the given ID has been dequeued by the
74 * immediately if the latest request received by the HAL has this id.
127 CameraMetadata *request) = 0;
  /libcore/benchmarks/src/benchmarks/regression/
SSLSocketBenchmark.java 45 final byte[] request; field in class:SSLSocketBenchmark.WebSite
62 this.request = ("GET " + uri + " HTTP/1.0\r\n"
98 out.write(webSite.request);
  /system/core/adb/
test_track_devices.c 58 const char* request = "host:track-devices"; local
70 /* send the request */
71 len = snprintf( buffer, sizeof buffer, "%04x%s", strlen(request), request );
73 panic( "could not send request" );
77 panic( "could not read request" );
test_track_jdwp.c 58 const char* request = "track-jdwp"; local
70 /* send the request */
71 len = snprintf( buffer, sizeof buffer, "%04x%s", strlen(request), request );
73 panic( "could not send request" );
77 panic( "could not read request" );
  /bionic/libc/kernel/common/linux/
blkdev.h 106 struct request;
107 typedef void (rq_end_io_fn)(struct request *, int);
119 struct request { struct
247 typedef int (merge_request_fn) (request_queue_t *, struct request *,
250 typedef int (merge_requests_fn) (request_queue_t *, struct request *,
251 struct request *);
255 typedef int (prep_rq_fn) (request_queue_t *, struct request *);
262 typedef void (prepare_flush_fn) (request_queue_t *, struct request *);
264 typedef void (softirq_done_fn)(struct request *);
271 struct request **tag_index
    [all...]
  /external/chromium/base/win/
event_trace_provider.cc 59 ULONG EtwTraceProvider::Callback(WMIDPREQUESTCODE request, void* buffer) {
60 switch (request) {
71 ULONG WINAPI EtwTraceProvider::ControlCallback(WMIDPREQUESTCODE request,
75 return provider->Callback(request, buffer);
  /external/chromium/chrome/browser/debugger/
devtools_remote_service.cc 40 scoped_ptr<Value> request(base::JSONReader::Read(message.content(), false));
41 if (request.get() == NULL) {
47 if (request->IsType(Value::TYPE_DICTIONARY)) {
48 json = static_cast<DictionaryValue*>(request.get());
  /external/chromium/chrome/browser/extensions/
autoupdate_interceptor.h 15 // This url request interceptor lets us respond to localhost http request urls
25 virtual net::URLRequestJob* MaybeIntercept(net::URLRequest* request);
  /external/chromium/chrome/browser/password_manager/
password_store.h 32 // The login request/manipulation API is not threadsafe and must be used
43 // PasswordStoreConsumer. However, if the request is canceled after the
44 // allocation, then the request must take care of the deletion.
94 // request can be tracked. Implement the PasswordStoreConsumer interface to be
100 // are thus auto-fillable--and returns a handle so the async request can be
106 // returns a handle so the async request can be tracked. Implement the
150 virtual void GetLoginsImpl(GetLoginsRequest* request,
153 virtual void GetAutofillableLoginsImpl(GetLoginsRequest* request) = 0;
155 virtual void GetBlacklistLoginsImpl(GetLoginsRequest* request) = 0;
167 virtual void ForwardLoginsResult(GetLoginsRequest* request);
    [all...]
password_store_default.cc 181 GetLoginsRequest* request, const webkit_glue::PasswordForm& form) {
182 login_db_->GetLogins(form, &request->value);
183 ForwardLoginsResult(request);
187 GetLoginsRequest* request) {
188 FillAutofillableLogins(&request->value);
189 ForwardLoginsResult(request);
193 GetLoginsRequest* request) {
194 FillBlacklistLogins(&request->value);
195 ForwardLoginsResult(request);
  /external/chromium/chrome/browser/search_engines/
template_url_fetcher.h 56 void RequestCompleted(RequestDelegate* request);
  /external/chromium/chrome/browser/ssl/
ssl_add_cert_handler.h 23 SSLAddCertHandler(net::URLRequest* request, net::X509Certificate* cert,
48 // The id of the request which started the process.
  /external/chromium/chrome/browser/ui/login/
login_prompt.h 34 LoginHandler(net::AuthChallengeInfo* auth_info, net::URLRequest* request);
40 net::URLRequest* request);
57 // Resend the request with authentication credentials.
65 // Notify the handler that the request was cancelled.
133 // The request that wants login data.
210 net::URLRequest* request);
215 void ResetLoginHandlerForRequest(net::URLRequest* request);
  /external/chromium/chrome/browser/ui/webui/
chrome_web_ui_factory.h 30 // Get the favicon for |page_url| and forward the result to the |request|
33 FaviconService::GetFaviconRequest* request,
  /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...]
  /external/chromium/net/http/
http_auth_handler_basic.h 42 const HttpRequestInfo* request,
  /external/chromium/net/proxy/
proxy_resolver_v8.h 49 RequestHandle* /*request*/,
51 virtual void CancelRequest(RequestHandle request);
  /external/chromium/net/url_request/
url_request_simple_job.h 20 explicit URLRequestSimpleJob(URLRequest* request);
  /external/chromium/webkit/glue/
resource_fetcher.cc 33 // can do a http request and ignore the results).
51 WebURLRequest request(url_);
52 request.setTargetType(target_type_);
53 frame->dispatchWillSendRequest(request);
56 loader_->loadAsynchronously(request, this);
  /external/chromium_org/android_webview/browser/
aw_login_delegate.h 25 net::URLRequest* request);
  /external/chromium_org/android_webview/browser/net/
aw_url_request_job_factory.h 22 // the request.
34 net::URLRequest* request,
  /external/chromium_org/android_webview/native/
intercepted_request_data_impl.h 29 net::URLRequest* request,

Completed in 647 milliseconds

<<31323334353637383940>>