Searched defs:scheme (Results 1 - 25 of 167) sorted by relevance

1234567

/external/chromium/chrome/browser/net/
H A Dblob_url_request_job_factory.cc19 const std::string& scheme) {
18 BlobURLRequestJobFactory(net::URLRequest* request, const std::string& scheme) argument
H A Dfile_system_url_request_job_factory.cc17 const std::string& scheme) {
16 FileSystemURLRequestJobFactory(net::URLRequest* request, const std::string& scheme) argument
H A Durl_request_mock_link_doctor_job.cc27 const std::string& scheme) {
25 Factory( net::URLRequest* request, const std::string& scheme) argument
H A Durl_request_failed_dns_job.cc39 const std::string& scheme) {
38 Factory(net::URLRequest* request, const std::string& scheme) argument
H A Durl_request_slow_http_job.cc22 const std::string& scheme) {
24 GetOnDiskPath(base_path_, request, scheme));
21 Factory(net::URLRequest* request, const std::string& scheme) argument
/external/apache-http/src/org/apache/http/conn/scheme/
H A DHostNameResolver.java32 package org.apache.http.conn.scheme;
H A DLayeredSocketFactory.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/conn/scheme/LayeredSocketFactory.java $
32 package org.apache.http.conn.scheme;
H A DSocketFactory.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/conn/scheme/SocketFactory.java $
32 package org.apache.http.conn.scheme;
H A DSchemeRegistry.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/conn/scheme/SchemeRegistry.java $
31 package org.apache.http.conn.scheme;
59 * Creates a new, empty scheme registry.
68 * Obtains a scheme by name.
70 * @param name the name of the scheme to look up (in lowercase)
72 * @return the scheme, never <code>null</code>
75 * if the scheme with the given name is not registered
88 * Obtains the scheme for a host.
91 * @param host the host for which to obtain the scheme
93 * @return the scheme fo
[all...]
/external/chromium/googleurl/src/
H A Durl_util.h65 // Adds an application-defined scheme to the internal list of "standard" URL
85 // Locates the scheme in the given string and places it into |found_scheme|,
88 // Returns whether the given |compare| scheme matches the scheme found in the
89 // input (if any). The |compare| scheme must be a valid canonical scheme or
113 // either the scheme is in the list of known standard schemes.
115 const url_parse::Component& scheme);
117 const url_parse::Component& scheme);
122 const url_parse::Component& scheme) {
121 IsStandard(const char* spec, int spec_len, const url_parse::Component& scheme) argument
[all...]
/external/chromium/net/proxy/
H A Dproxy_server_mac.cc18 ProxyServer ProxyServer::FromDictionary(Scheme scheme, argument
22 if (scheme == SCHEME_INVALID || scheme == SCHEME_DIRECT) {
24 return ProxyServer(scheme, HostPortPair());
45 port = GetDefaultPortForScheme(scheme);
48 return ProxyServer(scheme, HostPortPair(host, port));
/external/okhttp/src/main/java/libcore/net/http/
H A DChallenge.java23 final String scheme; field in class:Challenge
26 Challenge(String scheme, String realm) { argument
27 this.scheme = scheme;
33 && ((Challenge) o).scheme.equals(scheme)
38 return scheme.hashCode() + 31 * realm.hashCode();
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
H A DPBES2Algorithms.java20 private EncryptionScheme scheme; field in class:PBES2Algorithms
46 scheme = new EncryptionScheme((ASN1Sequence)e.nextElement());
61 return scheme;
72 subV.add(scheme);
H A DPBES2Parameters.java17 private EncryptionScheme scheme; field in class:PBES2Parameters
50 scheme = (EncryptionScheme)EncryptionScheme.getInstance(e.nextElement());
60 return scheme;
68 v.add(scheme);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
H A DPBESecretKeyFactory.java17 private int scheme; field in class:PBESecretKeyFactory
26 int scheme,
34 this.scheme = scheme;
51 return new BCPBEKey(this.algName, this.algOid, scheme, digest, keySize, ivSize, pbeSpec, null);
56 param = PBE.Util.makePBEParameters(pbeSpec, scheme, digest, keySize, ivSize);
60 param = PBE.Util.makePBEMacParameters(pbeSpec, scheme, digest, keySize);
63 return new BCPBEKey(this.algName, this.algOid, scheme, digest, keySize, ivSize, pbeSpec, param);
22 PBESecretKeyFactory( String algorithm, DERObjectIdentifier oid, boolean forCipher, int scheme, int digest, int keySize, int ivSize) argument
/external/chromium/chrome/browser/content_settings/
H A Dcontent_settings_pattern.h54 std::string scheme() const { function in class:ContentSettingsPattern
69 // refactoring pending to fully integrate scheme support in content settings
71 ContentSettingsPattern(const std::string& host, const std::string& scheme) argument
73 scheme_(scheme) {}
78 // to do to add scheme support to content-settings patterns.
/external/chromium/chrome/browser/password_manager/
H A Dpassword_form_data.h15 const webkit_glue::PasswordForm::Scheme scheme; member in struct:PasswordFormData
/external/chromium/net/socket_stream/
H A Dsocket_stream_job_manager.cc32 const std::string& scheme = url.scheme(); // already lowercase local
35 FactoryMap::const_iterator found = factories_.find(scheme);
48 const std::string& scheme, SocketStreamJob::ProtocolFactory* factory) {
52 FactoryMap::iterator found = factories_.find(scheme);
59 factories_[scheme] = factory;
47 RegisterProtocolFactory( const std::string& scheme, SocketStreamJob::ProtocolFactory* factory) argument
/external/chromium/net/url_request/
H A Durl_request_about_job.cc23 const std::string& scheme) {
22 Factory(URLRequest* request, const std::string& scheme) argument
H A Durl_request_data_job.cc19 const std::string& scheme) {
18 Factory(URLRequest* request, const std::string& scheme) argument
/external/libxml2/include/libxml/
H A Duri.h34 char *scheme; /* the URI scheme */ member in struct:_xmlURI
/external/webkit/Source/JavaScriptCore/wtf/url/api/
H A DParsedURL.cpp43 String ParsedURL::scheme() const function in class:WTF::ParsedURL
45 return segment(m_segments.scheme);
/external/webkit/Source/WebCore/page/
H A DUserContentURLPattern.h50 const String& scheme() const { return m_scheme; } function in class:WebCore::UserContentURLPattern
/external/webkit/Source/WebKit/chromium/src/
H A DWebSecurityPolicy.cpp45 void WebSecurityPolicy::registerURLSchemeAsLocal(const WebString& scheme) argument
47 SchemeRegistry::registerURLSchemeAsLocal(scheme);
50 void WebSecurityPolicy::registerURLSchemeAsNoAccess(const WebString& scheme) argument
52 SchemeRegistry::registerURLSchemeAsNoAccess(scheme);
55 void WebSecurityPolicy::registerURLSchemeAsDisplayIsolated(const WebString& scheme) argument
57 SchemeRegistry::registerURLSchemeAsDisplayIsolated(scheme);
60 void WebSecurityPolicy::registerURLSchemeAsSecure(const WebString& scheme) argument
62 SchemeRegistry::registerURLSchemeAsSecure(scheme);
/external/apache-http/src/org/apache/http/client/utils/
H A DURIUtils.java53 * @param scheme
67 * If both a scheme and a path are given but the path is
74 final String scheme,
83 if (scheme != null) {
84 buffer.append(scheme);
111 * A convenience method for creating a new {@link URI} whose scheme, host
119 * Contains the scheme, host and port to use.
73 createURI( final String scheme, final String host, int port, final String path, final String query, final String fragment) argument

Completed in 668 milliseconds

1234567