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

1 2 3 4 5 6

  /frameworks/base/wifi/java/android/net/wifi/p2p/nsd/
WifiP2pDnsSdServiceInfo.java 171 * @param dnsName dns name
176 static String createRequest(String dnsName, int dnsType, int version) {
187 dnsName = dnsName.toLowerCase(Locale.ROOT); // TODO: is this right?
189 sb.append(compressDnsName(dnsName));
201 * @param dnsName dns name
204 private static String compressDnsName(String dnsName) {
210 String data = sVmPacket.get(dnsName);
215 int i = dnsName.indexOf('.');
217 if (dnsName.length() > 0)
    [all...]
  /libcore/ojluni/src/main/java/sun/security/x509/
DNSName.java 34 * This class implements the DNSName as required by the GeneralNames
38 * label, the domain name MUST be stored in the dNSName (an IA5String).
43 * extensions with a dNSName " " are not permitted. Finally, the use of
51 public class DNSName implements GeneralNameInterface {
59 * Create the DNSName object from the passed encoded Der value.
61 * @param derValue the encoded DER DNSName.
64 public DNSName(DerValue derValue) throws IOException {
69 * Create the DNSName object with the specified name.
71 * @param name the DNSName.
72 * @throws IOException if the name is not a valid DNSName subjectAltNam
    [all...]
URIName.java 86 private DNSName hostDNS;
133 hostDNS = new DNSName(host);
169 DNSName hostDNS;
171 hostDNS = new DNSName(host.substring(1));
173 hostDNS = new DNSName(host);
186 URIName(URI uri, String host, DNSName hostDNS) {
269 * DNSName, then this host object does not include any
272 * @returns host name as DNSName or IPAddressName
341 !(otherHostObject instanceof DNSName)) {
348 DNSName otherDNS = (DNSName) otherHostObject
    [all...]
RFC822Name.java 91 //a DNSName may not
249 /* count dots in dnsname, adding one if dnsname preceded by @ */
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/cloudfront/
test_connection.py 27 <DNSName>example.com</DNSName>
58 <DNSName>example.com</DNSName>
86 <DNSName>example.com</DNSName>
106 <DNSName>example.com</DNSName>
137 <DNSName>example.com</DNSName>
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cloudfront/
origin.py 65 if name == 'DNSName':
74 s += ' <DNSName>%s</DNSName>\n' % self.dns_name
125 if name == 'DNSName':
144 s += ' <DNSName>%s</DNSName>\n' % self.dns_name
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/ec2/elb/
test_listener.py 70 <DNSName>elb-boto-unit-test-408121642.us-east-1.elb.amazonaws.com</DNSName>
test_loadbalancer.py 65 <DNSName>elb-boto-unit-test-408121642.us-east-1.elb.amazonaws.com</DNSName>
  /external/boringssl/src/crypto/x509v3/
v3name_test.c 96 "set dnsName: host: [*.example.com] matches [www.example.com]",
97 "set dnsName: host: [*.example.com] matches [a.example.com]",
98 "set dnsName: host: [*.example.com] matches [b.example.com]",
99 "set dnsName: host: [*.example.com] matches [xn--rger-koa.example.com]",
100 "set dnsName: host: [*.www.example.com] matches [test.www.example.com]",
101 "set dnsName: host-no-wildcards: [*.www.example.com] matches [.www.example.com]",
102 "set dnsName: host-no-wildcards: [test.www.example.com] matches [.www.example.com]",
103 "set dnsName: host: [*.www.example.com] matches [.www.example.com]",
104 "set dnsName: host: [*www.example.com] matches [www.example.com]",
105 "set dnsName: host: [test.www.example.com] matches [.www.example.com]"
    [all...]
  /external/wpa_supplicant_8/src/utils/
http-utils.h 30 char **dnsname; member in struct:http_cert
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
GeneralName.java 26 * dNSName [2] IA5String,
51 public static final int dNSName = 2;
86 * label, the domain name MUST be stored in the dNSName (an IA5String).
123 * <li>dNSName
144 if (tag == rfc822Name || tag == dNSName || tag == uniformResourceIdentifier)
193 case dNSName:
251 case dNSName:
  /prebuilts/go/darwin-x86/src/crypto/x509/
verify_test.go 24 dnsName string
39 dnsName: "www.google.com",
51 dnsName: "www.google.com",
62 dnsName: "WwW.GooGLE.coM",
73 dnsName: "www.example.com",
82 dnsName: "www.example.com",
90 dnsName: "www.google.com",
102 dnsName: "www.google.com",
145 dnsName: "www.google.com",
204 dnsName: "secure.iddl.vt.edu"
    [all...]
verify.go 128 DNSName string
158 if opts.DNSName == domain ||
159 (strings.HasSuffix(opts.DNSName, domain) &&
160 len(opts.DNSName) >= 1+len(domain) &&
161 opts.DNSName[len(opts.DNSName)-len(domain)-1] == '.') {
234 if len(opts.DNSName) > 0 {
235 err = c.VerifyHostname(opts.DNSName)
root_windows.go 101 servernamep, err := syscall.UTF16PtrFromString(opts.DNSName)
130 return HostnameError{c, opts.DNSName}
144 hasDNSName := opts != nil && len(opts.DNSName) > 0
155 // If there's a DNSName set in opts, assume we're verifying
example_test.go 84 DNSName: "mail.google.com",
  /prebuilts/go/linux-x86/src/crypto/x509/
verify_test.go 24 dnsName string
39 dnsName: "www.google.com",
51 dnsName: "www.google.com",
62 dnsName: "WwW.GooGLE.coM",
73 dnsName: "www.example.com",
82 dnsName: "www.example.com",
90 dnsName: "www.google.com",
102 dnsName: "www.google.com",
145 dnsName: "www.google.com",
204 dnsName: "secure.iddl.vt.edu"
    [all...]
verify.go 128 DNSName string
158 if opts.DNSName == domain ||
159 (strings.HasSuffix(opts.DNSName, domain) &&
160 len(opts.DNSName) >= 1+len(domain) &&
161 opts.DNSName[len(opts.DNSName)-len(domain)-1] == '.') {
234 if len(opts.DNSName) > 0 {
235 err = c.VerifyHostname(opts.DNSName)
root_windows.go 101 servernamep, err := syscall.UTF16PtrFromString(opts.DNSName)
130 return HostnameError{c, opts.DNSName}
144 hasDNSName := opts != nil && len(opts.DNSName) > 0
155 // If there's a DNSName set in opts, assume we're verifying
example_test.go 84 DNSName: "mail.google.com",
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/cloudformation/
test_connection.py 90 "Description": "Public DNSName of the newly created EC2 instance",
99 "Description": "Private DNSName of the newly created EC2 instance",
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x509/
GeneralNamesTest.java 42 new GeneralName(2, "dNSName"),
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/extension/
X509ExtensionUtil.java 77 case GeneralName.dNSName:
  /external/iputils/ninfod/
ninfod_name.c 261 static int nodeinfo_group(const char *dnsname, int namelen,
267 if (!dnsname || !nigroup)
271 MD5_Update(&ctxt, dnsname, *dnsname);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
dhcpssdk.h 35 LPBYTE DNSName;
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/ec2/
test_instance.py 26 <dnsName/>
142 <dnsName/>

Completed in 3650 milliseconds

1 2 3 4 5 6