/external/chromium/net/http/ |
http_stream_factory_impl_job.h | 44 // Start initiates the process of creating a new HttpStream. |request| will be 46 void Start(Request* request); 48 // Preconnect will attempt to request |num_streams| sockets from the 69 // Used to detach the Job from |request|. 70 void Orphan(const Request* request); 82 // Indicates whether or not this Job has been orphaned by a Request. 96 // http request on establishing a new npn-spdy connection would incur extra 156 // Set the motivation for this request onto the underlying socket [all...] |
/external/chromium/net/url_request/ |
url_request_http_job.h | 32 static URLRequestJob* Factory(URLRequest* request, 36 explicit URLRequestHttpJob(URLRequest* request); 91 // Keep a reference to the url request context to be sure it's not deleted 171 // The request time may not be available when we are being destroyed, so we
|
url_request_job.h | 35 explicit URLRequestJob(URLRequest* request); 37 // Returns the request that owns this job. THIS POINTER MAY BE NULL if the 38 // request was destroyed. 39 URLRequest* request() const { function in class:net::URLRequestJob 47 // Sets extra request headers for Job types that support request headers. 77 // Called to detach the request from this Job. Results in the Job being 78 // killed off eventually. The job must not use the request pointer any more. 87 // Stops further caching of this request, if any. For more info, see 97 // Called to fetch the charset for this request. Only makes sense for som [all...] |
/external/speex/libspeex/ |
modes.c | 358 EXPORT int speex_mode_query(const SpeexMode *mode, int request, void *ptr) 360 return mode->query(mode->mode, request, ptr);
|
nb_celp.h | 197 int nb_encoder_ctl(void *state, int request, void *ptr); 200 int nb_decoder_ctl(void *state, int request, void *ptr);
|
/external/v8/test/mjsunit/ |
debug-listbreakpoints.js | 55 var base_request = '"seq":0,"type":"request","command":"listbreakpoints"' 68 var base_request = '"seq":0,"type":"request","command":"clearbreakpoint"' 70 var request = '{' + base_request + ',"arguments":' + arguments + '}' 71 var json_response = dcp.processDebugJSONRequest(request); 76 var base_request = '"seq":0,"type":"request","command":"setexceptionbreak"' 78 var request = '{' + base_request + ',"arguments":' + arguments + '}' 79 var json_response = dcp.processDebugJSONRequest(request); 85 var request = '{' + base_request + '}' 86 var json_response = dcp.processDebugJSONRequest(request);
|
/external/v8/test/mjsunit/regress/ |
regress-1639-2.js | 35 var request = JSON.stringify(cmd); 36 var response = dcp.processDebugJSONRequest(request); 60 type : "request", 71 type : "request",
|
regress-1853.js | 42 var request = JSON.stringify(cmd); 43 var response = dcp.processDebugJSONRequest(request); 50 type: "request", 63 type: "request",
|
/external/valgrind/main/gdbserver_tests/ |
mcinvokeRU.stdoutB.exp | 23 monitor command request to kill this process
|
mcinvokeWS.stdoutB.exp | 23 monitor command request to kill this process
|
/external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/ |
callback-to-deleted-context.js | 1 description("Tests that when a Geolocation request is made from a remote frame, and that frame's script context goes away before the Geolocation callback is made, the callback is not made. If the callback is attempted, a crash will occur.");
|
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.");
|
disconnected-frame-already.js | 1 description("Tests that when a request is made on a Geolocation object after its frame has been disconnected, no callbacks are made and no crash occurs.");
|
disconnected-frame.js | 1 description("Tests that when a request is made on a Geolocation object and its Frame is disconnected before a callback is made, the error callback is invoked with the correct error message.");
|
/external/webkit/Source/WebCore/rendering/ |
RenderTextControlMultiLine.cpp | 63 bool RenderTextControlMultiLine::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int x, int y, int tx, int ty, HitTestAction hitTestAction) 65 if (!RenderTextControl::nodeAtPoint(request, result, x, y, tx, ty, hitTestAction))
|
/external/webkit/Source/WebCore/rendering/svg/ |
RenderSVGContainer.cpp | 159 bool RenderSVGContainer::nodeAtFloatPoint(const HitTestRequest& request, HitTestResult& result, const FloatPoint& pointInParent, HitTestAction hitTestAction) 171 if (child->nodeAtFloatPoint(request, result, localPoint, hitTestAction)) {
|
RenderSVGForeignObject.cpp | 145 bool RenderSVGForeignObject::nodeAtFloatPoint(const HitTestRequest& request, HitTestResult& result, const FloatPoint& pointInParent, HitTestAction hitTestAction) 154 return RenderBlock::nodeAtPoint(request, result, roundedLocalPoint.x(), roundedLocalPoint.y(), 0, 0, hitTestAction);
|
/external/webkit/Source/WebKit/mac/Plugins/Hosted/ |
HostedNetscapePluginStream.mm | 55 HostedNetscapePluginStream::HostedNetscapePluginStream(NetscapePluginInstanceProxy* instance, uint32_t streamID, NSURLRequest *request) 59 , m_request(AdoptNS, [request mutableCopy]) 60 , m_requestURL([request URL]) 63 if (SecurityOrigin::shouldHideReferrer([request URL], core([instance->pluginView() webFrame])->loader()->outgoingReferrer())) 176 // <rdar://problem/4470599> tracks a request for -[NSURLResponse expectedContentLength] to incorporate this logic.
|
/external/webkit/Source/WebKit/mac/Plugins/ |
WebNetscapePluginStream.h | 55 static PassRefPtr<WebNetscapePluginStream> create(NSURLRequest *request, NPP plugin, bool sendNotification, void* notifyData) 57 return adoptRef(new WebNetscapePluginStream(request, plugin, sendNotification, notifyData));
|
/external/webkit/Source/WebKit2/UIProcess/Downloads/ |
DownloadProxy.cpp | 86 void DownloadProxy::didStart(const ResourceRequest& request) 88 m_request = request;
|
/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/ |
test_results_uploader.py | 92 request = urllib2.Request(url, data, headers) 93 urllib2.urlopen(request)
|
/frameworks/av/media/mtp/ |
MtpDataPacket.h | 106 int read(struct usb_request *request); 107 int readData(struct usb_request *request, void* buffer, int length);
|
/frameworks/base/core/java/com/android/internal/view/ |
IInputContext.aidl | 39 void getExtractedText(in ExtractedTextRequest request, int flags, int seq,
|
/frameworks/native/include/utils/ |
Looper.h | 323 struct Request { 332 Request request; member in struct:android::Looper::Response 359 KeyedVector<int, Request> mRequests; // guarded by mLock 369 void pushResponse(int events, const Request& request);
|
/packages/apps/Exchange/exchange2/src/com/android/exchange/ |
EasResponse.java | 63 EmailClientConnectionManager connManager, HttpClient client, HttpUriRequest request) 67 HttpResponse response = client.execute(request);
|