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

1 2 3 45 6 7 8 91011>>

  /frameworks/base/core/java/android/nfc/
NfcActivityManager.java 389 String scheme = uri.getScheme(); local
390 if (scheme == null || (!scheme.equalsIgnoreCase("file") &&
391 !scheme.equalsIgnoreCase("content"))) {
393 "either scheme file or scheme content");
  /frameworks/base/graphics/java/android/graphics/drawable/
Icon.java 374 final String scheme = uri.getScheme(); local
376 if (ContentResolver.SCHEME_CONTENT.equals(scheme)
377 || ContentResolver.SCHEME_FILE.equals(scheme)) {
    [all...]
  /frameworks/base/media/java/android/media/
MediaMetadataRetriever.java 160 String scheme = uri.getScheme(); local
161 if(scheme == null || scheme.equals("file")) {
    [all...]
  /frameworks/support/compat/src/main/java/androidx/core/graphics/drawable/
IconCompat.java 453 final String scheme = uri.getScheme(); local
455 if (ContentResolver.SCHEME_CONTENT.equals(scheme)
456 || ContentResolver.SCHEME_FILE.equals(scheme)) {
  /libcore/ojluni/src/main/java/java/io/
File.java 401 * An absolute, hierarchical URI with a scheme equal to
422 String scheme = uri.getScheme(); local
423 if ((scheme == null) || !scheme.equalsIgnoreCase("file"))
424 throw new IllegalArgumentException("URI scheme is not \"file\"");
714 * @return An absolute, hierarchical URI with a scheme equal to
    [all...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
HostAuth.java 159 * Builds a URI scheme name given the parameters for a {@code HostAuth}. If
199 * Returns the flags for the specified scheme.
201 public static int getSchemeFlags(String scheme) {
202 String[] schemeParts = scheme.split("\\+");
370 // Set protocol, security, and additional flags based on uri scheme
540 String scheme = uri.getScheme(); local
541 setConnection(scheme, uri.getHost(), uri.getPort());
545 * Legacy code for setting connection values from a "scheme" (see above)
547 public void setConnection(String scheme, String host, int port) {
548 String[] schemeParts = scheme.split("\\+")
567 final String scheme = uri.getScheme(); local
    [all...]
  /packages/apps/Music/src/com/android/music/
AudioPreview.java 88 String scheme = mUri.getScheme(); local
97 if (scheme.equals("http")) {
167 if (scheme.equals(ContentResolver.SCHEME_CONTENT)) {
179 } else if (scheme.equals("file")) {
  /packages/services/BuiltInPrintService/jni/ipphelper/
ipphelper.c 681 char scheme[1024]; local
685 httpSeparateURI(0, uri, scheme, 1024, username, 1024, host, 1024, &port, resource, resourcelen);
    [all...]
  /system/tpm/trunks/
tpm_utility_test.cc 537 TPMT_RSA_DECRYPT scheme; local
542 .WillOnce(DoAll(SetArgPointee<5>(out_message), SaveArg<3>(&scheme),
547 EXPECT_EQ(scheme.scheme, TPM_ALG_OAEP);
548 EXPECT_EQ(scheme.details.oaep.hash_alg, TPM_ALG_SHA256);
563 TPMT_RSA_DECRYPT scheme; local
568 .WillOnce(DoAll(SetArgPointee<5>(out_message), SaveArg<3>(&scheme),
573 EXPECT_EQ(scheme.scheme, TPM_ALG_RSAES);
664 TPMT_RSA_DECRYPT scheme; local
692 TPMT_RSA_DECRYPT scheme; local
844 TPMT_SIG_SCHEME scheme; local
870 TPMT_SIG_SCHEME scheme; local
    [all...]
  /frameworks/base/core/java/android/content/
IntentFilter.java 46 * match against actions, categories, and data (either via its type, scheme,
67 * itself divided into three attributes: type, scheme, authority, and path.
69 * specified must match the contents of the Intent. If you specify a scheme
72 * that is supplied by their content provider. Specifying a type with no scheme
92 * <strong>data scheme+authority+path</strong> if specified) must match
109 * <p><strong>Data Scheme</strong> matches if any of the given values match the
110 * Intent data's scheme.
111 * The Intent scheme is determined by calling {@link Intent#getData}
113 * <em>Note that scheme matching here is <b>case sensitive</b>, unlike
117 * <p><strong>Data Scheme Specific Part</strong> matches if any of the given values matc
605 final String scheme = mDataSchemes.get(i); local
    [all...]
ClipData.java 385 final String scheme = uri.getScheme(); local
386 if (SCHEME_CONTENT.equals(scheme)
387 || SCHEME_ANDROID_RESOURCE.equals(scheme)
388 || SCHEME_FILE.equals(scheme)) {
578 final String scheme = mUri.getScheme(); local
579 if (SCHEME_CONTENT.equals(scheme)
580 || SCHEME_ANDROID_RESOURCE.equals(scheme)
581 || SCHEME_FILE.equals(scheme)) {
    [all...]
  /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 
  /cts/hostsidetests/appsecurity/test-apps/EphemeralTestApp/EphemeralApp1/src/com/android/cts/ephemeralapp1/
ClientTest.java 1398 final String scheme = schemesIterator.next(); local
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
MediaCodecClearKeyPlayer.java 280 String scheme = uri.getScheme(); local
281 if (scheme.startsWith("http")) {
283 } else if (scheme.equals("android.resource")) {
  /external/apache-http/src/org/apache/http/impl/client/
DefaultRequestDirector.java 86 import org.apache.http.conn.scheme.Scheme;
595 String scheme = null; local
601 scheme = uri.getScheme();
606 + " scheme=" + scheme + ", host=" + host + ", path=" + path);
886 Scheme scheme = connManager.getSchemeRegistry(). local
1099 Scheme scheme = connManager.getSchemeRegistry().getScheme(host); local
    [all...]
  /external/libcups/cups/
ipp.c 4801 char scheme[64], \/* Scheme from URI *\/ local
    [all...]
  /external/libmicrohttpd/src/spdy2http/
proxy.c 78 char * scheme; member in struct:URI
194 free(uri->scheme);
214 scheme = $2
251 asprintf(&((*uri)->scheme),
279 /*if(0 == strcasecmp("http", uri->scheme))
284 else if(0 == strcasecmp("https", uri->scheme))
291 PRINT_INFO("no standard scheme!");
837 const char *scheme,
844 (void)scheme;
882 ret = asprintf(&(proxy->url),"%s://%s%s", scheme, glob_opt.http_backend, path)
    [all...]
  /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/nist-sip/java/gov/nist/javax/sip/message/
SIPRequest.java 288 String scheme = ((SipUri) requestLine.getUri()).getScheme(); local
289 if ("sips".equalsIgnoreCase(scheme)) {
292 throw new ParseException("Scheme for contact should be sips:" + sipUri, 0);
374 * scheme. SIP elements MAY translate non-SIP URIs using any mechanism at their disposal,
375 * resulting in SIP URI, SIPS URI, or some other scheme.
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
HttpUrl.java 35 * A uniform resource locator (URL) with a scheme of either {@code http} or {@code https}. Use this
40 * .scheme("https")
86 * <h4>Scheme</h4>
87 * Sometimes referred to as <i>protocol</i>, A URL's scheme describes what mechanism should be used
112 * scheme's default is used.
164 * Hostnames have different requirements and use a different encoding scheme. It consists of IDNA
247 * <p>Instances of {@link HttpUrl} are well-formed and always have a scheme, host, and path. With
248 * {@code java.net.URL} it's possible to create an awkward URL like {@code http:/} with scheme and
274 private final String scheme; field in class:HttpUrl
309 this.scheme = builder.scheme
361 public String scheme() { method in class:HttpUrl
662 String scheme; field in class:HttpUrl.Builder
675 public Builder scheme(String scheme) { method in class:HttpUrl.Builder
    [all...]
  /external/pdfium/third_party/libtiff/
tiffio.h 254 uint16 scheme; member in struct:__anon31524
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/tester/org/apache/http/impl/client/
DefaultRequestDirector.java 48 import org.apache.http.conn.scheme.Scheme;
900 Scheme scheme = connManager.getSchemeRegistry(). local
1129 Scheme scheme = connManager.getSchemeRegistry().getScheme(host); local
    [all...]
  /external/robolectric-shadows/shadows/httpclient/src/main/java/org/robolectric/shadows/httpclient/
DefaultRequestDirector.java 80 import org.apache.http.conn.scheme.Scheme;
918 Scheme scheme = connManager.getSchemeRegistry(). local
1147 Scheme scheme = connManager.getSchemeRegistry().getScheme(host); local
    [all...]
  /frameworks/base/core/java/android/app/
DownloadManager.java 446 String scheme = uri.getScheme(); local
447 if (scheme == null || (!scheme.equals("http") && !scheme.equals("https"))) {
    [all...]

Completed in 826 milliseconds

1 2 3 45 6 7 8 91011>>