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

1 2 3 4 5 6 78 91011>>

  /external/libvncserver/libvncserver/
websockets.c 168 static rfbBool webSocketsHandshake(rfbClientPtr cl, char *scheme);
202 char bbuf[4], *scheme; local
229 scheme = "wss";
231 scheme = "ws";
239 rfbLog("Got '%s' WebSockets handshake\n", scheme);
241 if (!webSocketsHandshake(cl, scheme)) {
249 webSocketsHandshake(rfbClientPtr cl, char *scheme)
407 SERVER_HANDSHAKE_HIXIE, prefix, origin, prefix, scheme,
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
AuthenticatorAdapter.java 46 url.host(), getConnectToInetAddress(proxy, url), url.port(), url.scheme(),
70 url.scheme(), challenge.getRealm(), challenge.getScheme(), url.url(),
  /external/pdfium/third_party/libtiff/
tif_thunder.c 37 * ThunderScan uses an encoding scheme designed for
189 TIFFInitThunderScan(TIFF* tif, int scheme)
191 (void) scheme;
  /libcore/ojluni/src/main/java/sun/net/www/
ParseUtil.java 310 private static URI createURI(String scheme,
316 String s = toString(scheme, null,
319 checkPath(s, scheme, path);
323 private static String toString(String scheme,
334 if (scheme != null) {
335 sb.append(scheme);
527 // If a scheme is given then the path, if given, must be absolute
529 private static void checkPath(String s, String scheme, String path)
532 if (scheme != null) {
  /packages/apps/Dialer/java/com/android/incallui/calllocation/impl/
LocationUrlBuilder.java 84 .scheme(HTTPS_SCHEME)
110 .scheme(HTTPS_SCHEME)
  /packages/services/Telecomm/src/com/android/server/telecom/components/
UserCallIntentProcessor.java 95 String scheme = handle.getScheme(); local
98 if (!PhoneAccount.SCHEME_VOICEMAIL.equals(scheme)) {
  /system/tpm/trunks/
trunks_factory_for_test.cc 162 TPM_ALG_ID scheme,
167 return target_->AsymmetricEncrypt(key_handle, scheme, hash_alg, plaintext,
172 TPM_ALG_ID scheme,
177 return target_->AsymmetricDecrypt(key_handle, scheme, hash_alg, ciphertext,
182 TPM_ALG_ID scheme,
187 return target_->Sign(key_handle, scheme, hash_alg, plaintext, delegate,
192 TPM_ALG_ID scheme,
197 return target_->Verify(key_handle, scheme, hash_alg, plaintext, signature,
  /external/apache-http/src/org/apache/http/conn/scheme/
PlainSocketFactory.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/conn/scheme/PlainSocketFactory.java $
32 package org.apache.http.conn.scheme;
Scheme.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/conn/scheme/Scheme.java $
31 package org.apache.http.conn.scheme;
38 * Encapsulates specifics of a protocol scheme such as "http" or "https".
48 * Scheme https = new Scheme("https", new MySecureSocketFactory(), 443);
62 public final class Scheme {
64 /** The name of this scheme, in lowercase. (e.g. http, https) */
67 /** The socket factory for this scheme */
70 /** The default port for this scheme */
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
PBE.java 95 throw new IllegalStateException("PKCS5 scheme 1 only supports MD2, MD5 and SHA1.");
145 throw new IllegalStateException("unknown digest scheme for PBE PKCS5S2 encryption.");
193 throw new IllegalStateException("unknown digest scheme for PBE encryption.");
210 int scheme,
224 PBEParametersGenerator generator = makePBEGenerator(scheme, digest);
243 if ((scheme == PKCS5S2 || scheme == PKCS5S2_UTF8)
  /external/libcups/cups/
dest-localization.c 290 char scheme[32], /* URI scheme */ local
330 scheme, sizeof(scheme), userpass, sizeof(userpass),
356 if (!strcmp(scheme, "https"))
  /external/libxml2/
buf.h 27 xmlBufferAllocationScheme scheme);
  /external/oauth/core/src/main/java/net/oauth/signature/
OAuthSignatureMethod.java 161 String scheme = uri.getScheme().toLowerCase(); local
163 boolean dropPort = (scheme.equals("http") && uri.getPort() == 80)
164 || (scheme.equals("https") && uri.getPort() == 443);
177 return scheme + "://" + authority + path;
  /external/syslinux/gpxe/src/core/
hw.c 72 .scheme = "hw",
  /frameworks/support/tv-provider/tests/src/android/support/media/tv/
ChannelLogoUtilsTest.java 72 .scheme(ContentResolver.SCHEME_ANDROID_RESOURCE)
  /prebuilts/tools/common/m2/repository/io/grpc/grpc-auth/1.0.1/
grpc-auth-1.0.1.jar 
  /prebuilts/tools/common/m2/repository/io/grpc/grpc-auth/1.0.3/
grpc-auth-1.0.3.jar 
  /system/core/libdiskconfig/
diskconfig.c 178 /* find the partition scheme */
179 if (!(tmp = config_str(devroot, "scheme", NULL))) {
180 ALOGE("partition scheme is required");
183 dinfo->scheme = PART_SCHEME_MBR;
185 ALOGE("'gpt' partition scheme not supported yet.");
188 ALOGE("Unknown partition scheme specified: %s", tmp);
262 * though. If we use the pc-bios partitioning scheme, we must use extended
394 switch (dinfo->scheme) {
401 ALOGE("Uknown partition scheme.");
465 printf("Scheme: ")
    [all...]
  /system/core/libdiskconfig/include/diskconfig/
diskconfig.h 91 uint8_t scheme; member in struct:disk_info
  /external/nist-sip/java/gov/nist/javax/sip/header/
HeaderFactoryImpl.java 208 * scheme value.
210 * @param scheme - the new string value of the scheme.
212 * unexpectedly while parsing the scheme value.
215 public AuthorizationHeader createAuthorizationHeader(String scheme)
217 if (scheme == null)
218 throw new NullPointerException("null arg scheme ");
220 auth.setScheme(scheme);
667 * scheme value.
669 * @param scheme - the new string value of the scheme
    [all...]
  /frameworks/support/core-utils/java/android/support/v4/content/
LocalBroadcastManager.java 214 final String scheme = intent.getScheme(); local
220 TAG, "Resolving type " + type + " scheme " + scheme
239 int match = receiver.filter.match(action, type, scheme, data,
  /libcore/luni/src/test/java/tests/org/w3c/dom/
DOMTestCase.java 102 public void assertURIEquals(String assertID, String scheme, String path,
146 if (scheme != null) {
147 assertEquals(assertID, scheme, actualScheme);
  /libcore/ojluni/src/main/java/java/nio/file/spi/
FileSystemProvider.java 47 * identified by a {@code URI} {@link #getScheme() scheme}. The default provider
48 * is identified by the URI scheme "file". It creates the {@link FileSystem} that
59 * file system is identified by a {@code URI} where the URI's scheme matches
60 * the provider's {@link #getScheme scheme}. The default file system, for example,
120 String scheme = provider.getScheme(); local
123 if (!scheme.equalsIgnoreCase("file")) {
126 if (p.getScheme().equalsIgnoreCase(scheme)) {
183 * Returns the URI scheme that identifies this provider.
185 * @return The URI scheme
195 * scheme equal (without regard to case) to the scheme supported by thi
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/fs/
UnixUriUtils.java 49 String scheme = uri.getScheme(); local
50 if ((scheme == null) || !scheme.equalsIgnoreCase("file"))
51 throw new IllegalArgumentException("URI scheme is not \"file\"");
  /packages/apps/Car/libs/car-apps-common/src/com/android/car/apps/common/
UriUtils.java 84 * Gets a URI with short cut icon scheme.
93 * Gets a URI with scheme = {@link ContentResolver#SCHEME_ANDROID_RESOURCE} for
110 * Gets a URI with the account image scheme.
119 * Gets a URI with the account image scheme, and specifying an URI to be
192 // Trim off the scheme + 3 extra for "://", then replace the first "/" with a ":"
214 String scheme = resourceUri.getScheme() == null ? null local
216 return HTTP_PREFIX.equals(scheme) || HTTPS_PREFIX.equals(scheme);

Completed in 1902 milliseconds

1 2 3 4 5 6 78 91011>>