HomeSort by relevance Sort by last modified time
    Searched full:ipaddress (Results 51 - 75 of 357) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/nist-sip/java/javax/sip/
SipStack.java 14 ListeningPoint createListeningPoint(String ipAddress, int port,
  /libcore/luni/src/test/java/libcore/java/security/cert/
X509CertSelectorTest.java 33 certSelector.addSubjectAlternativeName(GeneralName.iPAddress, "127.0.0.1");
44 certSelector.addSubjectAlternativeName(GeneralName.iPAddress, "::ffff:127.0.0.1");
56 certSelector.addSubjectAlternativeName(GeneralName.iPAddress, "::1");
68 certSelector.addPathToName(GeneralName.iPAddress, "127.0.0.1");
85 certSelector.addPathToName(GeneralName.iPAddress, "1::1");
105 certSelector.addSubjectAlternativeName(GeneralName.iPAddress, "1::x");
110 certSelector.addSubjectAlternativeName(GeneralName.iPAddress, "127.0.0.x");
116 private X509Certificate newCertWithSubjectAltNameIpAddress(byte[] ipAddress) throws Exception {
118 .addSubjectAltNameIpAddress(ipAddress)
  /system/connectivity/shill/
arp_packet.cc 34 local_ip_address_(IPAddress::kFamilyUnknown),
35 remote_ip_address_(IPAddress::kFamilyUnknown) {}
38 const IPAddress& local_ip, const IPAddress& remote_ip,
84 IPAddress::Family family = IPAddress::kFamilyUnknown;
86 family = IPAddress::kFamilyIPv4;
88 family = IPAddress::kFamilyIPv6;
99 size_t ip_address_length = IPAddress::GetAddressLength(family);
124 local_ip_address_ = IPAddress(family, packet.GetSubstring
    [all...]
device_info_unittest.cc 118 IPAddress CreateInterfaceAddress() {
121 IPAddress address(IPAddress::kFamilyIPv4);
183 const IPAddress& address,
188 const vector<IPAddress>& dns_servers);
231 IPAddress::kFamilyIPv4);
244 const IPAddress& address,
262 uint32_t lifetime, const vector<IPAddress>& dns_servers) {
270 IPAddress::kFamilyIPv6);
289 // NB: IPAddress objects don't support the "==" operator as per style, s
    [all...]
connection.h 128 virtual bool RequestHostRoute(const IPAddress& destination);
137 virtual const IPAddress& local() const { return local_; }
138 virtual const IPAddress& gateway() const { return gateway_; }
180 bool FixGatewayReachability(const IPAddress& local,
181 IPAddress* peer,
182 IPAddress* gateway,
183 const IPAddress& trusted_ip);
185 bool PinHostRoute(const IPAddress& trusted_ip, const IPAddress& gateway);
215 IPAddress local_
    [all...]
arp_client_test_helper.cc 33 const IPAddress& local_ip,
35 const IPAddress& remote_ip,
arp_client_test_helper.h 36 const IPAddress& local_ip,
38 const IPAddress& remote_ip,
routing_table.h 82 IPAddress::Family family,
86 // given the IPAddress of the gateway |gateway_address| and priority
89 const IPAddress& gateway_address,
103 IPAddress::Family family,
111 const IPAddress& local_address,
112 const IPAddress& remote_address,
139 virtual bool RequestRouteToHost(const IPAddress& destination,
163 IPAddress::Family family,
async_connection.cc 52 bool AsyncConnection::Start(const IPAddress& address, int port) {
56 if (address.family() == IPAddress::kFamilyIPv6) {
126 int AsyncConnection::ConnectTo(const IPAddress& address, int port) {
131 if (address.family() == IPAddress::kFamilyIPv4) {
142 } else if (address.family() == IPAddress::kFamilyIPv6) {
arp_packet_unittest.cc 52 : ipv4_address0_(IPAddress::kFamilyIPv4),
53 ipv4_address1_(IPAddress::kFamilyIPv4),
54 ipv6_address0_(IPAddress::kFamilyIPv6),
55 ipv6_address1_(IPAddress::kFamilyIPv6),
69 IPAddress ipv4_address0_;
70 IPAddress ipv4_address1_;
71 IPAddress ipv6_address0_;
72 IPAddress ipv6_address1_;
235 packet_.set_local_ip_address(IPAddress(IPAddress::kFamilyUnknown))
    [all...]
async_connection_unittest.cc 58 ipv4_address_(IPAddress::kFamilyIPv4),
59 ipv6_address_(IPAddress::kFamilyIPv6) { }
123 const IPAddress& ipv4_address() { return ipv4_address_; }
124 const IPAddress& ipv6_address() { return ipv6_address_; }
136 IPAddress ipv4_address_;
137 IPAddress ipv6_address_;
206 IPAddress arg_addr(IPAddress::kFamilyIPv4,
216 IPAddress arg_addr(IPAddress::kFamilyIPv6
    [all...]
connection_info_reader.cc 109 IPAddress ip_address(IPAddress::kFamilyUnknown);
177 const string& input, IPAddress* ip_address, bool* is_source) {
192 IPAddress ipv4_address(IPAddress::kFamilyIPv4);
198 IPAddress ipv6_address(IPAddress::kFamilyIPv6);
dns_client.h 45 typedef base::Callback<void(const Error&, const IPAddress&)> ClientCallback;
58 DNSClient(IPAddress::Family family,
96 IPAddress address_;
ppp_device_unittest.cc 61 EXPECT_EQ(IPAddress::kFamilyIPv4, props.address_family);
62 EXPECT_EQ(IPAddress::GetMaxPrefixLength(IPAddress::kFamilyIPv4),
async_connection.h 31 class IPAddress;
35 // outgoing TCP connection. When passed an IPAddress and
63 virtual bool Start(const IPAddress& address, int port);
78 int ConnectTo(const IPAddress& address, int port);
  /libcore/ojluni/src/main/java/java/net/
Inet6Address.java 185 byte[] ipaddress; field in class:Inet6Address
216 ipaddress = new byte[INADDRSZ];
227 ipaddress = addr.clone();
331 ipaddress = addr.clone();
445 ipaddress = ipaddress.clone();
448 if (ipaddress.length != INADDRSZ) {
450 ipaddress.length);
469 return ((ipaddress[0] & 0xff) == 0xff);
482 test |= ipaddress[i]
    [all...]
  /external/autotest/client/site_tests/policy_EditBookmarksEnabled/
control 27 $ test_that <IPAddress> EditBookmarksEnabled
33 $ test_that <IPAddress> EditBookmarksEnabled --args="env=prod
  /external/webrtc/webrtc/base/
network.cc 87 IPAddress ip_a = a->GetBestIP();
88 IPAddress ip_b = b->GetBestIP();
129 // However, our IPAddress structure doesn't carry that so the
157 std::string MakeNetworkKey(const std::string& name, const IPAddress& prefix,
175 bool NetworkManager::GetDefaultLocalAddress(int family, IPAddress* addr) const {
198 const rtc::IPAddress ipv4_any_address(INADDR_ANY);
208 const rtc::IPAddress ipv6_any_address(in6addr_any);
346 void NetworkManagerBase::set_default_local_addresses(const IPAddress& ipv4,
347 const IPAddress& ipv6) {
357 IPAddress* ipaddr) const
    [all...]
network.h 20 #include "webrtc/base/ipaddress.h"
55 std::string MakeNetworkKey(const std::string& name, const IPAddress& prefix,
64 virtual bool GetDefaultLocalAddress(int family, IPAddress* ipaddr) const = 0;
117 bool GetDefaultLocalAddress(int family, IPAddress* ipaddr) const override;
145 bool GetDefaultLocalAddress(int family, IPAddress* ipaddr) const override;
165 void set_default_local_addresses(const IPAddress& ipv4,
166 const IPAddress& ipv6);
182 IPAddress default_local_ipv4_address_;
183 IPAddress default_local_ipv6_address_;
236 IPAddress QueryDefaultLocalAddress(int family) const
    [all...]
  /system/connectivity/shill/net/
rtnl_handler.cc 167 IPAddress::kFamilyUnknown);
187 IPAddress::kFamilyUnknown);
234 IPAddress::Family family = IPAddress::kFamilyUnknown;
352 const IPAddress& local,
353 const IPAddress& broadcast,
354 const IPAddress& peer) {
384 const IPAddress& local,
385 const IPAddress& broadcast,
386 const IPAddress& peer)
    [all...]
rtnl_handler.h 91 const IPAddress& local,
92 const IPAddress& gateway,
93 const IPAddress& peer);
98 const IPAddress& local);
162 const IPAddress& local,
163 const IPAddress& gateway,
164 const IPAddress& peer);
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/vpc/
test_customergateway.py 21 <ipAddress>12.1.2.3</ipAddress>
63 <ipAddress>12.1.2.3</ipAddress>
77 'IpAddress': '12.1.2.3',
  /libcore/ojluni/src/main/java/sun/security/x509/
IPAddressName.java 43 * When the subjectAltName extension contains a iPAddress, the address
52 * The syntax of iPAddress MUST be as described in section 4.2.1.7 with
54 * addresses, the ipAddress field of generalName MUST contain eight (8)
56 * address range.[RFC 1519] For IPv6 addresses, the ipAddress field
129 throw new IOException("IPAddress cannot be null or empty");
132 throw new IOException("Invalid IPAddress: " + name);
146 throw new IOException("Invalid IPAddress: " + name);
225 * Encode the IPAddress name into the DerOutputStream.
235 * Return a printable string of IPaddress
239 return "IPAddress: " + getName()
    [all...]
  /external/autotest/client/site_tests/policy_ProxySettings/
control 23 $ test_that <IPAddress> policy_ProxySettings --args=
  /external/nist-sip/java/gov/nist/javax/sip/
ListeningPointExt.java 29 public void sendHeartbeat(String ipAddress, int port) throws IOException ;

Completed in 3696 milliseconds

1 23 4 5 6 7 8 91011>>