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

1 2 34 5 6 7 8 91011>>

  /packages/services/BuiltInPrintService/src/com/android/bips/discovery/
ManualDiscovery.java 89 * The supplied URI must include a hostname and may also include a scheme (either ipp:// or
107 String scheme = uri.getScheme(); local
108 if (!TextUtils.isEmpty(givenScheme) && !scheme.equals(givenScheme)) {
109 // If scheme was supplied and doesn't match this uri template, skip
114 Uri targetUri = uri.buildUpon().scheme(scheme).encodedAuthority(authority).path(path)
MdnsDiscovery.java 67 public MdnsDiscovery(BuiltInPrintService printService, String scheme) {
70 switch (scheme) {
78 throw new IllegalArgumentException("unrecognized scheme " + scheme);
114 String scheme = info.getServiceType().contains(SERVICE_IPPS) ? SCHEME_IPPS : SCHEME_IPP; local
115 Uri path = Uri.parse(scheme + "://" + info.getHost().getHostAddress() + ":" + info.getPort()
  /system/core/libdiskconfig/include/diskconfig/
diskconfig.h 91 uint8_t scheme; member in struct:disk_info
  /external/annotation-tools/asmx/test/conform/cases/
largemethod.class 
  /external/libcups/filter/
testclient.c 80 scheme[32], /* URI scheme */ local
195 if (httpSeparateURI(HTTP_URI_CODING_ALL, uri, scheme, sizeof(scheme), userpass, sizeof(userpass), hostname, sizeof(hostname), &port, resource, sizeof(resource)) < HTTP_URI_STATUS_OK)
204 if (!strcmp(scheme, "https") || !strcmp(scheme, "ipps"))
  /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...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
URLParser.java 612 String scheme = TokenNames.SIP; local
616 scheme = TokenNames.SIPS;
622 retval.setScheme(scheme);
683 String scheme = ((Token) tokens[0]).getTokenValue();
684 return scheme;
  /external/tensorflow/tensorflow/core/platform/hadoop/
hadoop_file_system.cc 143 StringPiece scheme, namenode, path; local
144 io::ParseURI(fname, &scheme, &namenode, &path);
148 if (scheme == "file") {
150 } else if (scheme == "viewfs") {
156 if (scheme != defaultScheme || namenode != defaultCluster) {
182 StringPiece scheme, namenode, path; local
183 io::ParseURI(name, &scheme, &namenode, &path);
  /frameworks/base/core/java/android/text/util/
Linkify.java 69 * Alone with the pattern that is to be matched, a URL scheme prefix is also
70 * required. Any pattern match that does not begin with the supplied scheme
71 * will have the scheme prepended to the matched text when the clickable URL
73 * the scheme <code>http://</code>. If the pattern matches example.com, which
74 * does not have a URL scheme prefix, the supplied scheme will be prepended to
351 * @param scheme URL scheme string (eg <code>http://</code>) to be
352 * prepended to the links that do not start with this scheme.
355 @Nullable String scheme) {
473 String scheme = schemes[index]; local
    [all...]
  /frameworks/base/media/java/android/media/
MediaExtractor.java 109 String scheme = uri.getScheme(); local
110 if (scheme == null || scheme.equals("file")) {
414 * the crypto scheme, and the bytes being the data specific to that scheme.
  /frameworks/base/telecomm/java/android/telecom/
Log.java 379 String scheme = uri.getScheme(); local
381 if (!TextUtils.isEmpty(scheme)) {
382 sb.append(scheme).append(":");
386 if (PhoneAccount.SCHEME_TEL.equals(scheme)) {
391 } else if (PhoneAccount.SCHEME_SIP.equals(scheme)) {
  /packages/apps/Gallery/src/com/android/camera/
MovieViewControl.java 88 String scheme = mUri.getScheme(); local
89 if ("http".equalsIgnoreCase(scheme)
90 || "rtsp".equalsIgnoreCase(scheme)) {
138 String scheme = uri.getScheme(); local
140 return ("content".equalsIgnoreCase(scheme)
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
UriImage.java 94 String scheme = mUri.getScheme(); local
95 if (ContentResolver.SCHEME_CONTENT.equals(scheme)
96 || ContentResolver.SCHEME_ANDROID_RESOURCE.equals(scheme)
97 || ContentResolver.SCHEME_FILE.equals(scheme)) {
  /packages/apps/Messaging/src/com/android/messaging/util/
UriUtil.java 69 * Extract the path from a file:// Uri, or null if the uri is of other scheme.
82 final String scheme = uri.getScheme(); local
83 return TextUtils.equals(scheme, ContentResolver.SCHEME_ANDROID_RESOURCE) ||
84 TextUtils.equals(scheme, ContentResolver.SCHEME_CONTENT) ||
85 TextUtils.equals(scheme, ContentResolver.SCHEME_FILE);
92 final String scheme = uri.getScheme(); local
93 return TextUtils.equals(scheme, ContentResolver.SCHEME_ANDROID_RESOURCE);
105 .scheme(ContentResolver.SCHEME_ANDROID_RESOURCE)
315 * SCHEME:destionation[,destination]?otherstuff
316 * where SCHEME is one of the supported sms/mms schemes
    [all...]
  /packages/services/Telecomm/src/com/android/server/telecom/
CallIntentProcessor.java 101 String scheme = handle.getScheme(); local
104 // Ensure sip URIs dialed using TEL scheme get converted to SIP scheme.
105 if (PhoneAccount.SCHEME_TEL.equals(scheme) && PhoneNumberUtils.isUriNumber(uriString)) {
NewOutgoingCallIntentBroadcaster.java 291 String scheme = isUriNumber ? PhoneAccount.SCHEME_SIP : PhoneAccount.SCHEME_TEL; local
292 callingAddress = Uri.fromParts(scheme, number, null);
  /prebuilts/tools/common/m2/repository/io/grpc/grpc-auth/0.13.2/
grpc-auth-0.13.2.jar 
  /external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
URI.java 30 * the various components (scheme, host, port, userinfo, path, query
36 * of a scheme, followed by a colon (':'), followed by a scheme-specific
37 * part. For URIs that follow the "generic URI" syntax, the scheme-
47 * the entire scheme-specific part is treated as the "path" portion
52 * scheme-specific functionality (for example, it does not know a
53 * default port for a specific scheme). Rather, it only knows the
106 /** scheme can be composed of alphanumerics and these characters */
115 /** Stores the scheme (usually the protocol) for this URI.
169 * accordingly - setting the scheme, userinfo, host,port, path, quer
585 String scheme = null; local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
URI.java 32 * the various components (scheme, host, port, userinfo, path, query
38 * of a scheme, followed by a colon (':'), followed by a scheme-specific
39 * part. For URIs that follow the "generic URI" syntax, the scheme-
49 * the entire scheme-specific part is treated as the "path" portion
54 * scheme-specific functionality (for example, it does not know a
55 * default port for a specific scheme). Rather, it only knows the
103 /** scheme can be composed of alphanumerics and these characters */
112 /** Stores the scheme (usually the protocol) for this URI.
166 * accordingly - setting the scheme, userinfo, host,port, path, quer
605 String scheme = null; local
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
BaseBlockCipher.java 109 private int scheme = -1; field in class:BaseBlockCipher
145 int scheme,
152 this.scheme = scheme;
534 // If the key is a BCPBE one without an IV, ignore the fact that the scheme is PKCS12.
535 // if (scheme == PKCS12 || key instanceof PKCS12Key)
536 if ((scheme == PKCS12 || key instanceof PKCS12Key) && !isBCPBEKeyWithoutIV(key))
677 param = PBE.Util.makePBEParameters(k.getEncoded(), scheme, digest, keySizeInBits, ivLength * 8, pbeSpec, cipher.getAlgorithmName());
688 if (scheme == PKCS5S1 || scheme == PKCS5S1_UTF8 || scheme == PKCS5S2 || scheme == PKCS5S2_UTF8
    [all...]
  /external/libcups/cups/
http-support.c 161 const char *scheme, /* I - Scheme name */
175 if (!uri || urilen < 1 || !scheme || port < 0)
184 * Assemble the URI starting with the scheme...
188 ptr = http_copy_encode(uri, scheme, end, NULL, NULL, 0);
193 if (!strcmp(scheme, "geo") || !strcmp(scheme, "mailto") || !strcmp(scheme, "tel"))
441 const char *scheme, /* I - Scheme name *
1575 char scheme[32], \/* URI components... *\/ local
2144 const char *scheme, \/* URI scheme *\/ local
2357 const char *scheme, \/* URI scheme *\/ local
    [all...]
  /external/libmicrohttpd/src/examples/
mhd2spdy_structures.h 89 char * scheme; member in struct:URI
  /external/python/cpython2/Modules/
clmodule.c 669 int scheme; local
672 if (!PyArg_ParseTuple(args, "i", &scheme))
684 if ((*open_func)(scheme, &new->ob_compressorHdl) == FAILURE ||
711 int scheme; local
716 scheme = clQueryScheme(header);
717 if (scheme < 0) {
718 PyErr_SetString(ClError, "unknown compression scheme");
722 return PyInt_FromLong(scheme);
728 int scheme; local
730 if (!PyArg_ParseTuple(args, "i", &scheme))
791 int scheme; local
809 int scheme; local
827 int scheme, paramID, value; local
    [all...]
  /external/tensorflow/tensorflow/core/platform/
env.cc 52 Status Register(const string& scheme, Factory factory) override;
53 FileSystem* Lookup(const string& scheme) override;
62 Status FileSystemRegistryImpl::Register(const string& scheme,
65 if (!registry_.emplace(string(scheme), std::unique_ptr<FileSystem>(factory()))
67 return errors::AlreadyExists("File factory for ", scheme,
73 FileSystem* FileSystemRegistryImpl::Lookup(const string& scheme) {
75 const auto found = registry_.find(scheme);
94 StringPiece scheme, host, path; local
95 io::ParseURI(fname, &scheme, &host, &path);
96 FileSystem* file_system = file_system_registry_->Lookup(scheme.ToString())
168 StringPiece scheme, host, path; local
    [all...]
  /external/tensorflow/tensorflow/core/platform/s3/
s3_file_system.cc 97 cfg.scheme = Aws::Http::Scheme::HTTP;
99 cfg.scheme = Aws::Http::Scheme::HTTPS;
147 StringPiece scheme, bucketp, objectp; local
148 io::ParseURI(fname, &scheme, &bucketp, &objectp);
149 if (scheme != "s3") {

Completed in 651 milliseconds

1 2 34 5 6 7 8 91011>>