HomeSort by relevance Sort by last modified time
    Searched refs:url (Results 201 - 225 of 2774) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/wpa_supplicant_8/src/wps/
http_client.h 27 char * http_client_url_parse(const char *url, struct sockaddr_in *dst,
35 struct http_client * http_client_url(const char *url,
44 char * http_link_update(char *url, const char *base);
  /libcore/luni/src/main/java/libcore/net/http/
HttpHandler.java 22 import java.net.URL;
28 @Override protected URLConnection openConnection(URL u) throws IOException {
32 @Override protected URLConnection openConnection(URL url, Proxy proxy) throws IOException {
33 if (url == null || proxy == null) {
34 throw new IllegalArgumentException("url == null || proxy == null");
36 return new HttpURLConnectionImpl(url, getDefaultPort(), proxy);
  /libcore/support/src/test/java/tests/support/
Support_GetLocal.java 28 import java.net.URL;
37 public static File getLocalFile(String url) throws IOException,
39 url = Support_Resources.RESOURCE_PACKAGE + url;
40 File temp = cache.get(url);
42 InputStream in = Support_GetLocal.class.getResourceAsStream(url);
53 cache.put(url, temp);
58 public static File getExternalLocalFile(String url) throws IOException,
60 File temp = cache.get(url);
62 InputStream in = new URL(url).openStream()
    [all...]
  /packages/apps/Browser/src/com/android/browser/
AddNewBookmark.java 43 mUrlText = (TextView) findViewById(R.id.url);
47 * Set the new url for the bookmark item.
48 * @param url The new url for the bookmark item.
50 /* package */ void setUrl(String url) {
51 mUrlText.setText(url);
  /external/chromium/chrome/browser/chromeos/login/
mock_url_fetchers.cc 22 const GURL& url,
26 : URLFetcher(url, request_type, d) {
48 const GURL& url,
52 : URLFetcher(url, request_type, d),
53 url_(url) {
70 const GURL& url,
74 : URLFetcher(url, request_type, d),
75 url_(url) {
91 const GURL& url,
95 : URLFetcher(url, request_type, d)
    [all...]
  /external/chromium/net/url_request/
url_request_filter.cc 42 const GURL& url = GURL(i->first); local
44 hostname_handler_map_.find(make_pair(url.scheme(), url.host()));
65 const GURL& url,
67 if (!url.is_valid())
69 url_handler_map_[url.spec()] = factory;
72 URLRequest::RegisterProtocolFactory(url.scheme(),
75 // Check to see if this URL is masked by a hostname handler.
77 hostname_handler_map_.find(make_pair(url.scheme(), url.host()))
134 const std::string& url = request->url().spec(); local
    [all...]
url_request_throttler_manager.h 22 // Class that registers URL request throttler entries for URLs being accessed
23 // in order to supervise traffic. URL requests for HTTP contents should
26 // URLRequestThrottlerManager maintains a map of URL IDs to URL request
27 // throttler entries. It creates URL request throttler entries when new URLs
29 // clean out outdated entries. URL ID consists of lowercased scheme, host, port
39 // Must be called for every request, returns the URL request throttler entry
40 // associated with the URL. The caller must inform this entry of some events.
44 const GURL& url);
52 // any) for the URL. The service will hold a reference to the entry
    [all...]
  /external/chromium/chrome/common/extensions/docs/server/
chromeextensionsdocs.py 66 url = self.getSrcUrl(path)
67 if (url[1] is not Channel.TRUNK) and (url[0] != "http://src.chromium.org/favicon.ico"):
68 branch = self.getBranch(url[1])
69 url = url[0] % branch
71 url = url[0]
73 logging.info("Url: " + url)
    [all...]
  /external/chromium/chrome/browser/bookmarks/
bookmark_service.h 15 // or if a URL is bookmarked.
20 // Returns true if the specified URL is bookmarked.
23 virtual bool IsBookmarked(const GURL& url) = 0;
27 // URL only one entry is added.
  /external/chromium/chrome/browser/net/
browser_url_util.h 19 // Writes a string representation of |url| to the system clipboard.
20 void WriteURLToClipboard(const GURL& url,
predictor_api.h 54 void AnticipateOmniboxUrl(const GURL& url, bool preconnectable);
57 // be connecting to the URL. It will preconnect the url and it's associated
59 void PreconnectUrlAndSubresources(const GURL& url);
71 void PredictFrameSubresources(const GURL& url);
75 void LearnAboutInitialNavigation(const GURL& url);
79 // URL.
view_blob_internals_job_factory.h 18 static bool IsSupportedURL(const GURL& url);
view_http_cache_job_factory.h 18 static bool IsSupportedURL(const GURL& url);
  /external/chromium/chrome/browser/
page_info_window.h 19 const GURL& url,
  /external/chromium/chrome/browser/ui/cocoa/
external_protocol_dialog.h 17 - (id)initWithGURL:(const GURL*)url;
  /external/chromium/chrome/common/
child_process_logging.h 38 // Sets the URL that is logged if the child process crashes. Use GURL() to clear
39 // the URL.
40 void SetActiveURL(const GURL& url);
63 // Simple wrapper class that sets the active URL in it's constructor and clears
64 // the active URL in the destructor.
67 explicit ScopedActiveURLSetter(const GURL& url) {
68 SetActiveURL(url);
91 void SetActiveURLImpl(const GURL& url,
chrome_content_client.h 17 virtual void SetActiveURL(const GURL& url);
  /external/chromium/net/base/
data_url.h 17 // See RFC 2397 for a complete description of the 'data' URL scheme.
19 // Briefly, a 'data' URL has the form:
26 // using ASCII encoding for octets inside the range of safe URL characters and
33 // This method can be used to parse a 'data' URL into its component pieces.
36 // decoded data (e.g.., if the data URL specifies base64 encoding, then the
39 // If the URL is malformed, then this method will return false, and its
45 static bool Parse(const GURL& url,
static_cookie_policy.cc 15 const GURL& url,
23 return OK; // Empty first-party URL indicates a first-party request.
25 url, first_party_for_cookies) ? OK : ERR_ACCESS_DENIED;
34 int StaticCookiePolicy::CanSetCookie(const GURL& url,
43 return OK; // Empty first-party URL indicates a first-party request.
45 url, first_party_for_cookies) ? OK : ERR_ACCESS_DENIED;
  /external/chromium/net/proxy/
proxy_script_fetcher.h 29 // Downloads the given PAC URL, and invokes |callback| on completion.
47 virtual int Fetch(const GURL& url, string16* utf16_text,
  /external/webkit/LayoutTests/http/tests/resources/
redirect.php 2 $url = $_GET['url']; variable
7 header("Refresh: $refresh; url=$url");
15 header("Location: $url");
  /external/webkit/Source/WebCore/platform/brew/
SSLKeyGeneratorBrew.cpp 32 String signedPublicKeyAndChallengeString(unsigned index, const String& challenge, const KURL& url)
  /external/webkit/Source/WebCore/svg/
SVGURIReference.h 39 static String getTarget(const String& url);
  /external/webkit/Source/WebCore/workers/
DedicatedWorkerThread.cpp 47 DedicatedWorkerThread::DedicatedWorkerThread(const KURL& url, const String& userAgent, const String& sourceCode, WorkerLoaderProxy& workerLoaderProxy, WorkerObjectProxy& workerObjectProxy)
48 : WorkerThread(url, userAgent, sourceCode, workerLoaderProxy, workerObjectProxy)
57 PassRefPtr<WorkerContext> DedicatedWorkerThread::createWorkerContext(const KURL& url, const String& userAgent)
59 return DedicatedWorkerContext::create(url, userAgent, this);
SharedWorkerThread.cpp 46 SharedWorkerThread::SharedWorkerThread(const String& name, const KURL& url, const String& userAgent, const String& sourceCode, WorkerLoaderProxy& workerLoaderProxy, WorkerReportingProxy& workerReportingProxy)
47 : WorkerThread(url, userAgent, sourceCode, workerLoaderProxy, workerReportingProxy)
56 PassRefPtr<WorkerContext> SharedWorkerThread::createWorkerContext(const KURL& url, const String& userAgent)
58 return SharedWorkerContext::create(m_name, url, userAgent, this);

Completed in 313 milliseconds

1 2 3 4 5 6 7 891011>>