HomeSort by relevance Sort by last modified time
    Searched refs:scheme (Results 1 - 25 of 877) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Challenge.java 22 private final String scheme; field in class:Challenge
25 public Challenge(String scheme, String realm) {
26 this.scheme = scheme;
30 /** Returns the authentication scheme, like {@code Basic}. */
32 return scheme;
42 && equal(scheme, ((Challenge) o).scheme)
49 result = 31 * result + (scheme != null ? scheme.hashCode() : 0)
    [all...]
  /libcore/ojluni/src/main/java/java/nio/file/
Paths.java 92 * URI {@link URI#getScheme scheme} of the given URI. URI schemes are
97 * <p> In the case of the default provider, identified by the URI scheme
126 * the URI's scheme component is not installed
132 String scheme = uri.getScheme(); local
133 if (scheme == null)
134 throw new IllegalArgumentException("Missing scheme");
137 if (scheme.equalsIgnoreCase("file"))
142 if (provider.getScheme().equalsIgnoreCase(scheme)) {
147 throw new FileSystemNotFoundException("Provider \"" + scheme + "\" not installed");
FileSystems.java 43 * provider, identified by the URI scheme "file", creates the {@link FileSystem}
64 * getScheme} returns the same URI scheme of a provider that was previously
125 throw new Error("Default provider must use scheme 'file'");
152 * names of concrete provider classes identified by the URI scheme
158 * If this process fails or a provider's scheme is not equal to {@code "file"}
160 * without regard to case but for the default provider, the scheme is
184 * {@link URI#getScheme scheme} of the given URI. URI schemes are compared
212 * if a provider supporting the URI scheme is not installed
218 String scheme = uri.getScheme(); local
220 if (scheme.equalsIgnoreCase(provider.getScheme()))
321 String scheme = uri.getScheme(); local
    [all...]
  /external/libmicrohttpd/src/microspdy/
alstructures.h 68 * The scheme used ("http" or "https")
70 char *scheme; member in struct:SPDY_Request
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
PBESecretKeyFactory.java 17 private int scheme; field in class:PBESecretKeyFactory
26 int scheme,
34 this.scheme = scheme;
51 return new BCPBEKey(this.algName, this.algOid, scheme, digest, keySize, ivSize, pbeSpec, null);
56 param = PBE.Util.makePBEParameters(pbeSpec, scheme, digest, keySize, ivSize);
60 param = PBE.Util.makePBEMacParameters(pbeSpec, scheme, digest, keySize);
63 return new BCPBEKey(this.algName, this.algOid, scheme, digest, keySize, ivSize, pbeSpec, param);
  /external/glide/library/src/main/java/com/bumptech/glide/load/model/
UriLoader.java 27 final String scheme = model.getScheme(); local
30 if (isLocalUri(scheme)) {
37 } else if (urlLoader != null && ("http".equals(scheme) || "https".equals(scheme))) {
48 private static boolean isLocalUri(String scheme) {
49 return ContentResolver.SCHEME_FILE.equals(scheme)
50 || ContentResolver.SCHEME_CONTENT.equals(scheme)
51 || ContentResolver.SCHEME_ANDROID_RESOURCE.equals(scheme);
  /external/tpm2/
Attest_spt_fp.h 11 TPMT_SIG_SCHEME *scheme, // IN/OUT: scheme to be used for signing
17 TPMT_SIG_SCHEME *scheme, // IN: sign scheme
ZGen_2Phase.c 19 // TPM_RC_SCHEME the scheme of the key referenced by keyA is not TPM_ALG_NULL,
31 TPM_ALG_ID scheme; local
47 // if the scheme of keyA is TPM_ALG_NULL, then use the input scheme; otherwise
48 // the input scheme must be the same as the scheme of keyA
49 scheme = eccKey->publicArea.parameters.asymDetail.scheme.scheme;
50 if(scheme != TPM_ALG_NULL
    [all...]
HMAC_Start.c 17 // TPM_RC_VALUE hashAlg is not compatible with the hash algorithm of the scheme of
49 if(publicArea->parameters.keyedHashDetail.scheme.scheme == TPM_ALG_NULL)
56 = publicArea->parameters.keyedHashDetail.scheme.details.hmac.hashAlg;
ECDH_ZGen.c 18 // TPM_RC_SCHEME the scheme of the key referenced by keyA is not TPM_ALG_NULL,
43 // Make sure the scheme allows this use
44 if( eccKey->publicArea.parameters.eccDetail.scheme.scheme != TPM_ALG_ECDH
45 && eccKey->publicArea.parameters.eccDetail.scheme.scheme != TPM_ALG_NULL)
RSA_Decrypt.c 18 // TPM_RC_SCHEME incorrect input scheme, or the chosen scheme is not a valid RSA
19 // decrypt scheme
33 TPMT_RSA_DECRYPT *scheme; local
65 // Select a scheme for decrypt.
66 scheme = CryptSelectRSAScheme(in->keyHandle, &in->inScheme);
67 if(scheme == NULL)
76 scheme, in->cipherText.t.size,
RSA_Encrypt.c 17 // TPM_RC_SCHEME incorrect input scheme, or the chosen scheme is not a valid RSA
18 // decrypt scheme
31 TPMT_RSA_DECRYPT *scheme; local
57 // Select a scheme for encryption
58 scheme = CryptSelectRSAScheme(in->keyHandle, &in->inScheme);
59 if(scheme == NULL)
67 scheme, in->message.t.size, in->message.t.buffer,
Attest_spt.c 21 // TPM_RC_SCHEME both scheme and key's default scheme are empty; or scheme is
22 // empty while key's default scheme requires explicit input scheme (split
23 // signing); or non-empty default key scheme differs from scheme
28 TPMT_SIG_SCHEME *scheme, // IN/OUT: scheme to be used for signing
35 result = CryptSelectSignScheme(signHandle, scheme);
    [all...]
  /external/apache-http/src/org/apache/http/auth/
AuthScope.java 39 * a port number, a realm name and an authentication scheme name which
71 * The <tt>null</tt> value represents any authentication scheme.
76 * Default scope matching any host, port, realm and authentication scheme.
82 /** The authentication scheme the credentials apply to. */
83 private final String scheme; field in class:AuthScope
96 * <tt>authentication scheme</tt>.
107 * @param scheme the authentication scheme the credentials apply to.
109 * any authentication scheme.
112 final String realm, final String scheme)
    [all...]
  /frameworks/base/core/java/org/apache/http/conn/scheme/
HostNameResolver.java 32 package org.apache.http.conn.scheme;
LayeredSocketFactory.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/conn/scheme/LayeredSocketFactory.java $
32 package org.apache.http.conn.scheme;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/
PBEPBKDF2.java 125 private int scheme; field in class:PBEPBKDF2.BasePBKDF2
132 public BasePBKDF2(String name, int scheme)
134 this(name, scheme, SHA1);
138 // Was: public BasePBKDF2(String name, int scheme, int defaultDigest)
140 String name, int scheme, int digest, int keySizeInBits, int ivSizeInBits)
145 this.scheme = scheme;
154 private BasePBKDF2(String name, int scheme, int digest) {
155 this(name, scheme, digest, 0, 0);
176 this.algName, this.algOid, scheme, defaultDigest, keySizeInBits
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
MediaStoreIntentsTest.java 79 for (String scheme : schemes) {
82 final Uri uri = new Uri.Builder().scheme(scheme)
97 for (String scheme : schemes) {
100 final Uri uri = new Uri.Builder().scheme(scheme)
115 for (String scheme : schemes) {
118 final Uri uri = new Uri.Builder().scheme(scheme)
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
PBES2Parameters.java 17 private EncryptionScheme scheme; field in class:PBES2Parameters
37 this.scheme = encScheme;
55 scheme = EncryptionScheme.getInstance(e.nextElement());
65 return scheme;
73 v.add(scheme);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
urlparse.py 14 RFC 2368: "The mailto URL scheme", by P.Hoffman , L Masinter, J. Zwinski, July 1998.
53 # Characters valid in scheme names
112 class SplitResult(namedtuple('SplitResult', 'scheme netloc path query fragment'), ResultMixin):
120 class ParseResult(namedtuple('ParseResult', 'scheme netloc path params query fragment'), ResultMixin):
128 def urlparse(url, scheme='', allow_fragments=True):
130 <scheme>://<netloc>/<path>;<params>?<query>#<fragment>
131 Return a 6-tuple: (scheme, netloc, path, params, query, fragment).
134 tuple = urlsplit(url, scheme, allow_fragments)
135 scheme, netloc, url, query, fragment = tuple
136 if scheme in uses_params and ';' in url:
    [all...]
  /system/update_engine/
chrome_browser_proxy_resolver.cc 173 string scheme = base::ToLowerASCII(string(token.begin(), space)); local
175 if (scheme == "socks")
176 scheme += "4";
177 else if (scheme == "proxy")
178 scheme = "http";
179 else if (scheme != "https" &&
180 scheme != "socks4" &&
181 scheme != "socks5" &&
182 scheme != "direct")
183 continue; // Invalid proxy scheme
    [all...]
  /external/apache-http/src/org/apache/http/conn/
ClientConnectionManagerFactory.java 34 import org.apache.http.conn.scheme.SchemeRegistry;
  /external/nist-sip/java/gov/nist/javax/sip/header/
Credentials.java 54 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;
  /cts/tests/tests/net/src/android/net/cts/
UriTest.java 31 .scheme("http")
53 Uri u = Uri.parse("bob:lee").buildUpon().scheme("robert").build();
68 .scheme("foo")
128 .scheme("http")
137 .scheme("http")
248 .scheme("mailto")
299 private static void testHierarchical(String scheme, String authority,
315 if (scheme != null) {
316 sb.insert(0, scheme + ":");
328 uriString, ssp, uri, scheme, authority, path, query, fragment)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
urlparse.py 14 RFC 2368: "The mailto URL scheme", by P.Hoffman , L Masinter, J. Zwinski, July 1998.
59 # Characters valid in scheme names
121 class SplitResult(namedtuple('SplitResult', 'scheme netloc path query fragment'), ResultMixin):
129 class ParseResult(namedtuple('ParseResult', 'scheme netloc path params query fragment'), ResultMixin):
137 def urlparse(url, scheme='', allow_fragments=True):
139 <scheme>://<netloc>/<path>;<params>?<query>#<fragment>
140 Return a 6-tuple: (scheme, netloc, path, params, query, fragment).
143 tuple = urlsplit(url, scheme, allow_fragments)
144 scheme, netloc, url, query, fragment = tuple
145 if scheme in uses_params and ';' in url:
    [all...]

Completed in 617 milliseconds

1 2 3 4 5 6 7 8 91011>>