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

1 2 3 4 5 6 7 8 91011>>

  /external/curl/tests/libtest/
lib1536.c 31 char *scheme; local
38 /* Test that scheme is properly initialized on curl_easy_init.
41 res = curl_easy_getinfo(curl, CURLINFO_SCHEME, &scheme);
47 if(scheme != NULL) {
48 fprintf(stderr, "%s:%d scheme init failed; expected NULL\n",
63 /* Test that a scheme is properly set after receiving an HTTP resource.
66 res = curl_easy_getinfo(curl, CURLINFO_SCHEME, &scheme);
72 if(memcmp(scheme, "HTTP", 5) != 0) {
73 fprintf(stderr, "%s:%d scheme of http resource is incorrect; "
76 (scheme == NULL ? "NULL" : "invalid"))
    [all...]
  /external/tpm2/
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,
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...]
  /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;
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;
  /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/tensorflow/tensorflow/core/platform/posix/
posix_file_system.h 68 StringPiece scheme, host, path; variable
69 io::ParseURI(name, &scheme, &host, &path);
  /external/apache-http/src/org/apache/http/impl/client/
DefaultUserTokenHandler.java 84 AuthScheme scheme = authState.getAuthScheme(); local
85 if (scheme != null && scheme.isComplete() && scheme.isConnectionBased()) {
  /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);
  /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/
StringLoader.java 10 * A model loader for handling certain string models. Handles paths, urls, and any uri string with a scheme handled by
29 final String scheme = uri.getScheme(); local
30 if (scheme == null) {
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/libcups/cups/
testcreds.c 32 char scheme[HTTP_MAX_URI], /* Scheme from URI */ local
63 if (httpSeparateURI(HTTP_URI_CODING_MOST, argv[1], scheme, sizeof(scheme), username, sizeof(username), hostname, sizeof(hostname), &port, resource, sizeof(resource)) < HTTP_URI_STATUS_OK)
  /external/libxml2/include/libxml/
uri.h 34 char *scheme; /* the URI scheme */ member in struct:_xmlURI
  /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...]
  /external/syslinux/core/fs/pxe/
url.h 18 char *scheme; member in struct:url_info
  /external/syslinux/gpxe/src/include/gpxe/
open.h 50 * This is the "scheme" portion of the URI, e.g. "http" or
53 const char *scheme; member in struct:uri_opener
  /external/tensorflow/tensorflow/core/platform/windows/
windows_file_system.h 91 StringPiece scheme, host, path; variable
92 io::ParseURI(name, &scheme, &host, &path);
  /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...]
  /external/apache-http/src/org/apache/http/conn/scheme/
SchemeRegistry.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/conn/scheme/SchemeRegistry.java $
31 package org.apache.http.conn.scheme;
41 * A set of supported protocol {@link Scheme schemes}.
60 private final Map<String,Scheme> registeredSchemes;
64 * Creates a new, empty scheme registry.
68 registeredSchemes = new LinkedHashMap<String,Scheme>();
73 * Obtains a scheme by name.
75 * @param name the name of the scheme to look up (in lowercase)
77 * @return the scheme, never <code>null</code>
80 * if the scheme with the given name is not registere
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
UsbAccessoryUriActivity.java 63 String scheme = mUri.getScheme(); local
64 if (!"http".equals(scheme) && !"https".equals(scheme)) {

Completed in 542 milliseconds

1 2 3 4 5 6 7 8 91011>>