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

1 2 3 4 5 6 7 8 91011>>

  /libcore/luni/src/main/java/javax/net/ssl/
SSLParameters.java 20 * SSL handshake parameters that include protocols, cipher suites, and
27 private String[] protocols; field in class:SSLParameters
33 * protocols are initialized to null and client authentication
52 * cipher suites and protocols arrays to be provided. Other values
57 * @param protocols An array of protocol names that is cloned for
61 String[] protocols) {
63 setProtocols(protocols);
87 * Returns a copy of the protocols, or null if none have been
91 if (protocols == null) {
94 return protocols.clone()
    [all...]
SSLServerSocket.java 26 * based on protocols like SSL, TLS, or others.
122 * Returns the names of the supported protocols.
124 * @return the names of the supported protocols.
129 * Returns the names of the enabled protocols to be used for new
132 * @return the names of the enabled protocols to be used for new
138 * Sets the names of the protocols to be enabled for new connections. Only
139 * protocols returned by {@link #getSupportedProtocols()} are allowed.
141 * @param protocols
142 * the names of the to be enabled protocols.
144 * if one of the protocols is not supported
    [all...]
SSLSocket.java 26 * The extension of {@code Socket} providing secure protocols like SSL (Secure
160 * Returns the names of the supported protocols.
165 * Returns the names of the enabled protocols.
170 * Sets the names of the protocols to be enabled. Only
171 * protocols returned by {@link #getSupportedProtocols()} are allowed.
173 * @param protocols
174 * the names of the to be enabled protocols.
176 * if one of the protocols is not supported.
178 public abstract void setEnabledProtocols(String[] protocols);
293 * cipher suites, protocols, and client authentication settings
320 String[] protocols = p.getProtocols(); local
    [all...]
SSLContextSpi.java 113 * protocols, and client authentication.
126 * supported cipher suites and protocols.
142 String[] protocols; local
145 protocols = s.getSupportedProtocols();
148 protocols = s.getEnabledProtocols();
151 p.setProtocols(protocols);
  /external/chromium/base/mac/
cocoa_protocols.h 11 // GTM also maintinas a list of empty protocols, but only the ones the library
15 // The Mac OS X 10.6 SDK introduced new protocols used for delegates. These
18 // delegates to conform to these protocols, and earlier SDKs, which do not
19 // define these protocols at all, this file will provide empty protocol
  /external/iproute2/etc/iproute2/
rt_protos 2 # Reserved protocols.
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
ProtocolVersion.java 27 * Protocols supported by this provider implementation
88 * @param protocols
91 public static ProtocolVersion getLatestVersion(String[] protocols) {
92 if (protocols == null || protocols.length == 0) {
95 ProtocolVersion latest = getByName(protocols[0]);
97 for (int i = 1; i < protocols.length; i++) {
98 current = getByName(protocols[i]);
OpenSSLServerSocketImpl.java 76 * The names of the protocols' versions that may be used on this SSL
78 * @return an array of protocols names
86 * The names of the protocols' versions that in use on this SSL connection.
88 * @return an array of protocols names
96 * This method enables the protocols' versions listed by
99 * @param protocols names of all the protocols to enable.
105 public void setEnabledProtocols(String[] protocols) {
106 enabledProtocols = NativeCrypto.checkEnabledProtocols(protocols);
SSLParametersImpl.java 36 * about enabled cipher suites and protocols,
71 // protocols available for SSL connection
251 * @return the set of enabled protocols
258 * Sets the set of available protocols for use in SSL connection.
259 * @param protocols String[]
261 protected void setEnabledProtocols(String[] protocols) {
262 if (protocols == null) {
263 throw new IllegalArgumentException("protocols == null");
265 for (int i=0; i<protocols.length; i++) {
266 String protocol = protocols[i]
    [all...]
  /external/iptables/extensions/
libipt_realm.man 2 setups involving dynamic routing protocols like BGP.
  /external/openssl/apps/
dh2048.pem 10 These are the 2048 bit DH parameters from "Assigned Number for SKIP Protocols"
dh512.pem 6 These are the 512 bit DH parameters from "Assigned Number for SKIP Protocols"
dh1024.pem 7 These are the 1024 bit DH parameters from "Assigned Number for SKIP Protocols"
dh4096.pem 15 These are the 4096 bit DH parameters from "Assigned Number for SKIP Protocols"
  /libcore/luni/src/test/java/libcore/javax/net/ssl/
SSLParametersTest.java 46 String[] protocols = new String[] { "baz", null, "qux" }; local
47 SSLParameters p = new SSLParameters(cipherSuites, protocols);
51 assertNotSame(protocols, p.getProtocols());
53 assertEquals(Arrays.asList(protocols), Arrays.asList(p.getProtocols()));
78 String[] protocols = new String[] { "fnord" }; local
79 String[] copy = protocols.clone();
82 assertEquals(Arrays.asList(protocols), Arrays.asList(p.getProtocols()));
SSLEngineTest.java 168 String[] protocols = e.getSupportedProtocols(); local
169 StandardNames.assertSupportedProtocols(StandardNames.SSL_SOCKET_PROTOCOLS, protocols);
170 assertNotSame(protocols, e.getSupportedProtocols());
177 String[] protocols = e.getEnabledProtocols(); local
178 StandardNames.assertValidProtocols(StandardNames.SSL_SOCKET_PROTOCOLS, protocols);
179 assertNotSame(protocols, e.getEnabledProtocols());
391 String[] protocols = p.getProtocols();
392 StandardNames.assertValidProtocols(StandardNames.SSL_SOCKET_PROTOCOLS, protocols);
393 assertNotSame(protocols, e.getEnabledProtocols());
394 assertEquals(Arrays.asList(protocols), Arrays.asList(e.getEnabledProtocols()))
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
isdnif.h 26 #define ISDN_PTYPE_MAX 7 /* Max. 8 Protocols */
44 #define ISDN_PROTO_L2_MAX 15 /* Max. 16 Protocols */
53 #define ISDN_PROTO_L3_MAX 7 /* Max. 8 Protocols */
capi.h 67 __u32 support1; /* B1 protocols support */
68 __u32 support2; /* B2 protocols support */
69 __u32 support3; /* B3 protocols support */
  /external/clang/test/SemaObjC/
protocols.m 4 @required // expected-error {{directive may only be specified in protocols only}}
8 @optional // expected-error {{directive may only be specified in protocols only}}
  /external/chromium/chrome/browser/custom_handlers/
protocol_handler_registry.h 22 // This is where handlers for protocols registered with
73 // Returns a JSON dictionary of protocols to protocol handlers. The caller is
83 // Map from protocols (strings) to protocol handlers.
  /external/kernel-headers/original/linux/
capi.h 69 __u32 support1; /* B1 protocols support */
70 __u32 support2; /* B2 protocols support */
71 __u32 support3; /* B3 protocols support */
  /frameworks/base/core/java/com/android/internal/util/
Protocol.java 20 * This class defines Message.what base addresses for various protocols that are recognized
41 /** Non system protocols */
53 //TODO: define all used protocols
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/
TrafficFlags.java 42 private static final String[] PROTOCOLS = new String[] {HostAuth.SCHEME_POP3,
71 int protocolIndex = Utility.arrayIndex(PROTOCOLS, account.getProtocol(context));
83 int protocolIndex = Utility.arrayIndex(PROTOCOLS, account.getProtocol(context));
105 sb.append(PROTOCOLS[(flags & PROTOCOL_MASK) >> PROTOCOL_SHIFT]);
  /external/iptables/include/net/netfilter/
nf_conntrack_tuple.h 34 /* Add other protocols here. */
75 /* Add other protocols here. */
  /external/chromium/chrome/common/extensions/docs/
samples.json 176 "protocols": [
201 "protocols": [
230 "protocols": [
255 "protocols": [],
288 "protocols": [],
314 "protocols": [],
335 "protocols": [],
375 "protocols": [
409 "protocols": [
443 "protocols":
    [all...]

Completed in 545 milliseconds

1 2 3 4 5 6 7 8 91011>>