Searched defs:scheme (Results 126 - 150 of 241) sorted by relevance

12345678910

/external/chromium_org/net/url_request/
H A Durl_request_context_builder.h138 // provided in the default |HttpAuthHandlerRegistryFactory|. The auth |scheme|
141 void add_http_auth_handler_factory(const std::string& scheme, argument
143 extra_http_auth_handlers_.push_back(SchemeFactory(scheme, factory));
177 SchemeFactory(const std::string& scheme,
181 std::string scheme; member in struct:net::URLRequestContextBuilder::SchemeFactory
/external/libxml2/
H A Dbuf.c261 * Get the buffer allocation scheme
263 * Returns the scheme or -1 in case of error
280 * @scheme: allocation scheme to use
282 * Sets the allocation scheme for this buffer
288 xmlBufferAllocationScheme scheme) {
299 if ((scheme == XML_BUFFER_ALLOC_DOUBLEIT) ||
300 (scheme == XML_BUFFER_ALLOC_EXACT) ||
301 (scheme == XML_BUFFER_ALLOC_HYBRID) ||
302 (scheme
287 xmlBufSetAllocationScheme(xmlBufPtr buf, xmlBufferAllocationScheme scheme) argument
[all...]
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DAuthenticationHeader.java84 protected String scheme; field in class:AuthenticationHeader
89 this.scheme = ParameterNames.DIGEST;
147 this.scheme = challenge.scheme;
158 return this.scheme + SP + parameters.encode();
162 * Sets the scheme of the challenge information for this
165 * @param scheme -
167 * scheme.
169 public void setScheme(String scheme) { argument
170 this.scheme
[all...]
/external/chromium_org/chrome/browser/password_manager/
H A Dnative_backend_gnome_x_unittest.cc307 EXPECT_EQ(expected.scheme, actual.scheme);
467 CheckUint32Attribute(item, "scheme", form.scheme);
477 // Saves |credentials| and then gets logins matching |url| and |scheme|.
483 const PasswordForm::Scheme& scheme,
498 if (scheme != PasswordForm::SCHEME_HTML) {
503 target_form.scheme = scheme;
647 void CheckMatchingWithScheme(const PasswordForm::Scheme& scheme) { argument
481 CheckCredentialAvailability(const PasswordForm& credentials, const GURL& url, const PasswordForm::Scheme& scheme, PasswordForm* result) argument
[all...]
H A Dnative_backend_kwallet_x.cc714 pickle->WriteInt(form->scheme);
782 int scheme = 0; local
787 if (!iter.ReadInt(&scheme) ||
802 form->scheme = static_cast<PasswordForm::Scheme>(scheme);
H A Dnative_backend_kwallet_x_unittest.cc205 EXPECT_EQ(expected.scheme, actual.scheme);
924 void CheckVersion0Pickle(bool size_32, PasswordForm::Scheme scheme);
967 pickle->WriteInt(form.scheme);
1036 bool size_32, PasswordForm::Scheme scheme) {
1039 form.scheme = scheme;
1050 // We try both SCHEME_HTML and SCHEME_BASIC since the scheme is stored right
1035 CheckVersion0Pickle( bool size_32, PasswordForm::Scheme scheme) argument
H A Dpassword_store_mac_unittest.cc168 const PasswordForm::Scheme scheme; member in struct:PasswordFormData
187 form->scheme = form_data.scheme;
243 EXPECT_EQ(expectation->scheme, form->scheme) << test_label;
281 const PasswordForm::Scheme scheme; member in struct:__anon4379
337 EXPECT_EQ(expected[i].scheme, form.scheme) << "In iteration " << i;
435 query_form->scheme);
462 query_form->signon_realm, query_form->scheme);
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-php/lib/oauth/
H A DOAuth.php242 $scheme = (!isset($_SERVER['HTTPS']) || $_SERVER['HTTPS'] != "on") variable
245 $http_url = ($http_url) ? $http_url : $scheme .
379 * scheme://host/path
384 $scheme = (isset($parts['scheme'])) ? $parts['scheme'] : 'http'; variable
385 $port = (isset($parts['port'])) ? $parts['port'] : (($scheme == 'https') ? '443' : '80');
389 if (($scheme == 'https' && $port != '443')
390 || ($scheme == 'http' && $port != '80')) {
393 return "$scheme
[all...]
/external/chromium_org/components/password_manager/core/browser/
H A Dlogin_database.cc95 s->BindInt(COLUMN_SCHEME, form.scheme);
253 "scheme INTEGER NOT NULL,"
367 " scheme, password_type, possible_usernames, times_used, form_data, "
385 " scheme, password_type, possible_usernames, times_used, form_data, "
417 "scheme = ?, "
440 s.BindInt(10, form.scheme);
538 form->scheme = static_cast<PasswordForm::Scheme>(scheme_int);
575 "scheme, password_type, possible_usernames, times_used, form_data, "
585 if (form.scheme == PasswordForm::SCHEME_HTML && should_PSL_matching_apply) {
589 // in the |logins| table. The result (scheme, domai
600 std::string scheme = signon_realm.scheme(); local
[all...]
/external/chromium_org/components/policy/core/browser/
H A Durl_blacklist_manager.cc118 const std::string& scheme = url.scheme(); local
120 if (scheme == kBypassBlacklistWildcardForSchemes[i])
134 return !allow && host.empty() && scheme.empty() && path.empty() &&
139 std::string scheme; member in struct:policy::URLBlacklist::FilterComponents
166 &components.scheme,
179 components.scheme,
236 std::string* scheme,
249 *scheme = url::kFileScheme;
266 if (parsed.scheme
234 FilterToComponents(SegmentURLCallback segment_url, const std::string& filter, std::string* scheme, std::string* host, bool* match_subdomains, uint16* port, std::string* path, std::string* query) argument
326 CreateConditionSet( URLMatcher* url_matcher, int id, const std::string& scheme, const std::string& host, bool match_subdomains, uint16 port, const std::string& path, const std::string& query, bool allow) argument
[all...]
/external/chromium_org/components/test/data/web_database/
H A Dversion_21.sql16 CREATE TABLE logins (origin_url VARCHAR NOT NULL, action_url VARCHAR, username_element VARCHAR, username_value VARCHAR, password_element VARCHAR, password_value BLOB, submit_element VARCHAR,signon_realm VARCHAR NOT NULL,ssl_valid INTEGER NOT NULL,preferred INTEGER NOT NULL,date_created INTEGER NOT NULL,blacklisted_by_user INTEGER NOT NULL,scheme INTEGER NOT NULL,UNIQUE (origin_url, username_element, username_value, password_element, submit_element, signon_realm));
H A Dversion_22.sql16 CREATE TABLE logins (origin_url VARCHAR NOT NULL, action_url VARCHAR, username_element VARCHAR, username_value VARCHAR, password_element VARCHAR, password_value BLOB, submit_element VARCHAR,signon_realm VARCHAR NOT NULL,ssl_valid INTEGER NOT NULL,preferred INTEGER NOT NULL,date_created INTEGER NOT NULL,blacklisted_by_user INTEGER NOT NULL,scheme INTEGER NOT NULL,UNIQUE (origin_url, username_element, username_value, password_element, submit_element, signon_realm));
/external/chromium_org/content/browser/
H A Dstorage_partition_impl_unittest.cc222 bool IsWebSafeSchemeForTest(const std::string& scheme) { argument
223 return scheme == "http";
229 if (IsWebSafeSchemeForTest(origin.scheme()))
244 return origin.GetOrigin().scheme() != kOriginDevTools.scheme();
/external/chromium_org/content/browser/webui/
H A Durl_data_manager_backend.cc60 bool SchemeIsInSchemes(const std::string& scheme, argument
62 return std::find(schemes.begin(), schemes.end(), scheme) != schemes.end();
71 SchemeIsInSchemes(url.scheme(), additional_schemes)));
82 // path is the remaining portion after the scheme and hostname.
632 // No match using the host of the URL, so do a lookup using the scheme for
634 i = data_sources_.find(url.scheme() + "://");
/external/chromium_org/google_apis/drive/
H A Dgdata_wapi_parser.cc60 const char kSchemeField[] = "scheme";
137 const char* scheme; member in struct:google_apis::__anon8335::CategoryTypeMap
271 // Converts category.scheme into CategoryType enum.
273 const base::StringPiece& scheme, Category::CategoryType* result) {
275 if (scheme == kCategoryTypeMap[i].scheme) {
280 DVLOG(1) << "Unknown feed link type for scheme " << scheme;
272 GetCategoryTypeFromScheme( const base::StringPiece& scheme, Category::CategoryType* result) argument
/external/chromium_org/net/quic/
H A Dquic_network_transaction_unittest.cc150 const std::string& scheme,
152 return maker_.GetRequestHeaders(method, scheme, path);
149 GetRequestHeaders(const std::string& method, const std::string& scheme, const std::string& path) argument
/external/chromium_org/net/tools/flip_server/
H A Dspdy_interface.cc136 SpdyHeaderBlock::const_iterator scheme = headers.end(); local
146 scheme = headers.find("scheme");
148 version == headers.end() || scheme == headers.end()) {
164 scheme = headers.find(":scheme");
166 path == headers.end() || scheme == headers.end()) {
176 if (scheme->second.compare("https") == 0) {
202 i == scheme ||
/external/chromium_org/net/websockets/
H A Dwebsocket_job.cc561 std::string scheme = socket_->is_secure() ? "https" : "http"; local
563 replacements.SetScheme(scheme.c_str(), url::Component(0, scheme.length()));
/external/chromium_org/third_party/WebKit/public/web/
H A DWebViewClient.h268 virtual void registerProtocolHandler(const WebString& scheme, argument
273 virtual void unregisterProtocolHandler(const WebString& scheme, const WebURL& url) { } argument
276 virtual WebCustomHandlersState isProtocolHandlerRegistered(const WebString& scheme, const WebURL& url) argument
/external/chromium_org/url/third_party/mozilla/
H A Durl_parse.cc249 Component* scheme) {
260 *scheme = MakeRange(begin, i);
264 return false; // No colon found: no scheme
267 // Fills in all members of the Parsed structure except for the scheme.
270 // |after_scheme| is the character immediately following the scheme (after the
315 // The main parsing function for standard URLs. Standard URLs have a scheme,
326 if (DoExtractScheme(spec, spec_len, &parsed->scheme)) {
327 after_scheme = parsed->scheme.end() + 1; // Skip past the colon.
329 // Say there's no scheme when there is no colon. We could also say that
330 // everything is the scheme
247 DoExtractScheme(const CHAR* url, int url_len, Component* scheme) argument
810 ExtractScheme(const char* url, int url_len, Component* scheme) argument
814 ExtractScheme(const base::char16* url, int url_len, Component* scheme) argument
[all...]
/external/chromium_org/url/
H A Durl_canon.h267 // Scheme: Appends the scheme and colon to the URL. The output component will
270 // Canonical URLs always have a scheme. If the scheme is not present in the
271 // input, this will just write the colon to indicate an empty scheme. Does not
277 const Component& scheme,
281 const Component& scheme,
417 // Returns the default port for the given canonical scheme, or PORT_UNSPECIFIED
418 // if the scheme is unknown.
419 URL_EXPORT int DefaultPortForScheme(const char* scheme, int scheme_len);
594 : scheme(NUL
617 const CHAR* scheme; member in struct:url::URLComponentSource
[all...]
H A Durl_canon_unittest.cc75 const char* scheme; member in struct:url::__anon17223::ReplaceCase
285 // Test the case where the scheme is declared nonexistant, it should be
286 // converted into an empty scheme.
1339 // Replace scheme with filesystem. The result is garbage, but you asked
1353 // Note that for the scheme we pass in a different clear function since
1354 // there is no function to clear the scheme.
1355 SetupReplComp(&R::SetScheme, &R::ClearRef, &r, cur.scheme);
1418 // Replace scheme -- shouldn't do anything.
1430 SetupReplComp(&R::SetScheme, &R::ClearRef, &r, cur.scheme);
1460 // Replace scheme
[all...]
H A Durl_util.cc74 return compare_to[0] == 0; // When component is empty, match empty scheme.
80 // Returns true if the given scheme identified by |scheme| within |spec| is one
83 bool DoIsStandard(const CHAR* spec, const Component& scheme) { argument
84 if (!scheme.is_nonempty())
89 if (LowerCaseEqualsASCII(&spec[scheme.begin], &spec[scheme.end()],
101 // Before extracting scheme, canonicalize the URL to remove any whitespace.
110 // No scheme.
154 Component scheme; local
398 IsStandard(const char* spec, const Component& scheme) argument
402 IsStandard(const base::char16* spec, const Component& scheme) argument
[all...]
/external/nist-sip/java/gov/nist/javax/sip/address/
H A DSipUri.java82 this.scheme = SIP;
88 /** Constructor given the scheme.
89 * The scheme must be either Sip or Sips
91 public void setScheme(String scheme) { argument
92 if (scheme.compareToIgnoreCase(SIP) != 0
93 && scheme.compareToIgnoreCase(SIPS) != 0)
94 throw new IllegalArgumentException("bad scheme " + scheme);
95 this.scheme = scheme
[all...]
/external/nist-sip/java/javax/sip/header/
H A DHeaderFactory.java32 AuthorizationHeader createAuthorizationHeader(String scheme) argument
103 ProxyAuthenticateHeader createProxyAuthenticateHeader(String scheme) argument
106 ProxyAuthorizationHeader createProxyAuthorizationHeader(String scheme) argument
178 WWWAuthenticateHeader createWWWAuthenticateHeader(String scheme) argument

Completed in 414 milliseconds

12345678910