Home
last modified time | relevance | path

Searched +full:- +full:scheme (Results 1 – 25 of 1066) sorted by relevance

12345678910>>...43

/external/apache-http/src/org/apache/http/conn/scheme/
DSchemeRegistry.java2 …org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/conn/sch…
4 * $Date: 2008-04-15 10:57:53 -0700 (Tue, 15 Apr 2008) $
15 * http://www.apache.org/licenses/LICENSE-2.0
31 package org.apache.http.conn.scheme;
41 * A set of supported protocol {@link Scheme schemes}.
47 * <!-- empty lines to avoid svn diff problems -->
48 * @version $Revision: 648356 $ $Date: 2008-04-15 10:57:53 -0700 (Tue, 15 Apr 2008) $
53 …* Please visit <a href="http://android-developers.blogspot.com/2011/09/androids-http-clients.h…
60 private final Map<String,Scheme> registeredSchemes;
64 * Creates a new, empty scheme registry.
[all …]
DScheme.java2 …repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/conn/scheme/
4 * $Date: 2008-05-02 16:49:48 -0700 (Fri, 02 May 2008) $
15 * http://www.apache.org/licenses/LICENSE-2.0
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);
58 …* Please visit <a href="http://android-developers.blogspot.com/2011/09/androids-http-clients.h…
62 public final class Scheme { class
64 /** The name of this scheme, in lowercase. (e.g. http, https) */
67 /** The socket factory for this scheme */
[all …]
/external/libcups/cups/
Dauth.c4 * Copyright © 2007-2018 by Apple Inc.
5 * Copyright © 1997-2007 by Easy Software Products.
16 * This file is subject to the Apple OS-Developed Software exception.
23 #include "cups-private.h"
50 static const char *cups_auth_find(const char *www_authenticate, const char *scheme);
51 static const char *cups_auth_param(const char *scheme, const char *name, char *value, size_t valsiz…
52 static const char *cups_auth_scheme(const char *www_authenticate, char *scheme, size_t schemesize);
104 * 'cupsDoAuthentication()' - Authenticate a request.
112 int /* O - 0 on success, -1 on error */
114 http_t *http, /* I - Connection to server or @code CUPS_HTTP_DEFAULT@ */ in cupsDoAuthentication()
[all …]
Dhttp-support.c4 * Copyright 2007-2018 by Apple Inc.
5 * Copyright 1997-2007 by Easy Software Products, all rights reserved.
13 * This file is subject to the Apple OS-Developed Software exception.
20 #include "cups-private.h"
31 # include <avahi-client/client.h>
32 # include <avahi-client/lookup.h>
33 # include <avahi-common/simple-watch.h>
145 * 'httpAssembleURI()' - Assemble a uniform resource identifier from its
156 http_uri_status_t /* O - URI status */
158 http_uri_coding_t encoding, /* I - Encoding flags */ in httpAssembleURI()
[all …]
/external/python/cpython2/Doc/library/
Dsysconfig.rst1 :mod:`sysconfig` --- Provide access to Python's configuration information
15 --------------
22 -----------------------
26 third-party C extensions compiled using :mod:`distutils`.
63 ------------------
65 Python uses an installation scheme that differs depending on the platform and on
70 Distutils-based system will follow the same scheme to copy its file in the right
75 - *posix_prefix*: scheme for Posix platforms like Linux or Mac OS X. This is
76 the default scheme used when Python or a component is installed.
77 - *posix_home*: scheme for Posix platforms used when a *home* option is used
[all …]
/external/grpc-grpc/
D.travis.yml3 language: objective-c
7 - CONFIG=opt
8 - TEST=objc
9 - JOBS=1
11 - SCHEME="RxLibraryUnitTests"
12 WORKSPACE="Tests.xcworkspace" TEST_PATH="src/objective-c/tests" BUILD_ONLY="false"
14 - SCHEME="InteropTestsLocalSSL"
15 WORKSPACE="Tests.xcworkspace" TEST_PATH="src/objective-c/tests" BUILD_ONLY="false"
17 - SCHEME="InteropTestsLocalCleartext"
18 WORKSPACE="Tests.xcworkspace" TEST_PATH="src/objective-c/tests" BUILD_ONLY="false"
[all …]
/external/python/cpython2/Lib/
Durlparse.py5 RFC 3986 (STD66): "Uniform Resource Identifiers" by T. Berners-Lee, R. Fielding
12 Berners-Lee, R. Fielding, and L. Masinter, August 1998.
14 RFC 2368: "The mailto URL scheme", by P.Hoffman , L Masinter, J. Zwinski, July 1998.
19 RFC 1738: "Uniform Resource Locators (URL)" by T. Berners-Lee, L. Masinter, M.
50 # compatibility. (They are undocumented, but have a public-looking name.)
59 # Characters valid in scheme names
63 '+-.')
97 netloc = self.netloc.split('@')[-1]
109 netloc = self.netloc.split('@')[-1].split(']')[-1]
121 class SplitResult(namedtuple('SplitResult', 'scheme netloc path query fragment'), ResultMixin):
[all …]
/external/python/cpython3/Doc/library/
Dsysconfig.rst1 :mod:`sysconfig` --- Provide access to Python's configuration information
17 --------------
24 -----------------------
28 third-party C extensions compiled using :mod:`distutils`.
65 ------------------
67 Python uses an installation scheme that differs depending on the platform and on
72 Distutils-based system will follow the same scheme to copy its file in the right
77 - *posix_prefix*: scheme for Posix platforms like Linux or Mac OS X. This is
78 the default scheme used when Python or a component is installed.
79 - *posix_home*: scheme for Posix platforms used when a *home* option is used
[all …]
/external/apache-http/src/org/apache/http/auth/
DAuthScope.java2 …* $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main…
4 * $Date: 2008-05-02 16:49:48 -0700 (Fri, 02 May 2008) $
15 * http://www.apache.org/licenses/LICENSE-2.0
39 * a port number, a realm name and an authentication scheme name which
48 …* Please visit <a href="http://android-developers.blogspot.com/2011/09/androids-http-clients.h…
61 * The <tt>-1</tt> value represents any port.
63 public static final int ANY_PORT = -1;
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. */
[all …]
DAuthSchemeRegistry.java2 …* $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main…
4 * $Date: 2008-05-02 16:49:48 -0700 (Fri, 02 May 2008) $
15 * http://www.apache.org/licenses/LICENSE-2.0
42 * Authentication scheme registry that can be used to obtain the corresponding
43 * authentication scheme implementation for a given type of authorization challenge.
52 …* Please visit <a href="http://android-developers.blogspot.com/2011/09/androids-http-clients.h…
68 * retrieve the {@link AuthScheme authentication scheme} from {@link #getAuthScheme}.
72 * for the new {@link AuthScheme authentication scheme} to take effect.
75 * @param name the identifier for this scheme
87 throw new IllegalArgumentException("Authentication scheme factory may not be null"); in register()
[all …]
/external/syzkaller/vendor/google.golang.org/grpc/resolver/
Dresolver.go9 * http://www.apache.org/licenses/LICENSE-2.0
24 // m is a map from scheme to resolver builder.
26 // defaultScheme is the default scheme to use.
32 // Register registers the resolver builder to the resolver map. b.Scheme will be
33 // used as the scheme registered with this builder.
36 // an init() function), and is not thread-safe. If multiple Resolvers are
39 m[b.Scheme()] = b
42 // Get returns the resolver builder registered with the given scheme.
44 // If no builder is register with the scheme, nil will be returned.
45 func Get(scheme string) Builder {
[all …]
/external/curl/docs/libcurl/opts/
DCURLINFO_SCHEME.38 .\" * Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
26 CURLINFO_SCHEME \- get the URL scheme (sometimes called protocol) used in the connection
30 CURLcode curl_easy_getinfo(CURL *handle, CURLINFO_SCHEME, char **scheme);
32 Pass a pointer to a char pointer to receive the pointer to a zero-terminated
33 string holding the URL scheme used for the most recent connection done with
36 The \fBscheme\fP pointer will be NULL or pointing to private memory you MUST
37 NOT free - it gets freed when you call \fIcurl_easy_cleanup(3)\fP on the
49 char *scheme = NULL;
50 curl_easy_getinfo(curl, CURLINFO_SCHEME, &scheme);
51 if(scheme)
[all …]
/external/curl/tests/libtest/
Dlib1536.c8 * Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
31 char *scheme; in test() local
38 /* Test that scheme is properly initialized on curl_easy_init. in test()
41 res = curl_easy_getinfo(curl, CURLINFO_SCHEME, &scheme); in test()
47 if(scheme != NULL) { in test()
48 fprintf(stderr, "%s:%d scheme init failed; expected NULL\n", in test()
63 /* Test that a scheme is properly set after receiving an HTTP resource. in test()
66 res = curl_easy_getinfo(curl, CURLINFO_SCHEME, &scheme); in test()
72 if(memcmp(scheme, "HTTP", 5) != 0) { in test()
73 fprintf(stderr, "%s:%d scheme of http resource is incorrect; " in test()
[all …]
/external/curl/docs/libcurl/
Dcurl_url_get.38 .\" * Copyright (C) 1998 - 2018, Daniel Stenberg, <daniel@haxx.se>, et al.
25 curl_url_get - extract a part from a URL
50 return the default port for the used scheme.
52 If the handle has no scheme stored, this option will make
53 \fIcurl_url_get(3)\fP return the default scheme instead of error.
56 default port for the scheme.
59 will not attempt to decode the scheme, the port number or the full URL.
61 The query component will also get plus-to-space conversion as a bonus when
75 Scheme cannot be URL decoded on get.
98 char *scheme;
[all …]
/external/fonttools/Lib/fontTools/ttLib/tables/
DgrUtils.py9 #old scheme for VERSION < 0.9 otherwise use lz4.block
13 scheme = compression >> 27
15 if scheme == 0:
17 elif scheme == 1 and lz4:
24 warnings.warn("Table is compressed with an unsupported compression scheme")
25 return (data, scheme)
27 def compress(scheme, data): argument
28 hdr = data[:4] + struct.pack(">L", (scheme << 27) + (len(data) & 0x07ffffff))
29 if scheme == 0 :
31 elif scheme == 1 and lz4:
[all …]
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
DChallenge.java8 * http://www.apache.org/licenses/LICENSE-2.0
22 private final String scheme; field in Challenge
25 public Challenge(String scheme, String realm) { in Challenge() argument
26 this.scheme = scheme; in Challenge()
30 /** Returns the authentication scheme, like {@code Basic}. */
32 return scheme; in getScheme()
42 && equal(scheme, ((Challenge) o).scheme) in equals()
49 result = 31 * result + (scheme != null ? scheme.hashCode() : 0); in hashCode()
54 return scheme + " realm=\"" + realm + "\""; in toString()
/external/grpc-grpc/src/core/ext/filters/client_channel/
Dparse_address.cc9 * http://www.apache.org/licenses/LICENSE-2.0
42 if (strcmp("unix", uri->scheme) != 0) { in grpc_parse_unix()
43 gpr_log(GPR_ERROR, "Expected 'unix' scheme, got '%s'", uri->scheme); in grpc_parse_unix()
47 reinterpret_cast<struct sockaddr_un*>(resolved_addr->addr); in grpc_parse_unix()
48 const size_t maxlen = sizeof(un->sun_path); in grpc_parse_unix()
49 const size_t path_len = strnlen(uri->path, maxlen); in grpc_parse_unix()
51 un->sun_family = AF_UNIX; in grpc_parse_unix()
52 strcpy(un->sun_path, uri->path); in grpc_parse_unix()
53 resolved_addr->len = static_cast<socklen_t>(sizeof(*un)); in grpc_parse_unix()
75 addr->len = static_cast<socklen_t>(sizeof(grpc_sockaddr_in)); in grpc_parse_ipv4_hostport()
[all …]
/external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/
DChallenge.java9 * http://www.apache.org/licenses/LICENSE-2.0
24 private final String scheme; field in Challenge
27 public Challenge(String scheme, String realm) { in Challenge() argument
28 this.scheme = scheme; in Challenge()
32 /** Returns the authentication scheme, like {@code Basic}. */
34 return scheme; in getScheme()
44 && equal(scheme, ((Challenge) o).scheme) in equals()
51 result = 31 * result + (scheme != null ? scheme.hashCode() : 0); in hashCode()
56 return scheme + " realm=\"" + realm + "\""; in toString()
/external/libbrillo/brillo/http/
Dhttp_proxy.cc2 // Use of this source code is governed by a BSD-style license that can be
27 LOG(ERROR) << chromeos::kNetworkProxyServiceName << " D-Bus call to " in ParseProxyInfo()
30 proxies_out->assign({brillo::http::kDirectProxy}); in ParseProxyInfo()
37 LOG(ERROR) << chromeos::kNetworkProxyServiceName << " D-Bus call to " in ParseProxyInfo()
39 << " returned an invalid D-Bus response"; in ParseProxyInfo()
40 proxies_out->assign({brillo::http::kDirectProxy}); in ParseProxyInfo()
63 std::string scheme = base::ToLowerASCII(std::string(token.begin(), space)); in ParseProxyInfo() local
65 if (scheme == "socks") { in ParseProxyInfo()
66 scheme += "4"; in ParseProxyInfo()
67 } else if (scheme == "proxy") { in ParseProxyInfo()
[all …]
/external/pdfium/third_party/libtiff/
Dtif_compress.c1 /* $Id: tif_compress.c,v 1.25 2016-10-25 20:04:22 erouault Exp $ */
4 * Copyright (c) 1988-1997 Sam Leffler
5 * Copyright (c) 1991-1997 Silicon Graphics, Inc.
15 * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
30 * Compression Scheme Configuration Support.
37 const TIFFCodec* c = TIFFFindCODEC(tif->tif_dir.td_compression); in TIFFNoEncode()
40 TIFFErrorExt(tif->tif_clientdata, tif->tif_name, in TIFFNoEncode()
42 c->name, method); in TIFFNoEncode()
44 TIFFErrorExt(tif->tif_clientdata, tif->tif_name, in TIFFNoEncode()
45 "Compression scheme %u %s encoding is not implemented", in TIFFNoEncode()
[all …]
/external/apache-http/android/src/android/net/http/
DHttpAuthHeader.java8 * http://www.apache.org/licenses/LICENSE-2.0
22 * HttpAuthHeader: a class to store HTTP authentication-header parameters.
27 * Possible HTTP-authentication header tokens to search for:
40 * An authentication scheme. We currently support two different schemes:
41 * HttpAuthHeader.BASIC - basic, and
42 * HttpAuthHeader.DIGEST - digest (algorithm=MD5, QOP="auth").
53 * (case-insensitive), the client may wish to simply retry the request
66 * A server-specified data string which should be uniquely generated
81 * implementations compliant with this version of the Digest scheme.
84 * value "auth" indicates authentication; the value "auth-int"
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/
DPBEPBKDF2.java18 // Android-removed: Unsupported algorithms
24 // Android-removed: Unneeded imports of files we don't include
42 // Android-removed: Unsupported algorithm
49 // Android-remove: Unsupported algorithms
61 // BEGIN Android-removed: Unsupported algorithms
146 // END Android-removed: Unsupported algorithms
151 private int scheme; field in PBEPBKDF2.BasePBKDF2
152 // BEGIN Android-added: Allow to specify a key using only the password.
155 // END Android-added: Allow to specify a key using only the password.
158 public BasePBKDF2(String name, int scheme) in BasePBKDF2() argument
[all …]
/external/apache-http/src/org/apache/http/
DHttpHost.java2 …* $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/jav…
4 * $Date: 2008-05-03 05:01:10 -0700 (Sat, 03 May 2008) $
15 * http://www.apache.org/licenses/LICENSE-2.0
41 * This includes remote host name, port and scheme.
51 …* Please visit <a href="http://android-developers.blogspot.com/2011/09/androids-http-clients.h…
57 /** The default scheme is "http". */
70 /** The scheme */
80 * <code>-1</code> indicates the scheme default port.
81 * @param scheme the name of the scheme.
83 * {@link #DEFAULT_SCHEME_NAME default scheme}
[all …]
/external/python/cpython3/Lib/urllib/
Dparse.py5 RFC 3986 (STD66): "Uniform Resource Identifiers" by T. Berners-Lee, R. Fielding
12 Berners-Lee, R. Fielding, and L. Masinter, August 1998.
14 RFC 2368: "The mailto URL scheme", by P.Hoffman , L Masinter, J. Zawinski, July 1998.
19 RFC 1738: "Uniform Resource Locators (URL)" by T. Berners-Lee, L. Masinter, M.
42 # The empty string classifies URLs with no scheme specified,
61 # compatibility. (They are undocumented, but have a public-looking name.)
73 # Characters valid in scheme names
77 '+-.')
93 # presented, we may relax this by using latin-1
113 # - noop for str inputs
[all …]
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jcajce/provider/symmetric/
DPBEPBKDF2.java19 // Android-removed: Unsupported algorithms
25 // Android-removed: Unneeded imports of files we don't include
46 // Android-removed: Unsupported algorithm
53 // Android-remove: Unsupported algorithms
65 // BEGIN Android-removed: Unsupported algorithms
150 // END Android-removed: Unsupported algorithms
158 private int scheme; field in PBEPBKDF2.BasePBKDF2
159 // BEGIN Android-added: Allow to specify a key using only the password.
162 // END Android-added: Allow to specify a key using only the password.
165 public BasePBKDF2(String name, int scheme) in BasePBKDF2() argument
[all …]

12345678910>>...43