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

1 23 4 5 6 7 8 91011>>

  /external/google-breakpad/src/common/windows/
http_upload.cc 82 wchar_t scheme[16], host[256], path[256]; local
86 components.lpszScheme = scheme;
87 components.dwSchemeLength = sizeof(scheme) / sizeof(scheme[0]);
97 if (wcscmp(scheme, L"https") == 0) {
99 } else if (wcscmp(scheme, L"http") != 0) {
  /external/libcups/cups/
testhttp.c 31 *scheme, /* Scheme string */ member in struct:uri_test_s
124 /* Missing scheme */
132 /* Unknown scheme */
150 /* Bad scheme */
226 char scheme[HTTP_MAX_URI], /* Scheme from URI */ local
393 uri_tests[i].uri, scheme, sizeof(scheme),
398 strcmp(scheme, uri_tests[i].scheme) |
    [all...]
testppd.c 874 char scheme[32], /* URI scheme */ local
880 if (httpSeparateURI(HTTP_URI_CODING_ALL, argv[1], scheme, sizeof(scheme), userpass, sizeof(userpass), host, sizeof(host), &port, resource, sizeof(resource)) < HTTP_URI_STATUS_OK)
886 http = httpConnect2(host, port, NULL, AF_UNSPEC, !strcmp(scheme, "ipps") ? HTTP_ENCRYPTION_ALWAYS : HTTP_ENCRYPTION_IF_REQUESTED, 1, 30000, NULL);
  /external/libevent/sample/
https-client.c 195 const char *scheme, *host, *path, *query; local
284 scheme = evhttp_uri_get_scheme(http_uri);
285 if (scheme == NULL || (strcasecmp(scheme, "https") != 0 &&
286 strcasecmp(scheme, "http") != 0)) {
299 port = (strcasecmp(scheme, "http") == 0) ? 80 : 443;
394 if (strcasecmp(scheme, "http") == 0) {
  /external/libmicrohttpd/src/microspdy/
applicationlayer.c 68 char *scheme = NULL; local
118 else if(strcmp(":scheme",iterator->name) == 0)
122 scheme = iterator->value[0];
139 request->scheme=scheme;
147 || NULL == scheme || strlen(scheme) == 0
167 scheme,
  /external/nist-sip/java/gov/nist/javax/sip/header/
Challenge.java 60 * scheme field
62 protected String scheme; field in class:Challenge
82 return new StringBuffer(scheme)
89 * get the scheme field
93 return scheme;
236 * Set the scheme member
240 scheme = s;
  /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/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
OkHeaders.java 234 * Parse RFC 2617 challenges. This API is only interested in the scheme
238 // auth-scheme = token
240 // challenge = auth-scheme 1*SP 1#auth-param
254 String scheme = value.substring(tokenStart, pos).trim(); local
258 // It needs to be fixed to handle any scheme and any parameters
273 result.add(new Challenge(scheme, realm));
  /external/syslinux/gpxe/src/include/gpxe/
uri.h 31 * scheme = "http", host = "www.etherboot.org", path = "/wiki"
39 * scheme = "mailto", opaque = "bob@nowhere.com"
43 * scheme = "ftp", user = "joe", password = "secret",
50 /** Scheme */
51 const char *scheme; member in struct:uri
91 #define uri_get_field( uri, field ) (&uri->scheme)[field]
108 * An absolute URI begins with a scheme, e.g. "http:" or "mailto:".
113 return ( uri->scheme != NULL );
  /external/tensorflow/tensorflow/core/platform/
env_test.cc 244 // Try it with the "file://" URI scheme.
249 // Try it without any URI scheme.
281 StringPiece scheme, host, path; variable
282 io::ParseURI(dir, &scheme, &host, &path);
297 StringPiece scheme, host, path; variable
298 io::ParseURI(dir, &scheme, &host, &path);
299 if (scheme != "tmpdirfs") {
300 return errors::FailedPrecondition("scheme must be tmpdirfs");
file_system.cc 235 StringPiece scheme, host, remaining_dir; local
236 io::ParseURI(dirname, &scheme, &host, &remaining_dir);
239 Status status = FileExists(io::CreateURI(scheme, host, remaining_dir));
260 Status status = CreateDir(io::CreateURI(scheme, host, built_path));
  /external/tpm2/
Object_spt.c 334 // TPM_RC_SCHEME inconsistent attributes decrypt, sign, restricted and key's scheme ID;
335 // or hash algorithm is inconsistent with the scheme ID for keyed hash
354 keyScheme = &publicArea->parameters.asymDetail.scheme;
362 // for scheme
365 && keyScheme->scheme != TPM_ALG_NULL)
367 // A restrict sign key must have a non-NULL scheme
370 && keyScheme->scheme == TPM_ALG_NULL)
372 // Keys must have a valid sign or decrypt scheme, or a TPM_ALG_NULL
373 // scheme
380 if( keyScheme->scheme != TPM_ALG_NUL
452 TPMT_KEYEDHASH_SCHEME *scheme local
    [all...]
  /frameworks/base/packages/StatementService/src/com/android/statementservice/
IntentFilterVerificationReceiver.java 87 String scheme = inputExtras.getString( local
113 sourceAssets.add(createWebAssetString(scheme, host));
136 logValidationParametersForCTS(verificationId, scheme, finalHosts, packageName);
148 "Verifying IntentFilter. verificationId:%d scheme:\"%s\" hosts:\"%s\" package:\"%s\".";
149 private void logValidationParametersForCTS(int verificationId, String scheme,
152 Log.i(TAG, String.format(CTS_LOG_FORMAT, verificationId, scheme, hostString, packageName));
168 private String createWebAssetString(String scheme, String host) throws MalformedURLException {
172 if (!scheme.equals("http") && !scheme.equals("https")) {
173 throw new MalformedURLException("Input scheme is not valid.")
    [all...]
  /frameworks/opt/photoviewer/src/com/android/ex/photo/util/
ImageUtils.java 207 final String scheme = uri.getScheme(); local
208 if ("data".equals(scheme)) {
  /frameworks/support/compat/src/main/java/androidx/core/text/util/
LinkifyCompat.java 202 * @param scheme URL scheme string (eg <code>http://</code>) to be
203 * prepended to the links that do not start with this scheme.
206 @Nullable String scheme) {
208 Linkify.addLinks(text, pattern, scheme);
211 addLinks(text, pattern, scheme, null, null, null);
222 * @param scheme URL scheme string (eg <code>http://</code>) to be
223 * prepended to the links that do not start with this scheme.
229 @Nullable String scheme, @Nullable MatchFilter matchFilter
348 String scheme = schemes[index]; local
    [all...]
  /frameworks/support/localbroadcastmanager/src/main/java/androidx/localbroadcastmanager/content/
LocalBroadcastManager.java 218 final String scheme = intent.getScheme(); local
224 TAG, "Resolving type " + type + " scheme " + scheme
243 int match = receiver.filter.match(action, type, scheme, data,
  /frameworks/support/tv-provider/src/main/java/androidx/tvprovider/media/tv/
PreviewChannelHelper.java 292 String scheme = logoUri.normalizeScheme().getScheme(); local
297 if (ContentResolver.SCHEME_ANDROID_RESOURCE.equals(scheme)
298 || ContentResolver.SCHEME_FILE.equals(scheme)
299 || ContentResolver.SCHEME_CONTENT.equals(scheme)) {
  /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/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppSendFileInfo.java 105 String scheme = uri.getScheme(); local
109 // Support all Uri with "content" scheme
112 if ("content".equals(scheme)) {
151 } else if ("file".equals(scheme)) {
167 // currently don't accept other scheme
171 if (scheme.equals("content")) {
  /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);
  /packages/apps/Contacts/src/com/android/contacts/activities/
ShowOrCreateActivity.java 104 // Unpack scheme and target data from intent
105 String scheme = null; local
108 scheme = data.getScheme();
129 if (ContactsUtils.SCHEME_MAILTO.equals(scheme)) {
135 } else if (PhoneAccount.SCHEME_TEL.equals(scheme)) {
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
PackageIconLoader.java 144 String scheme = uri.getScheme(); local
145 if (ContentResolver.SCHEME_ANDROID_RESOURCE.equals(scheme)) {
  /packages/apps/TV/src/com/android/tv/util/images/
BitmapUtils.java 181 String scheme = uri.getScheme(); local
182 return ContentResolver.SCHEME_CONTENT.equals(scheme)
183 || ContentResolver.SCHEME_ANDROID_RESOURCE.equals(scheme)
184 || ContentResolver.SCHEME_FILE.equals(scheme);
  /packages/apps/Tag/src/com/android/apps/tag/record/
UriRecord.java 71 String scheme = mUri.getScheme(); local
72 if ("tel".equals(scheme)) {
74 } else if ("sms".equals(scheme) || "smsto".equals(scheme)) {
82 String scheme = mUri.getScheme(); local
83 boolean tel = "tel".equals(scheme);
84 boolean sms = "sms".equals(scheme) || "smsto".equals(scheme);

Completed in 1502 milliseconds

1 23 4 5 6 7 8 91011>>