Searched refs:scheme (Results 176 - 200 of 382) sorted by relevance

1234567891011>>

/external/okhttp/src/main/java/libcore/util/
H A DLibcore.java213 private static int getEffectivePort(String scheme, int specifiedPort) { argument
218 if ("http".equalsIgnoreCase(scheme)) {
220 } else if ("https".equalsIgnoreCase(scheme)) {
/external/chromium/chrome/browser/chromeos/
H A Dproxy_cros_settings_provider.cc284 net::ProxyServer::Scheme scheme) const {
291 port = net::ProxyServer::GetDefaultPortForScheme(scheme);
293 return net::ProxyServer(scheme, host_port_pair);
299 net::ProxyServer::Scheme scheme) const {
306 return net::ProxyServer(scheme, host_port_pair);
/external/chromium/chrome/browser/sync/glue/
H A Dpassword_model_associator.cc302 new_password->scheme =
303 static_cast<webkit_glue::PasswordForm::Scheme>(password.scheme());
330 if (password.scheme() == password_form.scheme &&
365 password.set_scheme(password_form.scheme);
/external/chromium/net/http/
H A Dhttp_auth_controller.cc86 // Records the number of authentication events per authentication scheme.
247 // the auth scheme and want to retry.
498 auth_info_->scheme = ASCIIToWide(
523 // In these cases, disable the current scheme as it cannot
550 bool HttpAuthController::IsAuthSchemeDisabled(HttpAuth::Scheme scheme) const {
552 return disabled_schemes_.find(scheme) != disabled_schemes_.end();
555 void HttpAuthController::DisableAuthScheme(HttpAuth::Scheme scheme) { argument
557 disabled_schemes_.insert(scheme);
H A Dhttp_auth_cache_unittest.cc22 MockAuthHandler(HttpAuth::Scheme scheme, argument
26 auth_scheme_ = scheme;
130 // While Realm3 does exist, the origin scheme is wrong.
135 // Realm, origin scheme ok, authentication scheme wrong
140 // Valid lookup by origin, realm, scheme.
144 EXPECT_EQ(HttpAuth::AUTH_SCHEME_BASIC, entry->scheme());
150 // Valid lookup by origin, realm, scheme when there's a duplicate
155 EXPECT_EQ(HttpAuth::AUTH_SCHEME_DIGEST, entry->scheme());
164 EXPECT_EQ(HttpAuth::AUTH_SCHEME_BASIC, entry->scheme());
[all...]
H A Dhttp_auth_sspi_win.cc188 const std::string& scheme,
192 scheme_(scheme),
226 // Verify the challenge's auth-scheme.
227 if (!LowerCaseEqualsASCII(tok->scheme(), StringToLowerASCII(scheme_).c_str()))
279 // Base64 encode data in output buffer and prepend the scheme.
187 HttpAuthSSPI(SSPILibrary* library, const std::string& scheme, SEC_WCHAR* security_package, ULONG max_token_length) argument
/external/chromium/chrome/browser/net/
H A Dpredictor.cc754 std::string scheme;
756 scheme = url.scheme();
757 if (scheme != "http" && scheme != "https")
762 scheme = "http";
770 return GURL(scheme + "://" + url.host() + colon_plus_port);
H A Durl_fixer_upper_unittest.cc35 const url_parse::Component scheme; member in struct:segment_case
47 url_parse::Component(0, 4), // scheme
57 url_parse::Component(0, 5), // scheme
67 url_parse::Component(), // scheme
77 url_parse::Component(), // scheme
87 url_parse::Component(0, 3), // scheme
97 url_parse::Component(), // scheme
107 url_parse::Component(), // scheme
118 url_parse::Component(), // scheme
128 url_parse::Component(), // scheme
[all...]
/external/chromium/net/proxy/
H A Dproxy_config_service_linux.cc43 // an appropriate proxy server scheme prefix.
44 // scheme indicates the desired proxy scheme: usually http, with
47 std::string FixupProxyHostScheme(ProxyServer::Scheme scheme, argument
49 if (scheme == ProxyServer::SCHEME_SOCKS5 &&
53 scheme = ProxyServer::SCHEME_SOCKS4;
55 // Strip the scheme if any.
69 // If this is a socks proxy, prepend a scheme so as to tell
72 if (scheme == ProxyServer::SCHEME_SOCKS4)
74 else if (scheme
88 GetProxyFromEnvVarForScheme( const char* variable, ProxyServer::Scheme scheme, ProxyServer* result_server) argument
160 ProxyServer::Scheme scheme = ProxyServer::SCHEME_SOCKS5; local
[all...]
/external/chromium/chrome/browser/autofill/
H A Dform_structure.cc281 std::string scheme(target_url_.scheme());
284 // If target host or scheme is empty, set scheme and host of source url.
286 if (scheme.empty() || host.empty()) {
287 scheme = source_url_.scheme();
291 std::string form_string = scheme + "://" + host + "&" +
/external/webkit/LayoutTests/dom/html/level1/core/
H A Dselfhtml.js152 function assertURIEquals(assertID, scheme, path, host, file, name, query, fragment, isAbsolute, actual) {
190 if(scheme != null) {
191 assertEquals(assertID, scheme, actualScheme);
253 function createTempURI(scheme) {
254 if (scheme == "http") {
661 function getResourceURI(name, scheme, contentType) {
/external/webkit/LayoutTests/dom/html/level2/core/
H A Dselfhtml.js152 function assertURIEquals(assertID, scheme, path, host, file, name, query, fragment, isAbsolute, actual) {
190 if(scheme != null) {
191 assertEquals(assertID, scheme, actualScheme);
253 function createTempURI(scheme) {
254 if (scheme == "http") {
661 function getResourceURI(name, scheme, contentType) {
/external/webkit/LayoutTests/dom/html/level2/events/
H A Dselfhtml.js152 function assertURIEquals(assertID, scheme, path, host, file, name, query, fragment, isAbsolute, actual) {
190 if(scheme != null) {
191 assertEquals(assertID, scheme, actualScheme);
253 function createTempURI(scheme) {
254 if (scheme == "http") {
661 function getResourceURI(name, scheme, contentType) {
/external/webkit/LayoutTests/dom/html/level2/html/
H A Dselfhtml.js152 function assertURIEquals(assertID, scheme, path, host, file, name, query, fragment, isAbsolute, actual) {
190 if(scheme != null) {
191 assertEquals(assertID, scheme, actualScheme);
253 function createTempURI(scheme) {
254 if (scheme == "http") {
661 function getResourceURI(name, scheme, contentType) {
/external/webkit/LayoutTests/dom/xhtml/level1/core/
H A Dselfxhtml.js151 function assertURIEquals(assertID, scheme, path, host, file, name, query, fragment, isAbsolute, actual) {
189 if(scheme != null) {
190 assertEquals(assertID, scheme, actualScheme);
261 function createTempURI(scheme) {
262 if (scheme == "http") {
684 function getResourceURI(name, scheme, contentType) {
/external/webkit/LayoutTests/dom/xhtml/level2/core/
H A Dselfxhtml.js151 function assertURIEquals(assertID, scheme, path, host, file, name, query, fragment, isAbsolute, actual) {
189 if(scheme != null) {
190 assertEquals(assertID, scheme, actualScheme);
261 function createTempURI(scheme) {
262 if (scheme == "http") {
684 function getResourceURI(name, scheme, contentType) {
/external/webkit/LayoutTests/dom/xhtml/level2/events/
H A Dselfxhtml.js151 function assertURIEquals(assertID, scheme, path, host, file, name, query, fragment, isAbsolute, actual) {
189 if(scheme != null) {
190 assertEquals(assertID, scheme, actualScheme);
261 function createTempURI(scheme) {
262 if (scheme == "http") {
684 function getResourceURI(name, scheme, contentType) {
/external/webkit/LayoutTests/dom/xhtml/level2/html/
H A Dselfxhtml.js151 function assertURIEquals(assertID, scheme, path, host, file, name, query, fragment, isAbsolute, actual) {
189 if(scheme != null) {
190 assertEquals(assertID, scheme, actualScheme);
261 function createTempURI(scheme) {
262 if (scheme == "http") {
691 function getResourceURI(name, scheme, contentType) {
/external/webkit/LayoutTests/dom/xhtml/level3/core/
H A Dselfxhtml.js151 function assertURIEquals(assertID, scheme, path, host, file, name, query, fragment, isAbsolute, actual) {
189 if(scheme != null) {
190 assertEquals(assertID, scheme, actualScheme);
261 function createTempURI(scheme) {
262 if (scheme == "http") {
684 function getResourceURI(name, scheme, contentType) {
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DMediaPlayerPrivateQt.cpp201 const QString scheme = rUrl.scheme().toLower(); local
207 if (scheme == QString::fromLatin1("http") || scheme == QString::fromLatin1("https")) {
232 if (documentUrl.scheme().toLower() == QString::fromLatin1("http") || scheme == QString::fromLatin1("https"))
/external/webkit/Source/WebKit/mac/Plugins/
H A Dnpapi.mm204 NPError NPN_GetAuthenticationInfo(NPP instance, const char* protocol, const char* host, int32_t port, const char* scheme, const char *realm, char** username, uint32_t* ulen, char** password, uint32_t* plen)
209 scheme:scheme
/external/apache-http/src/org/apache/http/impl/client/
H A DDefaultHttpClient.java56 import org.apache.http.conn.scheme.PlainSocketFactory;
57 import org.apache.http.conn.scheme.Scheme;
58 import org.apache.http.conn.scheme.SchemeRegistry;
/external/chromium/chrome/browser/automation/
H A Durl_request_automation_job.cc96 const std::string& scheme) {
119 return old_http_factory_(request, scheme);
121 return old_https_factory_(request, scheme);
94 Factory( net::URLRequest* request, const std::string& scheme) argument
/external/chromium/net/url_request/
H A Durl_request.h69 const std::string& scheme);
238 // Registers a new protocol handler for the given scheme. If the scheme is
243 // the scheme was first registered so that the caller can manually put it
246 // The scheme must be all-lowercase ASCII. See the ProtocolFactory
252 static ProtocolFactory* RegisterProtocolFactory(const std::string& scheme,
259 // Returns true if the scheme can be handled by URLRequest. False otherwise.
260 static bool IsHandledProtocol(const std::string& scheme);
/external/chromium/chrome/browser/chromeos/login/
H A Dregistration_screen.cc148 const std::string& scheme) {
147 Factory(net::URLRequest* request, const std::string& scheme) argument

Completed in 1580 milliseconds

1234567891011>>