HomeSort by relevance Sort by last modified time
    Searched full:protocols (Results 1 - 25 of 1555) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/experimental/wsgi/
services.py 10 protocols = wsgi_util.Protocols() variable
11 protocols.add_protocol(protobuf, 'protobuf')
12 protocols.add_protocol(protojson, 'json')
18 protocols=protocols) variable
  /external/autotest/client/site_tests/kernel_ProtocolCheck/
control 7 PURPOSE = "Check if the kernel supports the required network protocols."
8 CRITERIA = "Fails if any of the required protocols are not available."
18 Determines the protocols supported by a kernel by inspecting
19 /proc/net/protocols.
kernel_ProtocolCheck.py 11 PROTO_FILE = '/proc/net/protocols'
69 Returns the set of supported protocols from /proc/net/protocols.
81 Check that the kernel supports all required network protocols.
94 # Fail if any protocols were unsupported.
96 raise error.TestFail('required protocols are unsupported: %s' %
  /external/curl/tests/data/
test1013 20 Compare curl --version with curl-config --protocols
26 %SRCDIR/libtest/test1013.pl ../curl-config log/stdout1013 protocols
test2004 37 for several protocols
56 for several protocols
58 for several protocols
60 for several protocols
62 for several protocols
64 for several protocols
  /external/libchrome/base/mac/
cocoa_protocols.h 10 // New Mac OS X SDKs introduce new protocols used for delegates. These
13 // delegates to conform to these protocols, and earlier SDKs, which do not
14 // define these protocols at all, this file will provide empty protocol
  /external/curl/docs/libcurl/opts/
CURLOPT_REDIR_PROTOCOLS.3 25 CURLOPT_REDIR_PROTOCOLS \- set protocols allowed to redirect to
32 limits what protocols libcurl may use in a transfer that it follows to in a
34 limit specific transfers to only be allowed to use a subset of protocols in
35 redirections. By default libcurl will allow all protocols except for FILE and
69 All protocols except for FILE, SCP and SMB.
70 .SH PROTOCOLS
88 Added in 7.19.4, before then it would follow all protocols.
CURLOPT_PROTOCOLS.3 25 CURLOPT_PROTOCOLS \- set allowed protocols
32 limits what protocols libcurl may use in the transfer. This allows you to have
33 a libcurl built to support a wide range of protocols but still limit specific
35 accept all protocols it supports (\fICURLPROTO_ALL\fP). See also
69 All protocols built-in
70 .SH PROTOCOLS
CURLOPT_SSL_OPTIONS.3 35 flaw in the SSL3 and TLS1.0 protocols. If this option isn't used or this bit
42 .SH PROTOCOLS
43 All TLS-based protocols
  /external/autotest/client/cros/netprotos/
__init__.py 6 netprotos - Network Protocols
8 This module includes Python implementations of various network protocols to
9 use in testing. These protocols can be used either with the kernel network
29 To create new protocols you can follow the example of ZeroconfDaemon and
30 CrosP2PDaemon which implement part of those protocols to serve files on
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
AddressTest.java 31 private List<Protocol> protocols = Util.immutableList(Protocol.HTTP_1_1); field in class:AddressTest
37 authenticator, null, protocols, connectionSpecs, proxySelector);
39 authenticator, null, protocols, connectionSpecs, proxySelector);
46 authenticator, null, protocols, connectionSpecs, new RecordingProxySelector());
48 authenticator, null, protocols, connectionSpecs, new RecordingProxySelector());
  /external/conscrypt/src/main/java/org/conscrypt/
OpenSSLServerSocketImpl.java 66 * The names of the protocols' versions that may be used on this SSL
68 * @return an array of protocols names
76 * The names of the protocols' versions that in use on this SSL connection.
78 * @return an array of protocols names
86 * This method enables the protocols' versions listed by
89 * @param protocols names of all the protocols to enable.
95 public void setEnabledProtocols(String[] protocols) {
96 sslParameters.setEnabledProtocols(protocols);
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/wsgi/
service_test.py 40 self.protocols = None
41 remote.Protocols.set_default(remote.Protocols.new_default())
55 protocols=self.protocols)
60 self.protocols = remote.Protocols()
61 self.protocols.add_protocol(protojson, 'altproto', 'image/png')
63 global_protocols = remote.Protocols()
65 remote.Protocols.set_default(global_protocols
    [all...]
  /external/owasp/sanitizer/src/main/org/owasp/html/
FilterUrlByProtocolAttributePolicy.java 40 * URLs with protocols must match the protocol set passed to the constructor.
41 * URLs without protocols but which specify an origin different from the
59 private final ImmutableSet<String> protocols; field in class:FilterUrlByProtocolAttributePolicy
62 Iterable<? extends String> protocols) {
63 this.protocols = ImmutableSet.copyOf(protocols);
74 // or the protocols by which HTML is normally served are OK.
81 if (!protocols.contains(protocol)) { return null; }
89 return protocols.contains("http") && protocols.contains("https")
    [all...]
  /external/android-clat/
BUGS 2 - does not handle protocols other than ICMP, UDP, TCP and GRE
  /external/iproute2/etc/iproute2/
rt_protos 2 # Reserved protocols.
  /external/iptables/extensions/
libipt_realm.man 2 setups involving dynamic routing protocols like BGP.
  /external/iptables/include/linux/netfilter/
nf_conntrack_tuple_common.h 14 /* Add other protocols here. */
  /external/kernel-headers/original/uapi/linux/netfilter/
nf_conntrack_tuple_common.h 14 /* Add other protocols here. */
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
Platform.java 83 List<Protocol> protocols) {
201 SSLSocket sslSocket, String hostname, List<Protocol> protocols) {
210 Object[] parameters = { concatLengthPrefixed(protocols) };
268 SSLSocket sslSocket, String hostname, List<Protocol> protocols) {
269 List<String> names = new ArrayList<>(protocols.size());
270 for (int i = 0, size = protocols.size(); i < size; i++) {
271 Protocol protocol = protocols.get(i);
313 /** This peer's supported protocols. */
314 private final List<String> protocols; field in class:Platform.JettyNegoProvider
320 public JettyNegoProvider(List<String> protocols) {
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/
remote_test.py 825 self.protocols = remote.Protocols()
828 self.assertEquals((), self.protocols.names)
829 self.assertEquals((), self.protocols.content_types)
832 self.protocols.add_protocol(protojson, 'json')
833 self.assertEquals(('json',), self.protocols.names)
840 self.protocols.content_types)
846 self.protocols.add_protocol(Protocol, 'text')
847 self.assertEquals(('text',), self.protocols.names)
848 self.assertEquals(('text/plain',), self.protocols.content_types
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Address.java 47 final List<Protocol> protocols; field in class:Address
54 List<Protocol> protocols, List<ConnectionSpec> connectionSpecs, ProxySelector proxySelector) {
58 if (protocols == null) throw new IllegalArgumentException("protocols == null");
68 this.protocols = Util.immutableList(protocols);
115 * Returns the protocols the client supports. This method always returns a
119 return protocols;
159 && equal(this.protocols, that.protocols)
    [all...]
  /external/libvncserver/webclients/novnc/include/
websock.js 207 init: function (protocols, ws_schema) {
235 // Default protocols if not specified
236 if (typeof(protocols) === "undefined") {
238 protocols = ['binary', 'base64'];
240 protocols = 'base64';
245 if (protocols === 'binary') {
249 if (typeof(protocols) === 'object') {
252 for (var i = 0; i < protocols.length; i++) {
253 if (protocols[i] === 'binary') {
256 new_protocols.push(protocols[i])
    [all...]
  /external/okhttp/android/test/java/com/squareup/okhttp/internal/
PlatformTest.java 52 List<Protocol> protocols = Arrays.asList(Protocol.HTTP_1_1, Protocol.SPDY_3); local
53 platform.configureTlsExtensions(arbitrarySocketImpl, "host", protocols);
55 platform.configureTlsExtensions(npnOnlySSLSocketImpl, "host", protocols);
58 platform.configureTlsExtensions(openSslSocket, "host", protocols);
61 assertArrayEquals(Platform.concatLengthPrefixed(protocols), openSslSocket.alpnProtocols);
151 public void setEnabledProtocols(String[] protocols) {
  /external/curl/tests/libtest/
test1013.pl 2 # Determine if curl-config --protocols/--features matches the
3 # curl --version protocols/features
6 print "Usage: $0 curl-config-script curl-version-output-file features|protocols\n";

Completed in 1083 milliseconds

1 2 3 4 5 6 7 8 91011>>