/prebuilts/ndk/android-ndk-r7/platforms/android-9/arch-arm/usr/include/linux/mmc/ |
mmc.h | 19 struct request;
|
/prebuilts/ndk/android-ndk-r7/platforms/android-9/arch-x86/usr/include/linux/mmc/ |
host.h | 70 void (*request)(struct mmc_host *host, struct mmc_request *req); member in struct:mmc_host_ops
|
mmc.h | 19 struct request;
|
/bootable/bootloader/legacy/arch_msm7k/ |
hsusb.c | 220 #define SETUP(type,request) (((type) << 8) | (request)) 230 s.type, s.request, s.value, s.index, s.length, 231 reqname(s.request)); 233 switch(SETUP(s.type,s.request)) { 312 reqname(s.request), 313 s.type, s.request, s.value, s.index, s.length);
|
/external/chromium/chrome/browser/ui/login/ |
login_prompt.cc | 37 void ResetLoginHandlerForRequest(net::URLRequest* request) { 39 ResourceDispatcherHost::InfoForRequest(request); 74 net::URLRequest* request) 78 request_(request), 84 DCHECK(request_) << "LoginHandler constructed with NULL request"; 186 // Give up on auth if the request was cancelled. 364 // Verify that CancelAuth doesn't destroy the request via our delegate. 398 // The request may have been cancelled, or it may be for a renderer 476 net::URLRequest* request) { 477 LoginHandler* handler = LoginHandler::Create(auth_info, request); [all...] |
/external/chromium/chrome/common/net/ |
url_fetcher.cc | 62 virtual void OnResponseStarted(net::URLRequest* request); 63 virtual void OnReadCompleted(net::URLRequest* request, int bytes_read); 102 // Deletes the request, removes it from the registry, and removes the 120 RequestType request_type_; // What type of request is this? 127 // on which the request IO happens. 128 scoped_ptr<net::URLRequest> request_; // The actual request this wraps 130 int response_code_; // HTTP status code for the request 131 std::string data_; // Results of the request 135 // Cookie/cache info for the request 145 // Used to determine how long to wait before making a request or doing [all...] |
/frameworks/base/obex/javax/obex/ |
ServerOperation.java | 45 * <STRONG>Request Codes</STRONG> There are four different request codes that 46 * are in this class. 0x02 is a PUT request that signals that the request is not 47 * complete and requires an additional OBEX packet. 0x82 is a PUT request that 48 * says that request is complete. In this case, the server can begin sending the 49 * response. The 0x03 is a GET request that signals that the request is not 51 * that it is done with its request. TODO: Extend the ClientOperation and reuse 96 * @param request the initial request that was received from the clien [all...] |
/libcore/luni/src/main/java/java/net/ |
PlainSocketImpl.java | 49 // host connected to in its request. 336 * Request a SOCKS connection to the application server given. If the 337 * request fails to complete successfully, an exception is thrown. 399 // Use the last connected address and port in the bind request. 424 * Send a SOCKS V4 request. 427 Socks4Message request = new Socks4Message(); local 428 request.setCommandOrResult(command); 429 request.setPort(port); 430 request.setIP(address.getAddress()); 431 request.setUserId("default") [all...] |
/external/chromium/chrome/browser/net/ |
predictor.cc | 76 // Make a note that this is a speculative resolve request. This allows us 500 LookupRequest* request = new LookupRequest(this, host_resolver_, url); local 501 int status = request->Start(); 504 pending_lookups_.insert(request); 511 LookupFinished(request, url, status == net::OK); 512 delete request; 535 void Predictor::OnLookupFinished(LookupRequest* request, const GURL& url, 539 LookupFinished(request, url, found); 540 pending_lookups_.erase(request); 541 delete request; [all...] |
/external/v8/test/mjsunit/ |
debug-changebreakpoint.js | 37 var base_request = '"seq":0,"type":"request","command":"changebreakpoint"' 49 var request = '{' + base_request + ',"arguments":' + arguments + '}' 50 var json_response = dcp.processDebugJSONRequest(request); 66 var request = '{' + base_request + '}' 67 var response = safeEval(dcp.processDebugJSONRequest(request));
|
debug-setexceptionbreak.js | 42 var base_request = '"seq":0,"type":"request","command":"setexceptionbreak"' 54 var request = '{' + base_request + ',"arguments":' + arguments + '}' 55 var json_response = dcp.processDebugJSONRequest(request); 73 var request = '{' + base_request + '}' 74 var response = safeEval(dcp.processDebugJSONRequest(request));
|
/external/webkit/Source/WebKit2/WebProcess/Downloads/mac/ |
DownloadMac.mm | 41 request:(NSURLRequest *)request 144 request:m_request.nsURLRequest() 221 - (NSURLRequest *)download:(NSURLDownload *)download willSendRequest:(NSURLRequest *)request redirectResponse:(NSURLResponse *)redirectResponse 223 return request;
|
/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/chrome/browser/safe_browsing/ |
client_side_detection_service_unittest.cc | 68 ClientPhishingRequest* request = new ClientPhishingRequest(); local 69 request->set_url(phishing_url.spec()); 70 request->set_client_score(score); 71 request->set_is_phishing(true); // client thinks the URL is phishing. 73 request, 247 // This request will fail
|
/external/chromium/net/http/ |
http_stream_factory_impl_unittest.cc | 112 HttpRequestInfo request; local 113 request.method = "GET"; 114 request.url = test.ssl ? GURL("https://www.google.com") : 116 request.load_flags = 0; 122 test.num_streams, request, ssl_config, BoundNetLog());
|
http_transaction_unittest.cc | 160 void TestTransactionConsumer::Start(const net::HttpRequestInfo* request, 163 int result = trans_->Start(request, this, net_log); 221 int MockNetworkTransaction::Start(const net::HttpRequestInfo* request, 224 const MockTransaction* t = FindMockTransaction(request->url); 232 (t->handler)(request, &resp_status, &resp_headers, &resp_data);
|
/external/webkit/Source/WebKit2/WebProcess/WebPage/mac/ |
WebPageMac.mm | 617 NSMutableURLRequest* request = [[NSMutableURLRequest alloc] initWithURL:url]; 618 [request setValue:(NSString*)userAgent() forHTTPHeaderField:@"User-Agent"]; 622 cachedResponse = WKCachedResponseForRequest(storageSession, request); 625 cachedResponse = [[NSURLCache sharedURLCache] cachedResponseForRequest:request]; 626 [request release]; 633 NSMutableURLRequest* request = [[NSMutableURLRequest alloc] initWithURL:url]; 634 [request setValue:(NSString*)userAgent() forHTTPHeaderField:@"User-Agent"]; 638 cachedResponse = WKCachedResponseForRequest(storageSession, request); 641 cachedResponse = [[NSURLCache sharedURLCache] cachedResponseForRequest:request]; 642 [request release] [all...] |
/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...] |
/external/webkit/Source/WebCore/loader/ |
DocumentLoader.cpp | 140 const ResourceRequest& DocumentLoader::request() const function in class:WebCore::DocumentLoader 145 ResourceRequest& DocumentLoader::request() function in class:WebCore::DocumentLoader 152 return request().url(); 619 bool DocumentLoader::scheduleArchiveLoad(ResourceLoader* loader, const ResourceRequest& request, const KURL& originalURL) 623 if (request.url() == originalURL) 698 return request().url(); 824 const ResourceRequest& request = originalRequest(); local 827 m_mainResourceLoader->identifier(), this, request, oldPage); 835 (*it)->identifier(), this, request, oldPage);
|
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/ |
BluetoothOppObexClientSession.java | 280 /* this is invalid request */ 341 HeaderSet request; local 342 request = new HeaderSet(); 343 request.setHeader(HeaderSet.NAME, fileInfo.mFileName); 344 request.setHeader(HeaderSet.TYPE, fileInfo.mMimetype); 346 applyRemoteDeviceQuirks(request, fileInfo); 350 request.setHeader(HeaderSet.LENGTH, fileInfo.mLength); 360 putOperation = (ClientOperation)mCs.put(request); 569 public static void applyRemoteDeviceQuirks(HeaderSet request, BluetoothOppSendFileInfo info) { 596 request.setHeader(HeaderSet.NAME, newFilename) [all...] |
BluetoothOppObexServerSession.java | 169 HeaderSet request; local 195 request = op.getReceivedHeader(); 196 if (V) Constants.logHeader(request); 197 name = (String)request.getHeader(HeaderSet.NAME); 198 length = (Long)request.getHeader(HeaderSet.LENGTH); 199 mimeType = (String)request.getHeader(HeaderSet.TYPE); 404 Log.i(TAG, "Rejected incoming request"); 538 public int onConnect(HeaderSet request, HeaderSet reply) { 541 if (V) Constants.logHeader(request); 543 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 */ 351 HttpRequest* request; member in struct:__anon11242 376 http_request_free(conn->request); 427 /* read the first line of a given HTTP request. returns -1/0/+1 * 482 HttpRequest* request = conn->request; local [all...] |
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/ |
BluetoothPbapObexServer.java | 132 // point of the request. Only apply to "mch" case. 180 public int onConnect(final HeaderSet request, HeaderSet reply) { 181 if (V) logHeader(request); 183 byte[] uuid = (byte[])request.getHeader(HeaderSet.TARGET); 206 byte[] remote = (byte[])request.getHeader(HeaderSet.WHO); 241 public int onAbort(HeaderSet request, HeaderSet reply) { 249 if (D) Log.d(TAG, "onPut(): not support PUT request."); 254 public int onSetPath(final HeaderSet request, final HeaderSet reply, final boolean backup, 256 if (V) logHeader(request); 262 tmp_path = (String)request.getHeader(HeaderSet.NAME) 310 HeaderSet request = null; local [all...] |
/external/chromium/net/socket/ |
socks5_client_socket_unittest.cc | 178 std::string request(kSOCKS5DomainRequest, arraysize(kSOCKS5DomainRequest)); 179 request.push_back(hostname.size()); 180 request.append(hostname); 181 request.append(reinterpret_cast<const char*>(&kNwPort), sizeof(kNwPort)); 186 MockWrite(false, request.data(), request.size()) 240 // Test for partial greet request write 300 // Test for partial handshake request write.
|