HomeSort by relevance Sort by last modified time
    Searched refs:request (Results 1276 - 1300 of 1458) sorted by null

<<515253545556575859

  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-php/
popuplib.js 158 // (Example for attribute exchange request for email and name,
209 //Assembles the OpenID request from customizable parameters
  /external/iptables/libipq/
libipq.c 359 int ipq_ctl(const struct ipq_handle *h, int request, ...)
  /external/oprofile/events/x86-64/hammer/
unit_masks 106 0x08 Tag snoop request
107 0x10 Cancelled request
  /external/webkit/Source/WebKit/chromium/src/
ContextMenuClientImpl.cpp 86 return ds->hasUnreachableURL() ? ds->unreachableURL() : ds->request().url();
  /frameworks/compile/mclinker/lib/Support/
MemoryArea.cpp 186 MemoryRegion* MemoryArea::request(size_t pOffset, size_t pLength) function in class:MemoryArea
199 // request a region larger than the file.
  /system/security/keystore/
keystore.cpp 1417 int8_t request; local
    [all...]
  /external/speex/libspeex/
jitter.c 783 EXPORT int jitter_buffer_ctl(JitterBuffer *jitter, int request, void *ptr)
786 switch(request)
838 speex_warning_int("Unknown jitter_buffer_ctl request: ", request);
  /external/webkit/Source/WebCore/rendering/
RenderFrameSet.cpp 163 bool RenderFrameSet::nodeAtPoint(const HitTestRequest& request, HitTestResult& result,
169 bool inside = RenderBox::nodeAtPoint(request, result, x, y, tx, ty, action)
173 && !request.readOnly() && !result.innerNode()) {
RootInlineBox.cpp 192 bool RootInlineBox::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int x, int y, int tx, int ty, int lineTop, int lineBottom)
195 if (ellipsisBox()->nodeAtPoint(request, result, x, y, tx, ty, lineTop, lineBottom)) {
200 return InlineFlowBox::nodeAtPoint(request, result, x, y, tx, ty, lineTop, lineBottom);
    [all...]
  /external/webkit/Tools/DumpRenderTree/qt/
DumpRenderTreeQt.cpp 324 bool WebPage::acceptNavigationRequest(QWebFrame* frame, const QNetworkRequest& request, NavigationType type)
327 QString url = QString::fromUtf8(request.url().toEncoded());
359 return QWebPage::acceptNavigationRequest(frame, request, type);
    [all...]
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
SettingsProvider.java 344 public Bundle call(String method, String request, Bundle args) {
346 return lookupValue("system", sSystemCache, request);
349 return lookupValue("secure", sSecureCache, request);
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/calllog/
CallLogAdapter.java 110 * A request for contact details for the given number.
155 * Each request is made of a phone number to look up, and the contact info currently stored in
321 // Restart the request-processing thread after the next draw.
327 * Enqueues a request to look up the contact details for the given phone number.
338 ContactInfoRequest request = new ContactInfoRequest(number, countryIso, callLogInfo); local
340 if (!mRequests.contains(request)) {
341 mRequests.add(request);
403 // Obtain next request, if any is available.
413 // Process the request. If the lookup succeeds, schedule a
424 // Wait until another request is available, or until thi
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/vcard/
ImportVCardActivity.java 108 * Notification id used when error happened before sending an import request to VCardServer.
192 Log.i(LOG_TAG, "Send an import request");
212 * Caches given vCard files into a local directory, and sends actual import request to
337 final ImportRequest request; local
339 request = constructImportRequest(null, localDataUri, displayName);
353 requests.add(request);
517 Log.i(LOG_TAG, "Cancel request has come. Abort caching vCard.");
    [all...]
  /packages/apps/Settings/src/com/android/settings/
RadioInfo.java 698 HttpGet request = new HttpGet("http://www.google.com"); local
699 HttpResponse response = client.execute(request);
705 request.abort();
    [all...]
  /packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/
PublicApiFunctionalTest.java 92 RecordedRequest request = takeRequest(); local
93 assertEquals("GET", request.getMethod());
94 assertEquals(REQUEST_PATH, request.getPath());
148 takeRequest(); // get the first request out of the queue
471 .setAllowedNetworkTypes(DownloadManager.Request.NETWORK_WIFI));
606 * 1) Request to REQUEST_PATH with 3xx response redirecting to another URI
607 * 2) Request to REDIRECTED_PATH with interrupted partial response
608 * 3) Resume request to complete download
609 * @return the last request sent to the server, resuming after the interruption
  /external/webkit/PerformanceTests/SunSpider/tests/parse-only/
prototype-1.6.0.3.js 1150 dispatch: function(callback, request, transport, json) {
1154 responder[callback].apply(responder, [request, transport, json]);
1190 Ajax.Request = Class.create(Ajax.Base, {
1196 this.request(url);
1199 request: function(url) {
    [all...]
  /external/webkit/Source/WebKit/win/
WebView.cpp     [all...]
  /external/chromium/net/http/
http_cache_transaction.cc 47 // If the request includes one of these request headers, then avoid caching
66 // If the request includes one of these request headers, then avoid reusing
74 // If the request includes one of these request headers, then force our
213 int HttpCache::Transaction::Start(const HttpRequestInfo* request,
216 DCHECK(request);
228 SetRequest(net_log, request);
598 // Downgrade to UPDATE if the request has been externally conditionalized
    [all...]
  /external/e2fsprogs/debugfs/
debugfs.c 2148 char *request = 0; local
    [all...]
  /external/v8/test/mjsunit/
unicode-test.js     [all...]
  /external/chromium/third_party/libevent/
http.c 375 * Create the headers needed for an HTTP request
385 /* Generate request line */
390 /* Add the content length on a post request if missing */
502 /* if the request asked for a close, we send a close, too */
517 * Depending if this is a HTTP request or response, we might need to
534 * For a request, we add the POST data, for a reply, this
572 /* Generate request file */
665 /* We are trying the next request that was queued on us */
713 * - If this is an incoming connection, we've just processed the request;
741 * and deal with the next request
1186 struct evhttp_request *request = TAILQ_FIRST(&evcon->requests); local
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
WebPage.cpp 444 void WebPage::loadURLRequest(const ResourceRequest& request, const SandboxExtension::Handle& sandboxExtensionHandle)
447 m_mainFrame->coreFrame()->loader()->load(request, false);
452 ResourceRequest request(baseURL);
454 m_mainFrame->coreFrame()->loader()->load(request, substituteData, false);
    [all...]
  /external/webkit/Source/WebKit/mac/WebView/
WebView.mm     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.commons.el_1.0.0.v201004212143.jar 
org.eclipse.debug.core_3.6.0.v20100519.jar 

Completed in 2572 milliseconds

<<515253545556575859