/external/chromium/net/http/ |
http_transaction_unittest.h | 46 typedef void (*MockTransactionHandler)(const net::HttpRequestInfo* request, 96 // mock http request 111 void Start(const net::HttpRequestInfo* request, 151 // find data for the request URL. It supports IO operations that complete 159 virtual int Start(const net::HttpRequestInfo* request,
|
http_auth_handler_digest.h | 88 const HttpRequestInfo* request, 103 // Hashes are run for every request. 141 // Extract the method and path of the request, as needed by 143 void GetRequestMethodAndPath(const HttpRequestInfo* request,
|
/external/chromium/net/url_request/ |
url_request.cc | 66 URLRequest* request, 72 URLRequest* request) { 79 void URLRequest::Delegate::OnReceivedRedirect(URLRequest* request, 84 void URLRequest::Delegate::OnAuthRequired(URLRequest* request, 86 request->CancelAuth(); 90 URLRequest* request, 92 request->ContinueWithCertificate(NULL); 95 void URLRequest::Delegate::OnSSLCertificateError(URLRequest* request, 98 request->Cancel(); 101 void URLRequest::Delegate::OnGetCookies(URLRequest* request, [all...] |
/external/chromium/third_party/libjingle/source/talk/base/ |
socketadapters.h | 214 void HandleHello(ByteBuffer* request); 216 void HandleAuth(ByteBuffer* request); 218 void HandleConnect(ByteBuffer* request);
|
/external/e2fsprogs/lib/ss/ |
listen.c | 115 "Unknown request \"%s\". Type \"?\" for a request list.", 152 ss_request_entry *request; local 166 request = get_request(*rqtbl, curr_rqt++); 167 name = request->command_names;
|
/external/mockwebserver/src/test/java/com/google/mockwebserver/ |
MockWebServerTest.java | 54 RecordedRequest request = server.takeRequest(); local 55 assertEquals("GET / HTTP/1.1", request.getRequestLine()); 56 assertTrue(request.getHeaders().contains("Accept-Language: en-US"));
|
/external/v8/samples/ |
process.cc | 40 // These interfaces represent an existing request processing interface. 46 * A simplified http request. 58 * The abstract superclass of http request processors. 69 // Process a single request. 76 * An http request processor that is scriptable using JavaScript. 103 // Callbacks that access the individual fields of request objects. 243 bool JsHttpRequestProcessor::Process(HttpRequest* request) { 251 // Wrap the C++ request object in a JavaScript wrapper 252 Handle<Object> request_obj = WrapRequest(request); 258 // and one argument, the request 440 HttpRequest* request = UnwrapRequest(info.Holder()); local 452 HttpRequest* request = UnwrapRequest(info.Holder()); local 460 HttpRequest* request = UnwrapRequest(info.Holder()); local 468 HttpRequest* request = UnwrapRequest(info.Holder()); local [all...] |
/external/webkit/Source/WebCore/storage/ |
IDBDatabase.cpp | 108 RefPtr<IDBVersionChangeRequest> request = IDBVersionChangeRequest::create(context, IDBAny::create(this), version); local 109 m_backend->setVersion(version, request, m_databaseCallbacks, ec); 110 return request; 172 // get a handle to us or any derivative transaction/request object and any
|
/external/webkit/Source/WebKit/android/jni/ |
WebCoreFrameBridge.h | 98 // Used to determine whether the WebView should handle the given request. 100 virtual bool canHandleRequest(const WebCore::ResourceRequest& request); 124 void maybeSavePassword(WebCore::Frame* frame, const WebCore::ResourceRequest& request); 143 jbyteArray getPostData(const WebCore::ResourceRequest& request);
|
/external/webkit/Source/WebKit/chromium/public/ |
WebFrameClient.h | 135 // Query if the specified request can be handled. 137 WebFrame*, const WebURLRequest& request) { return true; } 141 WebFrame*, const WebURLRequest& request) { return WebURLError(); } 145 WebFrame*, const WebURLRequest& request) { return WebURLError(); } 249 // An identifier was assigned to the specified request. The client 254 // Remove the association between an identifier assigned to a request if 258 // A request is about to be sent out, and the client may modify it. Request 259 // is writable, and changes to the URL, for example, will change the request 260 // made. If this request is the result of a redirect, then redirectRespons [all...] |
/external/webkit/Tools/DumpRenderTree/win/ |
HistoryDelegate.cpp | 102 COMPtr<IWebURLRequest> request; local 103 if (FAILED(navigationData->originalRequest(&request))) 107 if (FAILED(request->HTTPMethod(&httpMethodBSTR)))
|
/external/webkit/Tools/TestWebKitAPI/Tests/WebKit2/ |
PageLoadBasic.cpp | 90 static void decidePolicyForNavigationAction(WKPageRef page, WKFrameRef frame, WKFrameNavigationType navigationType, WKEventModifiers modifiers, WKEventMouseButton mouseButton, WKURLRequestRef request, WKFramePolicyListenerRef listener, WKTypeRef userData, const void* clientInfo) 101 static void decidePolicyForNewWindowAction(WKPageRef page, WKFrameRef frame, WKFrameNavigationType navigationType, WKEventModifiers modifiers, WKEventMouseButton mouseButton, WKURLRequestRef request, WKStringRef frameName, WKFramePolicyListenerRef listener, WKTypeRef userData, const void* clientInfo) 106 static void decidePolicyForResponse(WKPageRef page, WKFrameRef frame, WKURLResponseRef response, WKURLRequestRef request, WKFramePolicyListenerRef listener, WKTypeRef userData, const void* clientInfo)
|
/frameworks/av/media/libaah_rtp/ |
aah_tx_sender.cpp | 335 // initial 4-byte ID of a retry request packet 341 // initial 4-byte ID of a fast start request packet 391 RetryPacket request; local 395 ssize_t result = recvfrom(mSender->mSocket, &request, sizeof(request), 0, 407 uint32_t host_request_id = ntohl(request.id); 410 ALOGW("%s received retry request with bogus ID (%08x)", 415 Endpoint endpoint(request.endpointIP, request.endpointPort); 423 // so NAK the entire request [all...] |
/frameworks/base/core/java/com/android/internal/widget/ |
EditableInputConnection.java | 152 public ExtractedText getExtractedText(ExtractedTextRequest request, int flags) { 155 if (mTextView.extractText(request, et)) { 157 mTextView.setExtracting(request);
|
/frameworks/base/core/tests/coretests/src/android/app/ |
DownloadManagerStressTest.java | 20 import android.app.DownloadManager.Request; 83 Request request = new Request(uri); local 84 request.setTitle(String.format("%s--%d", DEFAULT_FILENAME + i, i)); 89 long requestID = mDownloadManager.enqueue(request);
|
/external/chromium/chrome/browser/debugger/ |
devtools_netlog_observer.cc | 79 LOG(WARNING) << "The raw headers observer url request count has grown " 87 LOG(WARNING) << "The encoded data length observer url request count " 141 LOG(WARNING) << "The url request observer socket count has grown " 240 void DevToolsNetLogObserver::PopulateResponseInfo(net::URLRequest* request, 242 if (!(request->load_flags() & net::LOAD_REPORT_RAW_HEADERS)) 245 uint32 source_id = request->net_log().source().id; 256 net::URLRequest* request) { 257 if (!(request->load_flags() & net::LOAD_REPORT_RAW_HEADERS)) 260 uint32 source_id = request->net_log().source().id;
|
/external/protobuf/java/src/test/java/com/google/protobuf/ |
ServiceTest.java | 98 /** Tests Service.get{Request,Response}Prototype(). */ 177 MessageWithNoOuter request = MessageWithNoOuter.getDefaultInstance(); local 187 impl.foo(EasyMock.same(controller), EasyMock.same(request), 193 service.callMethod(fooMethod, controller, request, callback); 207 MessageWithNoOuter request = MessageWithNoOuter.getDefaultInstance(); local 216 EasyMock.expect(impl.foo(EasyMock.same(controller), EasyMock.same(request))) 222 service.callBlockingMethod(fooMethod, controller, request);
|
/external/v8/src/ |
d8-debug.cc | 113 // Convert the debugger command to a JSON debugger request. 114 Handle<Value> request = local 123 if (request->IsUndefined()) { 134 // request, invoke the JSON request and convert the JSON respose to a text 138 args[0] = request; 308 // Convert the debugger command to a JSON debugger request. 310 Handle<Value> request = local 320 if (request->IsUndefined()) { 325 // Send the JSON debugger request [all...] |
/hardware/ti/wlan/wl1271/stad/src/Data_link/ |
rx.c | 103 static TI_STATUS rxData_addRxDataFilter(TI_HANDLE hRxData, TRxDataFilterRequest* request); 104 static TI_STATUS rxData_removeRxDataFilter(TI_HANDLE hRxData, TRxDataFilterRequest* request); 226 /* register CB's for request buffer and receive CB to the lower layers */ 563 static int findFilterRequest(TI_HANDLE hRxData, TRxDataFilterRequest* request) 572 if ((pRxData->filterRequests[i].offset == request->offset) && 573 (pRxData->filterRequests[i].maskLength == request->maskLength) && 574 (pRxData->filterRequests[i].patternLength == request->patternLength)) 576 if ((os_memoryCompare(pRxData->hOs, pRxData->filterRequests[i].mask, request->mask, request->maskLength) == 0) && 577 (os_memoryCompare(pRxData->hOs, pRxData->filterRequests[i].pattern, request->pattern, request->patternLength) == 0) [all...] |
/packages/apps/Contacts/src/com/android/contacts/vcard/ |
ExportProcessor.java | 43 * Class for processing one export request from a user. Dropped after exporting requested Uri(s). 44 * {@link VCardService} will create another object when there is another export request. 97 final ExportRequest request = mExportRequest; local 103 Log.i(LOG_TAG, "Export request is cancelled before handling the request"); 106 final Uri uri = request.destUri; 121 final String exportType = request.exportType; 167 Log.i(LOG_TAG, "Export request is cancelled during composing vCard"); 191 Log.i(LOG_TAG, "Successfully finished exporting vCard " + request.destUri); 194 Log.d(LOG_TAG, "Ask MediaScanner to scan the file: " + request.destUri.getPath()) [all...] |
/system/core/fastboot/ |
usb_osx.c | 69 IOUSBFindInterfaceRequest request; local 83 request.bInterfaceClass = kIOUSBFindInterfaceDontCare; 84 request.bInterfaceSubClass = kIOUSBFindInterfaceDontCare; 85 request.bInterfaceProtocol = kIOUSBFindInterfaceDontCare; 86 request.bAlternateSetting = kIOUSBFindInterfaceDontCare; 96 kr = (*dev)->CreateInterfaceIterator(dev, &request, &iterator);
|
/cts/tests/tests/webkitsecurity/assets/ |
clear-watch-invalid-id-crash.js | 1 description("Tests for a crash when clearWatch() is called with a zero ID.<br><br>We call clearWatch() with a request in progress then navigate the page. This accesses the watchers map during cleanup and triggers the crash. This page should not be visible when the test completes.");
|
/external/bluetooth/glib/gio/win32/ |
gwinhttpvfs.h | 97 HINTERNET request, 102 HINTERNET request,
|
/external/chromium/chrome/browser/ssl/ |
ssl_client_auth_handler.cc | 17 net::URLRequest* request, 19 : request_(request), 80 // request_ could have been NULLed if the request was cancelled while the
|
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/ |
main.py | 40 """Fetches the license for a given user by making an OAuth signed request 67 resp, content = client.request(url, 'GET') 108 """Request handler class.""" 130 'user_logout': users.create_logout_url(self.request.uri),
|