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

1 2 3 4 5 6 7 8 91011>>

  /external/smack/src/org/jivesoftware/smackx/packet/
package.html 1 <body>XML packets that are part of the XMPP extension protocols.</body
  /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...]
  /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/chromium_org/base/mac/
cocoa_protocols.h 10 // GTM also maintinas a list of empty protocols, but only the ones the library
14 // New Mac OS X SDKs introduce new protocols used for delegates. These
17 // delegates to conform to these protocols, and earlier SDKs, which do not
18 // define these protocols at all, this file will provide empty protocol
  /external/iproute2/etc/iproute2/
rt_protos 2 # Reserved protocols.
  /external/chromium_org/net/socket/
next_proto.h 13 // protocols that we recognise.
24 // We lump in HTTP/2 with the SPDY protocols for now.
  /libcore/crypto/src/main/java/org/conscrypt/
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 73 * The names of the protocols' versions that may be used on this SSL
75 * @return an array of protocols names
83 * The names of the protocols' versions that in use on this SSL connection.
85 * @return an array of protocols names
93 * This method enables the protocols' versions listed by
96 * @param protocols names of all the protocols to enable.
102 public void setEnabledProtocols(String[] protocols) {
103 enabledProtocols = NativeCrypto.checkEnabledProtocols(protocols);
  /external/chromium_org/third_party/openssl/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"
  /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"
  /external/smack/src/org/xbill/DNS/
WKSRecord.java 152 private static Mnemonic protocols = new Mnemonic("IP protocol", field in class:WKSRecord.Protocol
156 protocols.setMaximum(0xFF);
157 protocols.setNumericAllowed(true);
159 protocols.add(ICMP, "icmp");
160 protocols.add(IGMP, "igmp");
161 protocols.add(GGP, "ggp");
162 protocols.add(ST, "st");
163 protocols.add(TCP, "tcp");
164 protocols.add(UCL, "ucl");
165 protocols.add(EGP, "egp")
    [all...]
  /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()));
  /external/chromium_org/chromeos/dbus/
fake_nfc_adapter_client.cc 72 std::vector<std::string> protocols; local
73 protocols.push_back(nfc_common::kProtocolFelica);
74 protocols.push_back(nfc_common::kProtocolMifare);
75 protocols.push_back(nfc_common::kProtocolJewel);
76 protocols.push_back(nfc_common::kProtocolIsoDep);
77 protocols.push_back(nfc_common::kProtocolNfcDep);
83 properties_->protocols.ReplaceValue(protocols);
89 second_properties_->protocols.ReplaceValue(protocols);
    [all...]
  /prebuilts/gcc/linux-x86/host/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 */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/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 */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/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 */
  /external/android-clat/
BUGS 6 - does not handle protocols other than ICMP, UDP, and TCP
  /external/chromium_org/chrome/browser/external_protocol/
external_protocol_observer.h 12 // WebContents relating to external protocols.
  /external/chromium_org/chrome/browser/ui/android/
external_protocol_dialog_android.cc 15 // external protocols, so this code should not be reachable.

Completed in 443 milliseconds

1 2 3 4 5 6 7 8 91011>>