Searched refs:scheme (Results 101 - 125 of 382) sorted by relevance

1234567891011>>

/external/chromium/chrome/browser/extensions/
H A Dextension_protocols.cc83 const std::string& scheme) {
116 const std::string& scheme) {
121 if (!AllowExtensionResourceLoad(request, context, scheme)) {
183 const std::string& scheme) {
81 AllowExtensionResourceLoad(net::URLRequest* request, ChromeURLRequestContext* context, const std::string& scheme) argument
114 CreateExtensionURLRequestJob( net::URLRequest* request, const std::string& scheme) argument
181 CreateUserScriptURLRequestJob( net::URLRequest* request, const std::string& scheme) argument
H A Dautoupdate_interceptor.cc44 if (request->url().scheme() != "http" ||
78 EXPECT_EQ("http", gurl.scheme());
/external/chromium/chrome/browser/net/
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_mock_http_job.h43 const std::string& scheme);
H A Durl_request_slow_download_job.h33 const std::string& scheme);
/external/chromium/chrome/browser/password_manager/
H A Dpassword_form_data.h15 const webkit_glue::PasswordForm::Scheme scheme; member in struct:PasswordFormData
H A Dpassword_store_mac_internal.h80 // Returns the Keychain items matching the given signon_realm, scheme, and
85 const std::string& signon_realm, webkit_glue::PasswordForm::Scheme scheme,
98 // Returns the Keychain SecAuthenticationType type corresponding to |scheme|.
100 webkit_glue::PasswordForm::Scheme scheme);
144 // Returns true if the two given forms match based on signon_reaml, scheme, and
/external/chromium/chrome/browser/ui/views/
H A Dexternal_protocol_dialog.cc87 url_.scheme(), ExternalProtocolHandler::BLOCK);
103 url_.scheme(), ExternalProtocolHandler::DONT_BLOCK);
134 ASCIIToUTF16(url.scheme() + ":"),
172 ASCIIToWide(url.scheme() + "\\shell\\open\\command");
/external/chromium/chrome/browser/ui/webui/
H A Dchrome_url_data_manager_backend.h48 const std::string& scheme);
/external/nist-sip/java/javax/sip/header/
H A DAuthorizationHeader.java34 void setScheme(String scheme); argument
/external/webkit/Source/WebCore/page/
H A DUserContentURLPattern.h50 const String& scheme() const { return m_scheme; } function in class:WebCore::UserContentURLPattern
H A DSecurityOrigin.cpp54 static bool schemeRequiresAuthority(const String& scheme) argument
64 return schemes.contains(scheme);
182 void SecurityOrigin::setDomainRelaxationForbiddenForURLScheme(bool forbidden, const String& scheme) argument
184 if (scheme.isEmpty())
188 schemesForbiddenFromDomainRelaxation().add(scheme);
190 schemesForbiddenFromDomainRelaxation().remove(scheme);
193 bool SecurityOrigin::isDomainRelaxationForbiddenForURLScheme(const String& scheme) argument
195 if (scheme.isEmpty())
198 return schemesForbiddenFromDomainRelaxation().contains(scheme);
215 // that the scheme, hos
[all...]
/external/webkit/Source/WebKit/win/
H A DWebUserContentURLPattern.h51 virtual HRESULT STDMETHODCALLTYPE scheme(BSTR*);
H A DWebURLProtectionSpace.cpp132 ProtectionSpaceAuthenticationScheme scheme = ProtectionSpaceAuthenticationSchemeDefault; local
134 scheme = ProtectionSpaceAuthenticationSchemeDefault;
136 scheme = ProtectionSpaceAuthenticationSchemeHTTPBasic;
138 scheme = ProtectionSpaceAuthenticationSchemeHTTPDigest;
140 scheme = ProtectionSpaceAuthenticationSchemeHTMLForm;
143 return scheme;
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/httplib2/
H A Diri2uri.py70 (scheme, authority, path, query, fragment) = urlparse.urlsplit(uri)
75 uri = urlparse.urlunsplit((scheme, authority, path, query, fragment))
/external/chromium/net/http/
H A Dhttp_auth_controller.h72 virtual bool IsAuthSchemeDisabled(HttpAuth::Scheme scheme) const;
73 virtual void DisableAuthScheme(HttpAuth::Scheme scheme);
111 // auth scheme for this controller and returns true. Returns false
120 // Holds the {scheme, host, path, port} for the authentication target.
123 // Holds the {scheme, host, port} for the authentication target.
130 // |handler_| encapsulates the logic for the particular auth-scheme.
H A Dhttp_auth_unittest.cc208 // Connection based schemes will treat new auth challenges for the same scheme
210 // no auth challenges for the same scheme, the response will be treated as
250 EXPECT_EQ(std::string("Basic"), challenge.scheme());
266 EXPECT_EQ(std::string("Basic"), challenge.scheme());
282 EXPECT_EQ(std::string("Basic"), challenge.scheme());
298 EXPECT_EQ(std::string("Basic"), challenge.scheme());
315 EXPECT_EQ(std::string("Basic"), challenge.scheme());
332 EXPECT_EQ(std::string("Digest"), challenge.scheme());
356 EXPECT_EQ(std::string("Digest"), challenge.scheme());
370 EXPECT_EQ(std::string("Digest"), challenge.scheme());
[all...]
/external/openssl/crypto/asn1/
H A Dp5_pbev2.c93 X509_ALGOR *scheme = NULL, *kalg = NULL, *ret = NULL;
110 /* Setup the AlgorithmIdentifier for the encryption scheme */
111 scheme = pbe2->encryption;
113 scheme->algorithm = obj;
114 if(!(scheme->parameter = ASN1_TYPE_new())) goto merr;
130 if(EVP_CIPHER_param_to_asn1(&ctx, scheme->parameter) < 0) {
186 /* Note 'scheme' is freed as part of pbe2 */
/external/chromium/chrome/browser/autocomplete/
H A Dautocomplete.cc122 string16* scheme,
136 // consider a scheme. For example, we shouldn't consider www.google.com:80
137 // to have a scheme.
142 if (scheme)
143 *scheme = parsed_scheme;
150 // A user might or might not type a scheme when entering a file URL. In
152 // |parts->scheme| might be empty, e.g. if the user typed "C:\foo".
156 // If the user typed a scheme, and it's HTTP or HTTPS, we know how to parse it
159 // any input of this scheme. In theory we could do better with some schemes
162 if (parts->scheme
118 Parse( const string16& text, const string16& desired_tld, url_parse::Parsed* parts, string16* scheme, GURL* canonicalized_url) argument
406 ParseForEmphasizeComponents( const string16& text, const string16& desired_tld, url_parse::Component* scheme, url_parse::Component* host) argument
518 url_parse::Component scheme; local
[all...]
/external/libxml2/
H A Duri.c170 * Parse an URI scheme
190 if (uri->scheme != NULL) xmlFree(uri->scheme);
191 uri->scheme = STRNDUP(*str, cur - *str);
207 * xpointer scheme selection, so we are allowing it here to not break
407 * IPv6 and future adressing scheme are enclosed between brackets
667 * Parse an path which is not a scheme and fills in the appropriate fields
818 * scheme ":" hier-part [ "?" query ] [ "#" fragment ]
1019 if (uri->scheme != NULL) {
1020 p = uri->scheme;
[all...]
/external/chromium/chrome/browser/chromeos/
H A Dproxy_config_service_impl_unittest.cc43 #define MK_SCHM(scheme) net::ProxyServer::SCHEME_##scheme
167 TEST_DESC("Tolerate a scheme"),
187 TEST_DESC("Per-scheme proxy rules"),
272 net::ProxyServer::Scheme scheme,
279 manual_proxy->server = net::ProxyServer::FromURI(server_uri, scheme);
357 const std::string& scheme) {
358 // Init with manual |scheme| proxy.
361 init_config.MapSchemeToProxy(scheme);
363 if (scheme
268 SetManualProxy( ProxyConfigServiceImpl::ProxyConfig::Mode mode, ProxyConfigServiceImpl::ProxyConfig::Source source, const char* server_uri, net::ProxyServer::Scheme scheme, ProxyConfigServiceImpl::ProxyConfig* config, ProxyConfigServiceImpl::ProxyConfig::ManualProxy* manual_proxy) argument
354 TestReadWriteAccessForScheme( ProxyConfigServiceImpl::ProxyConfig::Source source, const char* server_uri, const std::string& scheme) argument
[all...]
/external/chromium/googleurl/src/
H A Durl_canon_internal.cc312 DoOverrideComponent(repl_source.scheme, repl_parsed.scheme,
313 &source->scheme, &parsed->scheme);
347 repl_source.scheme, repl_parsed.scheme,
348 utf8_buffer, &parsed->scheme);
374 if (repl_source.scheme) source->scheme = utf8_buffer->data();
/external/apache-http/src/org/apache/http/impl/conn/
H A DDefaultClientConnectionOperator.java49 import org.apache.http.conn.scheme.LayeredSocketFactory;
50 import org.apache.http.conn.scheme.PlainSocketFactory;
51 import org.apache.http.conn.scheme.Scheme;
52 import org.apache.http.conn.scheme.SchemeRegistry;
53 import org.apache.http.conn.scheme.SocketFactory;
75 /** The scheme registry for looking up socket factories. */
80 * Creates a new client connection operator for the given scheme registry.
82 * @param schemes the scheme registry
224 ("Target scheme (" + schm.getName() +
/external/chromium/net/proxy/
H A Dproxy_config.cc55 const ProxyServer* entry = MapUrlSchemeToProxy(url.scheme());
60 // scheme. Default to direct.
102 // Trim whitespace off the url scheme.
105 // Add it to the per-scheme mappings (if supported scheme).
111 // is not a URL scheme. Rather this means "for everything else, send
135 return NULL; // No mapping for this scheme. Use direct.
150 const std::string& scheme) {
152 if (scheme == "http")
154 if (scheme
149 MapUrlSchemeToProxyNoFallback( const std::string& scheme) argument
[all...]
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/oauth2/
H A D__init__.py183 scheme, netloc, path, params, query, fragment = parts[:6]
188 return urlparse.urlunparse((scheme, netloc, path, params,
281 scheme, netloc, path, params, query, fragment = urlparse.urlparse(value)
284 if scheme == 'http' and netloc[-3:] == ':80':
286 elif scheme == 'https' and netloc[-4:] == ':443':
288 if scheme not in ('http', 'https'):
289 raise ValueError("Unsupported URL %s (%s)." % (value, scheme))
292 self.normalized_url = urlparse.urlunparse((scheme, netloc, path, None, None, None))
343 scheme = base_url.scheme
[all...]

Completed in 1765 milliseconds

1234567891011>>