HomeSort by relevance Sort by last modified time
    Searched refs:request (Results 551 - 575 of 1669) sorted by null

<<21222324252627282930>>

  /frameworks/av/services/camera/libcameraservice/
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;
  /frameworks/base/core/java/android/webkit/
CertTool.java 58 NetscapeCertRequest request = new NetscapeCertRequest(challenge, local
60 request.sign(pair.getPrivate());
61 byte[] signed = request.toASN1Primitive().getEncoded(ASN1Encoding.DER);
  /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...]
  /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/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/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...]
  /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/smack/src/org/jivesoftware/smackx/filetransfer/
IncomingFileTransfer.java 53 protected IncomingFileTransfer(FileTransferRequest request,
55 super(request.getRequestor(), request.getStreamID(), transferNegotiator);
56 this.recieveRequest = request;
202 throw new XMPPException("Request timed out", e);
  /external/smack/src/org/jivesoftware/smackx/workgroup/agent/
Agent.java 43 AgentWorkgroups request = new AgentWorkgroups(agentJID); local
44 request.setTo(serviceJID);
45 PacketCollector collector = connection.createPacketCollector(new PacketIDFilter(request.getPacketID()));
46 // Send the request
47 connection.sendPacket(request);
90 // Send the request
123 // Send the request
  /external/webkit/Source/WebCore/bindings/scripts/test/GObject/
WebKitDOMTestInterface.cpp 59 WebCore::TestInterface* core(WebKitDOMTestInterface* request)
61 g_return_val_if_fail(request, 0);
63 WebCore::TestInterface* coreObject = static_cast<WebCore::TestInterface*>(WEBKIT_DOM_OBJECT(request)->coreObject);
132 static void webkit_dom_test_interface_init(WebKitDOMTestInterface* request)
WebKitDOMTestMediaQueryListListener.cpp 57 WebCore::TestMediaQueryListListener* core(WebKitDOMTestMediaQueryListListener* request)
59 g_return_val_if_fail(request, 0);
61 WebCore::TestMediaQueryListListener* coreObject = static_cast<WebCore::TestMediaQueryListListener*>(WEBKIT_DOM_OBJECT(request)->coreObject);
130 static void webkit_dom_test_media_query_list_listener_init(WebKitDOMTestMediaQueryListListener* request)
  /external/webkit/Source/WebCore/html/parser/
XSSFilter.cpp 220 DEFINE_STATIC_LOCAL(String, consoleMessage, ("Refused to execute a JavaScript script. Source code of script found within request.\n"));
468 // request. If the resource has a query string, we're more suspicious,

Completed in 3667 milliseconds

<<21222324252627282930>>