/external/okhttp/okhttp-urlconnection/src/main/java/com/squareup/okhttp/ |
OkUrlFactory.java | 23 import java.net.URL; 47 public HttpURLConnection open(URL url) { 48 return open(url, client.getProxy()); 51 HttpURLConnection open(URL url, Proxy proxy) { 52 String protocol = url.getProtocol(); 56 if (protocol.equals("http")) return new HttpURLConnectionImpl(url, copy); 57 if (protocol.equals("https")) return new HttpsURLConnectionImpl(url, copy); 62 * Creates a URLStreamHandler as a {@link java.net.URL#setURLStreamHandlerFactory} [all...] |
/libcore/luni/src/main/java/libcore/net/url/ |
FileHandler.java | 18 package libcore.net.url; 22 import java.net.URL; 33 * Returns a connection to the a file pointed by this <code>URL</code> in 36 * @return A connection to the resource pointed by this url. 37 * @param url 38 * URL The URL to which the connection is pointing to 42 public URLConnection openConnection(URL url) throws IOException { 43 return openConnection(url, null) [all...] |
FtpHandler.java | 18 package libcore.net.url; 22 import java.net.URL; 28 * Open a URLConnection on the given URL. 31 protected URLConnection openConnection(URL u) throws IOException { 37 * to the FTP server specified by this <code>URL</code>. If 41 * @param url 42 * the URL which the connection is pointing to 45 * @return a connection to the resource pointed by this url. 55 protected URLConnection openConnection(URL url, Proxy proxy) throws IOException [all...] |
/packages/apps/Browser/src/com/android/browser/ |
BrowserDownloadListener.java | 29 * @param url The full url to the content that should be downloaded 34 * @param referer The referer associated with this url 37 public abstract void onDownloadStart(String url, String userAgent, 44 * @param url The full url to the content that should be downloaded 52 public void onDownloadStart(String url, String userAgent, 55 onDownloadStart(url, userAgent, contentDisposition, mimetype, null,
|
CombinedBookmarksCallbacks.java | 19 void openUrl(String url);
|
/frameworks/base/core/java/android/webkit/ |
DownloadListener.java | 23 * @param url The full url to the content that should be downloaded 30 public void onDownloadStart(String url, String userAgent,
|
WebIconDatabase.java | 46 * @param url The url passed in the request. 47 * @param icon The favicon for the given url. 49 public void onReceivedIcon(String url, Bitmap icon); 70 * url. If the icon exists, the listener will be called with the result. 71 * @param url The page's url. 74 public abstract void requestIconForPageUrl(String url, IconListener listener); 83 * Retain the icon for the given page url. 84 * @param url The page's url [all...] |
UrlInterceptHandler.java | 32 * Given an URL, returns the CacheResult which contains the 36 * @param url URL string. 44 public CacheResult service(String url, Map<String, String> headers); 47 * Given an URL, returns the PluginData which contains the 51 * @param url URL string. 59 public PluginData getPluginData(String url, Map<String, String> headers);
|
/frameworks/data-binding/samples/BindingDemo/ |
build.gradle | 27 url "$projectDir/../../maven-repo" 41 url "$projectDir/../../../maven-repo"
|
/libcore/luni/src/main/java/libcore/net/ |
NetworkSecurityPolicy.java | 19 import libcore.net.url.FtpURLConnection;
|
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/asset/plugins/ |
UrlAssetInfo.java | 9 import java.net.URL; 13 * Handles loading of assets from a URL 19 private URL url; field in class:UrlAssetInfo 22 public static UrlAssetInfo create(AssetManager assetManager, AssetKey key, URL url) throws IOException { 23 // Check if URL can be reached. This will throw 25 URLConnection conn = url.openConnection(); 29 // For some reason url cannot be reached? 33 return new UrlAssetInfo(assetManager, key, url, in) [all...] |
/external/wpa_supplicant_8/src/utils/ |
browser-system.c | 34 const char *url; local 37 url = http_request_get_uri(req); 38 wpa_printf(MSG_INFO, "Browser response received: %s", url); 40 if (os_strcmp(url, "/") == 0) { 43 } else if (os_strncmp(url, "/osu/", 5) == 0) { 44 data->success = atoi(url + 5); 65 int hs20_web_browser(const char *url) 72 wpa_printf(MSG_INFO, "Launching system browser to %s", url); 101 argv[1] = (void *) url;
|
/external/chromium-trace/trace-viewer/third_party/Paste/paste/ |
urlmap.py | 4 Map URL prefixes to WSGI applications. See ``URLMap`` 80 of several applications based on the URL. 83 ``PATH_INFO.startswith(url)``), and the values are applications to 85 URL first. The ``SCRIPT_NAME`` and ``PATH_INFO`` environmental 125 def normalize_url(self, url, trim=True): 126 if isinstance(url, (list, tuple)): 127 domain = url[0] 128 url = self.normalize_url(url[1])[1] 129 return domain, url [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
urlparse.py | 8 RFC 2732 : "Format for Literal IPv6 Addresses in URL's by R.Hinden, B.Carpenter 14 RFC 2368: "The mailto URL scheme", by P.Hoffman , L Masinter, J. Zwinski, July 1998. 19 RFC 1738: "Uniform Resource Locators (URL)" by T. Berners-Lee, L. Masinter, M. 136 def urlparse(url, scheme='', allow_fragments=True): 137 """Parse a URL into 6 components: 142 tuple = urlsplit(url, scheme, allow_fragments) 143 scheme, netloc, url, query, fragment = tuple 144 if scheme in uses_params and ';' in url: 145 url, params = _splitparams(url) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
urlparse.py | 8 RFC 2732 : "Format for Literal IPv6 Addresses in URL's by R.Hinden, B.Carpenter 14 RFC 2368: "The mailto URL scheme", by P.Hoffman , L Masinter, J. Zwinski, July 1998. 19 RFC 1738: "Uniform Resource Locators (URL)" by T. Berners-Lee, L. Masinter, M. 136 def urlparse(url, scheme='', allow_fragments=True): 137 """Parse a URL into 6 components: 142 tuple = urlsplit(url, scheme, allow_fragments) 143 scheme, netloc, url, query, fragment = tuple 144 if scheme in uses_params and ';' in url: 145 url, params = _splitparams(url) [all...] |
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/transport/ |
Transport.java | 48 protected String url; field in class:Transport 67 public Transport(String url) { 68 this(null, url); 71 public Transport(String url, int timeout) { 72 this.url = url; 76 public Transport(String url, int timeout, int bufferLength) { 77 this.url = url; 87 * @param url Specifies the web service ur [all...] |
/external/apache-xml/src/main/java/org/apache/xalan/res/ |
XSLTInfo.properties | 25 vendor-url=http://xml.apache.org/xalan-j
|
/external/chromium-libpac/test/js-unittest/ |
ends_with_statement_no_semicolon.js | 2 function FindProxyForURL(url, host) { return "PROXY success:" + x; }
|
return_unicode.js | 2 function FindProxyForURL(url, host) {
|
unhandled_exception.js | 1 function FindProxyForURL(url, host) {
|
/external/cmockery/cmockery_0_1_2/src/example/ |
product_database_test.c | 27 DatabaseConnection* connect_to_database(const char * const url, 29 check_expected(url); 35 expect_string(connect_to_database, url, "products.abcd.org"); 41 /* This test will fail since the expected URL is different to the URL that is 44 expect_string(connect_to_database, url, "products.abcd.com"); 54 expect_string(connect_to_database, url, "products.abcd.org");
|
/external/skia/tools/skp/page_sets/ |
skia_carsvg_desktop.py | 13 def __init__(self, url, page_set): 15 url=url, 36 for url in urls_list: 37 self.AddUserStory(SkiaBuildbotDesktopPage(url, self))
|
skia_chalkboard_desktop.py | 13 def __init__(self, url, page_set): 15 url=url, 37 for url in urls_list: 38 self.AddUserStory(SkiaBuildbotDesktopPage(url, self))
|
skia_css3gradients_desktop.py | 13 def __init__(self, url, page_set): 15 url=url, 43 for url in urls_list: 44 self.AddUserStory(SkiaBuildbotDesktopPage(url, self))
|
skia_digg_nexus10.py | 13 def __init__(self, url, page_set): 15 url=url, 39 for url in urls_list: 40 self.AddUserStory(SkiaBuildbotDesktopPage(url, self))
|