HomeSort by relevance Sort by last modified time
    Searched refs:scheme (Results 26 - 50 of 271) sorted by null

12 3 4 5 6 7 8 91011

  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
JCESecretKeyFactory.java 110 private int scheme; field in class:JCESecretKeyFactory.PBEKeyFactory
119 int scheme,
127 this.scheme = scheme;
144 return new JCEPBEKey(this.algName, this.algOid, scheme, digest, keySize, ivSize, pbeSpec, null);
149 param = Util.makePBEParameters(pbeSpec, scheme, digest, keySize, ivSize);
153 param = Util.makePBEMacParameters(pbeSpec, scheme, digest, keySize);
156 return new JCEPBEKey(this.algName, this.algOid, scheme, digest, keySize, ivSize, pbeSpec, param);
167 private int scheme; field in class:JCESecretKeyFactory.DESPBEKeyFactory
176 int scheme,
668 int scheme = PKCS5S2; local
    [all...]
  /libcore/luni/src/main/java/java/net/
URI.java 45 private transient String scheme; field in class:URI
80 * {@code [scheme:]scheme-specific-part[#fragment]}
82 * @param scheme
83 * the scheme part of the URI.
85 * the scheme-specific-part of the URI.
92 public URI(String scheme, String ssp, String frag)
95 if (scheme != null) {
96 uri.append(scheme);
117 * {@code [scheme:][user-info@]host[:port][path][?query][#fragment]
    [all...]
Authenticator.java 53 private String scheme; field in class:Authenticator
111 * Returns the scheme of the connection that requests authorization, for
114 * @return scheme of the connection.
117 return this.scheme;
136 * scheme of the connection that requests authentication.
157 thisAuthenticator.scheme = rScheme;
203 * scheme of the connection that requests authentication.
225 thisAuthenticator.scheme = rScheme;
261 * scheme of the connection that requests authentication.
288 thisAuthenticator.scheme = rScheme
    [all...]
  /external/chromium/net/url_request/
url_request_job_manager.h 47 // scheme. Note: also returns true if there is a built-in handler for the
48 // given scheme.
49 bool SupportsScheme(const std::string& scheme) const;
51 // Register a protocol factory associated with the given scheme. The factory
55 const std::string& scheme, URLRequest::ProtocolFactory* factory);
url_request_about_job.cc 15 const std::string& scheme) {
url_request_data_job.cc 14 const std::string& scheme) {
  /external/apache-http/src/org/apache/http/conn/
ClientConnectionManager.java 38 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>
ClientConnectionOperator.java 38 import org.apache.http.conn.scheme.SocketFactory;
104 * to the host and port, but the scheme of the target
  /external/apache-http/src/org/apache/http/impl/client/
DefaultUserTokenHandler.java 78 AuthScheme scheme = authState.getAuthScheme(); local
79 if (scheme != null && scheme.isComplete() && scheme.isConnectionBased()) {
  /external/chromium/net/http/
http_auth_handler.cc 21 // Init() is expected to set the scheme, realm, score, and properties. The
23 DCHECK(!ok || !scheme().empty());
http_auth.cc 25 // A connection-based authentication scheme must continue to use the
33 if (LowerCaseEqualsASCII(props.scheme(), (*handler)->scheme().c_str()) &&
59 // Find the right auth handler for the challenge's scheme.
67 if (LowerCaseEqualsASCII(props.scheme(), "basic")) {
69 } else if (LowerCaseEqualsASCII(props.scheme(), "digest")) {
71 } else if (LowerCaseEqualsASCII(props.scheme(), "negotiate")) {
73 } else if (LowerCaseEqualsASCII(props.scheme(), "ntlm")) {
88 // The first space-separated token is the auth-scheme.
89 // NOTE: we are more permissive than RFC 2617 which says auth-scheme
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/address/
TelURLImpl.java 52 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(':');
GenericURI.java 58 * The URI Scheme.
60 protected String scheme; field in class:GenericURI
75 scheme = uriString.substring(0, i);
100 /** Returns the value of the "scheme" of
103 * @return the scheme paramter of the URI
106 return scheme;
109 /** This method determines if this is a URI with a scheme of
112 * @return true if the scheme is "sip" or "sips", false otherwise.
  /external/webkit/WebCore/html/
HTMLMetaElement.h 51 String scheme() const;
  /frameworks/base/core/tests/coretests/src/android/net/
UriTest.java 45 .scheme("http")
73 Uri u = Uri.parse("bob:lee").buildUpon().scheme("robert").build();
138 .scheme("http")
147 .scheme("http")
201 .scheme("foo")
350 .scheme("mailto")
402 private static void testHierarchical(String scheme, String authority,
418 if (scheme != null) {
419 sb.insert(0, scheme + ":");
431 uriString, ssp, uri, scheme, authority, path, query, fragment)
    [all...]
  /cts/tests/tests/net/src/android/net/cts/
UriTest.java 42 .scheme("http")
70 Uri u = Uri.parse("bob:lee").buildUpon().scheme("robert").build();
85 .scheme("foo")
239 .scheme("http")
248 .scheme("http")
475 .scheme("mailto")
618 private static void testHierarchical(String scheme, String authority,
634 if (scheme != null) {
635 sb.insert(0, scheme + ":");
647 uriString, ssp, uri, scheme, authority, path, query, fragment)
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/
DOMTest.java 132 public String getResourceURI(String href, String scheme, String contentType) throws
134 if (scheme == null) {
135 throw new NullPointerException("scheme");
137 if ("file".equals(scheme)) {
140 if ("http".equals(scheme)) {
153 throw new DOMTestLoadException(new Exception("Unrecognized URI scheme " +
154 scheme));
157 public String createTempURI(String scheme) throws DOMTestLoadException {
158 if (scheme == null) {
159 throw new NullPointerException("scheme");
    [all...]
  /external/chromium/googleurl/src/
url_parse.cc 67 // Fills in all members of the Parsed structure except for the scheme.
70 // |after_scheme| is the character immediately following the scheme (after the
295 Component* scheme) {
306 *scheme = MakeRange(begin, i);
310 return false; // No colon found: no scheme
313 // The main parsing function for standard URLs. Standard URLs have a scheme,
324 if (DoExtractScheme(spec, spec_len, &parsed->scheme)) {
325 after_scheme = parsed->scheme.end() + 1; // Skip past the colon.
327 // Say there's no scheme when there is a colon. We could also say that
328 // everything is the scheme. Both would produce an invalid URL, but this wa
    [all...]
url_parse_file.cc 72 // the scheme given in |after_slashes|. This will initialize the host, path,
158 // Find the scheme.
164 // "/c:/foo". This is when there is no scheme, so we can allow pages to do
171 // Windows path, don't try to extract the scheme (for example, "c:\foo").
172 parsed->scheme.reset();
175 // Windows UNC path: don't try to extract the scheme, but keep the slashes.
176 parsed->scheme.reset();
181 if (ExtractScheme(&spec[begin], spec_len - begin, &parsed->scheme)) {
183 parsed->scheme.begin += begin;
184 after_scheme = parsed->scheme.end() + 1
    [all...]
  /frameworks/base/media/java/android/media/
MediaMetadataRetriever.java 136 String scheme = uri.getScheme(); local
137 if(scheme == null || scheme.equals("file")) {
  /external/apache-http/src/org/apache/http/conn/scheme/
SocketFactory.java 2 * $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;
  /external/nist-sip/java/gov/nist/javax/sip/header/
AuthenticationHeader.java 84 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) {
170 this.scheme = scheme
    [all...]
Challenge.java 60 * scheme field
62 protected String scheme; field in class:Challenge
82 return new StringBuffer(scheme)
89 * get the scheme field
93 return scheme;
236 * Set the scheme member
240 scheme = s;
  /external/webkit/WebCore/page/
UserContentURLPattern.h 46 const String& scheme() const { return m_scheme; } function in class:WebCore::UserContentURLPattern
  /build/target/board/generic_x86/
disk_layout.conf 4 scheme mbr

Completed in 619 milliseconds

12 3 4 5 6 7 8 91011