Searched refs:scheme (Results 26 - 50 of 382) sorted by relevance

1234567891011>>

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
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/chromium/chrome/common/
H A Dabout_handler.cc25 if (url.scheme() != kAboutScheme)
H A Dcontent_settings_helper.cc18 origin.scheme() + chrome::kStandardSchemeSeparator : "");
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DCredentials.java54 protected String scheme; field in class:Credentials
78 * get the scheme field.
82 return scheme;
86 * Set the scheme member
90 scheme = s;
102 String retval = scheme;
/external/webkit/Source/WebKit/mac/Misc/
H A DWebUserContentURLPattern.h34 - (NSString *)scheme;
H A DWebUserContentURLPattern.mm69 - (NSString *)scheme
71 return _private->pattern.scheme();
/external/chromium/chrome/browser/custom_handlers/
H A Dprotocol_handler_registry.cc66 const std::string& scheme) const {
67 ProtocolHandlerMap::const_iterator i = protocolHandlers_.find(scheme);
72 const std::string& scheme) const {
73 return GetHandlerFor(scheme) != NULL ||
74 !net::URLRequest::IsHandledProtocol(scheme);
84 const std::string& scheme) {
92 ProtocolHandler* handler = GetHandlerFor(request->url().scheme());
83 Factory(net::URLRequest* request, const std::string& scheme) argument
/external/chromium/chrome/browser/
H A Dexternal_protocol_handler.cc79 const std::string& scheme) {
84 if (scheme.length() == 1) {
102 if (update_excluded_schemas->GetBoolean(scheme, &should_block))
110 void ExternalProtocolHandler::SetBlockState(const std::string& scheme, argument
120 update_excluded_schemas->Remove(scheme, NULL);
122 update_excluded_schemas->SetBoolean(scheme,
134 // Escape the input scheme to be sure that the command does not
138 BlockState block_state = GetBlockState(escaped_url.scheme());
78 GetBlockState( const std::string& scheme) argument
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebsecurityorigin.cpp43 An origin consists of a host name, a scheme, and a port number. Web sites
64 web page, and use host(), scheme() and port() to identify the security origin.
94 Returns the scheme defining the security origin.
96 QString QWebSecurityOrigin::scheme() const function in class:QWebSecurityOrigin
224 Adds the given \a scheme to the list of schemes that are considered equivalent
225 to the \c file: scheme.
231 void QWebSecurityOrigin::addLocalScheme(const QString& scheme) argument
233 SchemeRegistry::registerURLSchemeAsLocal(scheme);
239 Removes the given \a scheme from the list of local schemes.
241 \note You can not remove the \c{file://} scheme fro
246 removeLocalScheme(const QString& scheme) argument
265 const QString scheme = *i; local
[all...]
/external/chromium/net/http/
H A Dhttp_auth_cache.h21 // For each (origin, realm, scheme) triple the cache stores a
23 // - the origin server {protocol scheme, host, port}
25 // - the last auth handler used (contains realm and authentication scheme)
27 // Entries can be looked up by either (origin, realm, scheme) or (origin, path).
43 // scheme |scheme|.
44 // |origin| - the {scheme, host, port} of the server.
46 // |scheme| - the authentication scheme (i.e. basic, negotiate).
50 HttpAuth::Scheme scheme);
125 HttpAuth::Scheme scheme() const { function in class:net::HttpAuthCache::Entry
[all...]
/external/webkit/Source/WebKit/win/
H A DWebUserContentURLPattern.cpp100 HRESULT WebUserContentURLPattern::scheme(BSTR* scheme) argument
102 if (!scheme)
104 *scheme = BString(m_pattern.scheme()).release();
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DJCESecretKeyFactory.java111 private int scheme; field in class:JCESecretKeyFactory.PBEKeyFactory
120 int scheme,
128 this.scheme = scheme;
145 return new BCPBEKey(this.algName, this.algOid, scheme, digest, keySize, ivSize, pbeSpec, null);
150 param = Util.makePBEParameters(pbeSpec, scheme, digest, keySize, ivSize);
154 param = Util.makePBEMacParameters(pbeSpec, scheme, digest, keySize);
157 return new BCPBEKey(this.algName, this.algOid, scheme, digest, keySize, ivSize, pbeSpec, param);
168 private int scheme; field in class:JCESecretKeyFactory.DESPBEKeyFactory
177 int scheme,
116 PBEKeyFactory( String algorithm, DERObjectIdentifier oid, boolean forCipher, int scheme, int digest, int keySize, int ivSize) argument
173 DESPBEKeyFactory( String algorithm, DERObjectIdentifier oid, boolean forCipher, int scheme, int digest, int keySize, int ivSize) argument
[all...]
/external/chromium/googleurl/src/
H A Durl_util.cc98 return compare_to[0] == 0; // When component is empty, match empty scheme.
104 // Returns true if the given scheme identified by |scheme| within |spec| is one
107 bool DoIsStandard(const CHAR* spec, const url_parse::Component& scheme) { argument
108 if (!scheme.is_nonempty())
113 if (LowerCaseEqualsASCII(&spec[scheme.begin], &spec[scheme.end()],
125 // Before extracting scheme, canonicalize the URL to remove any whitespace.
134 // No scheme.
177 url_parse::Component scheme; local
391 IsStandard(const char* spec, const url_parse::Component& scheme) argument
395 IsStandard(const char16* spec, const url_parse::Component& scheme) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
H A DBaseSecretKeyFactory.java110 private int scheme; field in class:BaseSecretKeyFactory.DESPBEKeyFactory
119 int scheme,
127 this.scheme = scheme;
144 return new BCPBEKey(this.algName, this.algOid, scheme, digest, keySize, ivSize, pbeSpec, null);
149 param = PBE.Util.makePBEParameters(pbeSpec, scheme, digest, keySize, ivSize);
153 param = PBE.Util.makePBEMacParameters(pbeSpec, scheme, digest, keySize);
168 return new BCPBEKey(this.algName, this.algOid, scheme, digest, keySize, ivSize, pbeSpec, param);
115 DESPBEKeyFactory( String algorithm, DERObjectIdentifier oid, boolean forCipher, int scheme, int digest, int keySize, int ivSize) argument
/external/chromium/chrome/browser/chromeos/
H A Dproxy_cros_settings_provider.h32 net::ProxyServer::Scheme scheme) const;
37 net::ProxyServer::Scheme scheme) const;
/external/chromium/net/base/
H A Dauth.h33 std::wstring scheme; // "Basic", "Digest", or whatever other method is used. member in class:net::AuthChallengeInfo
52 std::wstring scheme; // the authentication scheme. member in class:net::AuthData
/external/chromium/chrome/common/extensions/docs/examples/extensions/proxy_configuration/test/
H A Dproxy_form_controller_test.js274 scheme: 'socks5',
281 this.assertEqual('socks5', single.scheme);
302 scheme: 'https',
314 this.assertEqual('https', single.scheme);
324 scheme: 'http',
329 scheme: 'https',
334 scheme: 'socks4',
339 scheme: 'socks5',
353 this.assertEqual('http', server.scheme);
358 this.assertEqual('https', server.scheme);
[all...]
/external/apache-http/src/org/apache/http/conn/
H A DClientConnectionManager.java38 import org.apache.http.conn.scheme.SchemeRegistry;
57 * Obtains the scheme registry used by this manager.
59 * @return the scheme registry, never <code>null</code>
/external/apache-http/src/org/apache/http/impl/client/
H A DDefaultUserTokenHandler.java78 AuthScheme scheme = authState.getAuthScheme();
79 if (scheme != null && scheme.isComplete() && scheme.isConnectionBased()) {
/external/chromium/chrome/browser/net/
H A Durl_request_failed_dns_job.h20 const std::string& scheme);
/external/chromium/chrome/browser/ui/login/
H A Dlogin_prompt_unittest.cc15 auth_info->scheme = L"Basic";
/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
/external/nist-sip/java/gov/nist/javax/sip/address/
H A DTelURLImpl.java52 this.scheme = "tel";
81 /** Returns the value of the "scheme" of this URI, for example "sip", "sips"
84 * @return the scheme paramter of the URI
87 return this.scheme;
100 /** This method determines if this is a URI with a scheme of "sip" or "sips".
102 * @return true if the scheme is "sip" or "sips", false otherwise.
158 return this.scheme + ":" + telephoneNumber.encode();
166 buffer.append(this.scheme).append(':');
/external/webkit/Source/JavaScriptCore/wtf/url/api/
H A DParsedURL.h42 String scheme() const;
/external/webkit/Source/JavaScriptCore/wtf/url/src/
H A DURLSegments.h59 // contain an entry for the four-character scheme, and it doesn't know about
93 URLComponent scheme; member in class:WTF::URLSegments

Completed in 1216 milliseconds

1234567891011>>