HomeSort by relevance Sort by last modified time
    Searched refs:request (Results 476 - 500 of 816) sorted by null

<<11121314151617181920>>

  /external/v8/test/mjsunit/
debug-changebreakpoint.js 36 var base_request = '"seq":0,"type":"request","command":"changebreakpoint"'
48 var request = '{' + base_request + ',"arguments":' + arguments + '}'
49 var json_response = dcp.processDebugJSONRequest(request);
65 var request = '{' + base_request + '}'
66 var response = safeEval(dcp.processDebugJSONRequest(request));
debug-suspend.js 36 var base_backtrace_request = '"seq":0,"type":"request","command":"backtrace"'
37 var base_suspend_request = '"seq":0,"type":"request","command":"suspend"'
77 // Test simple suspend request.
  /external/webkit/WebCore/platform/graphics/gtk/
WebKitWebSourceGStreamer.cpp 348 GST_DEBUG_OBJECT(src, "Stopped request");
362 ResourceRequest request(url);
363 request.setTargetType(ResourceRequestBase::TargetIsMedia);
364 request.setAllowCookies(true);
368 request.setHTTPUserAgent("Quicktime/7.2.0");
373 request.setHTTPReferrer(document->documentURI());
377 loader->addExtraFieldsToSubresourceRequest(request);
384 request.setHTTPHeaderField("Range", val.get());
388 request.setHTTPHeaderField("icy-metadata", "1");
391 request.setHTTPHeaderField("transferMode.dlna", "Streaming")
    [all...]
  /frameworks/base/media/libstagefright/rtsp/
ARTSPConnection.cpp 68 const char *request, const sp<AMessage> &reply) {
70 msg->setString("request", request);
335 AString request; local
336 CHECK(msg->findString("request", &request));
339 ssize_t i = request.find("\r\n\r\n");
348 request.insert(cseqHeader, i + 2);
350 LOGV("%s", request.c_str());
353 while (numBytesSent < request.size())
    [all...]
  /external/apache-http/src/org/apache/http/impl/auth/
DigestScheme.java 98 //TODO: supply a real nonce-count, currently a server will interprete a repeated request as a replay
186 * Returns <tt>false</tt>. Digest authentication scheme is request based.
210 * @param request The request being authenticated
221 final HttpRequest request) throws AuthenticationException {
226 if (request == null) {
227 throw new IllegalArgumentException("HTTP request may not be null");
230 // Add method name and request-URI to the parameter map
231 getParameters().put("methodname", request.getRequestLine().getMethod());
232 getParameters().put("uri", request.getRequestLine().getUri())
    [all...]
  /external/chromium/net/proxy/
single_threaded_proxy_resolver_unittest.cc 33 RequestHandle* request,
41 EXPECT_TRUE(request == NULL);
48 // Return a success code which represents the request's order.
52 virtual void CancelRequest(RequestHandle request) {
122 RequestHandle* request,
130 query_url, results, callback, request, load_log);
156 // Start request 0.
164 // Wait for request 0 to finish.
213 // we queue up a dummy request after the PurgeMemory() call and wait until it
221 // Cancel a request which is in progress, and then cancel a request whic
    [all...]
  /external/chromium/net/socket/
socket_test_util.h 422 TestSocketRequest* request = new TestSocketRequest(&request_order_,
424 requests_.push_back(request);
425 int rv = request->handle()->Init(
426 group_name, socket_params, priority, request,
429 request_order_.push_back(request);
434 // and returns order in which that request completed, in range 1..n,
436 // if that request did not complete (for example was canceled).
socks5_client_socket_unittest.cc 165 std::string request(kSOCKS5DomainRequest, arraysize(kSOCKS5DomainRequest));
166 request.push_back(hostname.size());
167 request.append(hostname);
168 request.append(reinterpret_cast<const char*>(&kNwPort), sizeof(kNwPort));
173 MockWrite(false, request.data(), request.size())
224 // Test for partial greet request write
268 // Test for partial handshake request write.
  /external/blktrace/doc/
blktrace.tex 32 information about request queue operations up to user space. There are
419 \subsubsection{\label{sec:request-types}Request types}
520 \item[C -- complete] A previously issued request has been completed.
521 The output will detail the sector and size of that request, as well
524 \item[D -- issued] A request that previously resided on the block layer
527 \item[I -- inserted] A request is being sent to the io scheduler for
529 request is fully formed at this time.
544 \item[M -- back merge] A previously inserted request exists that ends
551 \item[G -- get request] To send any type of request to a block device
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/message/
MessageFactoryImpl.java 93 * Creates a new Request message of type specified by the method paramater,
94 * containing the URI of the Request, the mandatory headers of the message
121 public Request createRequest(javax.sip.address.URI requestURI,
150 * Creates a new Request message of type specified by the method paramater,
151 * containing the URI of the Request, the mandatory headers of the message
178 public Request createRequest(URI requestURI, String method,
188 + ", unable to create the request", 0);
208 * Creates a new Request message of type specified by the method paramater,
209 * containing the URI of the Request, the mandatory headers of the message.
210 * This new Request does not contain a body
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppObexClientSession.java 270 /* this is invalid request */
331 HeaderSet request; local
332 request = new HeaderSet();
333 request.setHeader(HeaderSet.NAME, fileInfo.mFileName);
334 request.setHeader(HeaderSet.TYPE, fileInfo.mMimetype);
336 applyRemoteDeviceQuirks(request, fileInfo);
340 request.setHeader(HeaderSet.LENGTH, fileInfo.mLength);
350 putOperation = (ClientOperation)mCs.put(request);
559 public static void applyRemoteDeviceQuirks(HeaderSet request, BluetoothOppSendFileInfo info) {
586 request.setHeader(HeaderSet.NAME, newFilename)
    [all...]
BluetoothOppObexServerSession.java 169 HeaderSet request; local
185 request = op.getReceivedHeader();
186 if (V) Constants.logHeader(request);
187 name = (String)request.getHeader(HeaderSet.NAME);
188 length = (Long)request.getHeader(HeaderSet.LENGTH);
189 mimeType = (String)request.getHeader(HeaderSet.TYPE);
388 Log.i(TAG, "Rejected incoming request");
517 public int onConnect(HeaderSet request, HeaderSet reply) {
520 if (V) Constants.logHeader(request);
522 byte[] uuid = (byte[])request.getHeader(HeaderSet.TARGET)
    [all...]
  /external/qemu/proxy/
proxy_http_rewriter.c 34 * - read the request header
35 * - rewrite the request's URI to use absolute URI
37 * - then read the rest of the request, and tunnel it to the
165 ** HTTP REQUEST AND REPLY
179 * request and the corresponding reply
182 HttpRequestType req_type; /* request type */
184 char* req_uri; /* the request URI */
344 HttpRequest* request; member in struct:__anon6523
368 http_request_free(conn->request);
419 /* read the first line of a given HTTP request. returns -1/0/+1 *
474 HttpRequest* request = conn->request; local
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapObexServer.java 133 // point of the request. Only apply to "mch" case.
184 public int onConnect(final HeaderSet request, HeaderSet reply) {
185 if (V) logHeader(request);
187 byte[] uuid = (byte[])request.getHeader(HeaderSet.TARGET);
210 byte[] remote = (byte[])request.getHeader(HeaderSet.WHO);
245 public int onAbort(HeaderSet request, HeaderSet reply) {
253 if (D) Log.d(TAG, "onPut(): not support PUT request.");
258 public int onSetPath(final HeaderSet request, final HeaderSet reply, final boolean backup,
260 if (V) logHeader(request);
266 tmp_path = (String)request.getHeader(HeaderSet.NAME)
314 HeaderSet request = null; local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
AuthenticationHelperImpl.java 48 import javax.sip.message.Request;
135 Request reoriginatedRequest = null;
137 * If the challenged request is part of a Dialog and the
138 * Dialog is confirmed the re-originated request should be
139 * generated as an in-Dialog request.
144 reoriginatedRequest = (Request) challengedRequest.clone();
147 * Re-originate the request by consulting the dialog. In particular
148 * the route set could change between the original request and the
167 // remove the branch id so that we could use the request in a new
190 // Remove all authorization headers from the request (we'll re-add the
    [all...]
  /external/webkit/WebKitTools/DumpRenderTree/mac/
ResourceLoadDelegate.mm 81 NSString *basePath = [[[[dataSource request] URL] path] stringByDeletingLastPathComponent];
114 - webView: (WebView *)wv identifierForInitialRequest: (NSURLRequest *)request fromDataSource: (WebDataSource *)dataSource
119 return [[request URL] _drt_descriptionSuitableForTestResult];
  /external/tcpdump/
print-smb.c 27 static int request = 0; variable
97 if (request)
115 if (request) {
183 if (request) {
205 if (request) {
344 if (request) {
405 if (request)
446 if (request) {
491 if (request) {
808 request = (buf[9] & 0x80) ? 0 : 1
    [all...]
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadThread.java 111 * Raised from methods called by run() to indicate that the current request should be stopped
115 * not to contain any PII, meaning it generally can't include any information about the request
163 Log.i(Constants.TAG, "Initiating request for download " + mInfo.mId);
164 HttpGet request = new HttpGet(state.mRequestUri); local
166 executeDownload(state, client, request);
171 request.abort();
172 request = null;
184 "Aborting request for download " + mInfo.mId + ": " + error.getMessage());
209 * Fully execute a single download request - setup and send the request, handle the response
    [all...]
  /external/webkit/WebKit/android/jni/
WebCoreFrameBridge.cpp 365 const WebCore::ResourceRequest& request,
373 loader, request.url().string().latin1().data());
375 WebCore::String method = request.httpMethod();
376 WebCore::HTTPHeaderMap headers = request.httpHeaderFields();
379 WebCore::String urlStr = request.url().string();
398 WebCore::FormData* formdata = request.httpBody();
462 switch (request.cachePolicy()) {
489 cacheMode, mainResource, request.getUserGesture(),
743 WebFrame::canHandleRequest(const WebCore::ResourceRequest& request)
749 if (equalIgnoringCase(request.httpMethod(), "POST")
    [all...]
  /device/samsung/crespo/alsa-lib/src/hwdep/
hwdep_hw.c 69 static int snd_hwdep_hw_ioctl(snd_hwdep_t *hwdep, unsigned int request, void * arg)
72 if (ioctl(hwdep->poll_fd, request, arg) < 0)
  /external/apache-http/src/org/apache/http/impl/client/
DefaultRedirectHandler.java 135 HttpRequest request = (HttpRequest) context.getAttribute( local
139 URI requestURI = new URI(request.getRequestLine().getUri());
  /external/chromium/base/
event_trace_provider_win.h 138 ULONG Callback(WMIDPREQUESTCODE request, PVOID buffer);
139 static ULONG WINAPI ControlCallback(WMIDPREQUESTCODE request, PVOID context,
  /external/chromium/net/url_request/
url_request_file_dir_job.cc 23 URLRequestFileDirJob::URLRequestFileDirJob(URLRequest* request,
25 : URLRequestJob(request),
  /external/webkit/LayoutTests/fast/dom/Geolocation/resources/
permission-denied-already-clear-watch.js 21 // Make another request, with permission already denied.
permission-denied-already-error.js 21 // Make another request, with permission already denied.

Completed in 732 milliseconds

<<11121314151617181920>>