HomeSort by relevance Sort by last modified time
    Searched full:ipaddress (Results 26 - 50 of 261) sorted by null

12 3 4 5 6 7 8 91011

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
dhcpssdk.h 75 typedef DWORD (WINAPI *LPDHCP_NEWPKT)(LPBYTE *Packet,DWORD *PacketSize,DWORD IpAddress,LPVOID Reserved,LPVOID *PktContext,LPBOOL ProcessIt);
76 typedef DWORD (WINAPI *LPDHCP_DROP_SEND)(LPBYTE *Packet,DWORD *PacketSize,DWORD ControlCode,DWORD IpAddress,LPVOID Reserved,LPVOID PktContext);
77 typedef DWORD (WINAPI *LPDHCP_PROB)(LPBYTE Packet,DWORD PacketSize,DWORD ControlCode,DWORD IpAddress,DWORD AltAddress,LPVOID Reserved,LPVOID PktContext);
78 typedef DWORD (WINAPI *LPDHCP_GIVE_ADDRESS)(LPBYTE Packet,DWORD PacketSize,DWORD ControlCode,DWORD IpAddress,DWORD AltAddress,DWORD AddrType,DWORD LeaseTime,LPVOID Reserved,LPVOID PktContext);
80 typedef DWORD (WINAPI *LPDHCP_DELETE_CLIENT)(DWORD IpAddress,LPBYTE HwAddress,ULONG HwAddressLength,DWORD Reserved,DWORD ClientType);
  /external/chromium_org/third_party/libjingle/source/talk/base/
socketaddress.cc 68 SetIP(IPAddress(ip_as_host_order_integer));
72 SocketAddress::SocketAddress(const IPAddress& ip, int port) {
84 ip_ = IPAddress();
109 ip_ = IPAddress(ip_as_host_order_integer);
113 void SocketAddress::SetIP(const IPAddress& ip) {
124 ip_ = IPAddress();
130 ip_ = IPAddress(ip_as_host_order_integer);
134 void SocketAddress::SetResolvedIP(const IPAddress& ip) {
148 const IPAddress& SocketAddress::ipaddr() const {
304 IPAddress ip, int port, int scope_id)
    [all...]
network.h 37 #include "talk/base/ipaddress.h"
62 std::string MakeNetworkKey(const std::string& name, const IPAddress& prefix,
186 const IPAddress& prefix, int prefix_length);
189 const IPAddress& prefix, int prefix_length, AdapterType type);
199 const IPAddress& prefix() const { return prefix_; }
211 IPAddress ip() const {
213 return IPAddress();
218 void AddIP(const IPAddress& ip) { ips_.push_back(ip); }
222 bool SetIPs(const std::vector<IPAddress>& ips, bool already_changed);
224 const std::vector<IPAddress>& GetIPs() { return ips_;
    [all...]
network_unittest.cc 89 IPAddress(0x12345600U), 24);
92 EXPECT_EQ(IPAddress(0x12345600U), ipv4_network1.prefix());
100 IPAddress(0x12345600U), 24);
102 IPAddress(0x00010000U), 16);
110 IPAddress(0x12345600U), 24);
112 IPAddress(0x12345600U), 24);
134 IPAddress ip = (*it)->ip();
191 IPAddress(0x12345600U), 24);
193 IPAddress(0x00010000U), 16);
194 ipv4_network1.AddIP(IPAddress(0x12345678))
    [all...]
network.cc 135 std::string MakeNetworkKey(const std::string& name, const IPAddress& prefix,
165 typedef std::pair<Network*, std::vector<IPAddress> > address_list;
183 address_map[key] = address_list(list[i], std::vector<IPAddress>());
186 const std::vector<IPAddress>& addresses = list[i]->GetIPs();
188 for (std::vector<IPAddress>::const_iterator it = addresses.begin();
269 IPAddress prefix;
270 IPAddress mask;
271 IPAddress ip;
280 ip = IPAddress(
282 mask = IPAddress(
    [all...]
nethelpers.h 61 const std::vector<IPAddress>& addresses() const { return addresses_; }
70 std::vector<IPAddress> addresses_;
socketaddress.h 35 #include "talk/base/ipaddress.h"
59 SocketAddress(const IPAddress& ip, int port);
81 void SetIP(const IPAddress& ip);
94 void SetResolvedIP(const IPAddress& ip);
106 const IPAddress& ipaddr() const;
214 // Converts the IP address given in printable form into an IPAddress.
215 static bool StringToIP(const std::string& str, IPAddress* ip);
219 IPAddress ip_;
  /external/chromium_org/third_party/webrtc/base/
socketaddress.cc 51 SetIP(IPAddress(ip_as_host_order_integer));
55 SocketAddress::SocketAddress(const IPAddress& ip, int port) {
67 ip_ = IPAddress();
92 ip_ = IPAddress(ip_as_host_order_integer);
96 void SocketAddress::SetIP(const IPAddress& ip) {
107 ip_ = IPAddress();
113 ip_ = IPAddress(ip_as_host_order_integer);
117 void SocketAddress::SetResolvedIP(const IPAddress& ip) {
131 const IPAddress& SocketAddress::ipaddr() const {
287 IPAddress ip, int port, int scope_id)
    [all...]
network.h 20 #include "webrtc/base/ipaddress.h"
45 std::string MakeNetworkKey(const std::string& name, const IPAddress& prefix,
169 const IPAddress& prefix, int prefix_length);
172 const IPAddress& prefix, int prefix_length, AdapterType type);
182 const IPAddress& prefix() const { return prefix_; }
194 IPAddress ip() const {
196 return IPAddress();
201 void AddIP(const IPAddress& ip) { ips_.push_back(ip); }
205 bool SetIPs(const std::vector<IPAddress>& ips, bool already_changed);
207 const std::vector<IPAddress>& GetIPs() { return ips_;
    [all...]
network_unittest.cc 72 IPAddress(0x12345600U), 24);
75 EXPECT_EQ(IPAddress(0x12345600U), ipv4_network1.prefix());
83 IPAddress(0x12345600U), 24);
85 IPAddress(0x00010000U), 16);
93 IPAddress(0x12345600U), 24);
95 IPAddress(0x12345600U), 24);
117 IPAddress ip = (*it)->ip();
174 IPAddress(0x12345600U), 24);
176 IPAddress(0x00010000U), 16);
177 ipv4_network1.AddIP(IPAddress(0x12345678))
    [all...]
network.cc 118 std::string MakeNetworkKey(const std::string& name, const IPAddress& prefix,
148 typedef std::pair<Network*, std::vector<IPAddress> > address_list;
166 address_map[key] = address_list(list[i], std::vector<IPAddress>());
169 const std::vector<IPAddress>& addresses = list[i]->GetIPs();
171 for (std::vector<IPAddress>::const_iterator it = addresses.begin();
252 IPAddress prefix;
253 IPAddress mask;
254 IPAddress ip;
263 ip = IPAddress(
265 mask = IPAddress(
    [all...]
nethelpers.h 44 const std::vector<IPAddress>& addresses() const { return addresses_; }
53 std::vector<IPAddress> addresses_;
socketaddress.h 18 #include "webrtc/base/ipaddress.h"
42 SocketAddress(const IPAddress& ip, int port);
64 void SetIP(const IPAddress& ip);
77 void SetResolvedIP(const IPAddress& ip);
89 const IPAddress& ipaddr() const;
197 // Converts the IP address given in printable form into an IPAddress.
198 static bool StringToIP(const std::string& str, IPAddress* ip);
202 IPAddress ip_;
winping.h 18 #include "webrtc/base/IPAddress.h"
80 IPAddress ip, uint32 data_size, uint32 timeout_millis, uint8 ttl,
  /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)
  /external/chromium_org/content/renderer/p2p/
ipc_network_manager.cc 88 it->name, it->name, talk_base::IPAddress(address), 32,
90 network->AddIP(talk_base::IPAddress(address));
96 talk_base::IPAddress ip6_addr(address);
121 talk_base::IPAddress ip_address_v4(INADDR_LOOPBACK);
128 talk_base::IPAddress ip_address_v6(in6addr_loopback);
  /libcore/luni/src/main/java/java/net/
InetAddress.java 135 byte[] ipaddress; field in class:InetAddress
150 InetAddress(int family, byte[] ipaddress, String hostName) {
152 this.ipaddress = ipaddress;
170 return Arrays.equals(this.ipaddress, ((InetAddress) obj).ipaddress);
181 return ipaddress.clone();
406 return Arrays.hashCode(ipaddress);
474 return makeInetAddress(address.ipaddress.clone(), hostname);
776 * Equivalent to {@code getByAddress(null, ipAddress)}. Handy for addresses wit
    [all...]
  /external/dhcpcd/dhcpcd-hooks/
95-configured 17 setprop dhcp.${intf}.ipaddress "${new_ip_address}"
  /external/nist-sip/java/gov/nist/javax/sip/
ListeningPointExt.java 29 public void sendHeartbeat(String ipAddress, int port) throws IOException ;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
GeneralName.java 18 import org.bouncycastle.util.IPAddress;
31 * iPAddress [7] OCTET STRING,
56 public static final int iPAddress = 7;
98 * When the subjectAltName extension contains a iPAddress, the address
121 * <li>iPAddress
156 else if (tag == iPAddress)
203 case iPAddress:
266 if (IPAddress.isValidIPv6WithNetmask(ip) || IPAddress.isValidIPv6(ip))
297 else if (IPAddress.isValidIPv4WithNetmask(ip) || IPAddress.isValidIPv4(ip)
    [all...]
  /external/chromium_org/remoting/client/plugin/
pepper_util.cc 60 address->SetIP(talk_base::IPAddress(
68 address->SetIP(talk_base::IPAddress(
  /external/chromium_org/net/android/java/src/org/chromium/net/
AndroidNetworkLibrary.java 178 String ipAddress = address.getHostAddress();
179 if (address instanceof Inet6Address && ipAddress.contains("%")) {
180 ipAddress = ipAddress.substring(0, ipAddress.lastIndexOf("%"));
182 addressString.append(ipAddress);
  /external/chromium_org/third_party/libjingle/source/talk/p2p/client/
fakeportallocator.h 34 talk_base::IPAddress(INADDR_LOOPBACK), 8),
37 network_.AddIP(talk_base::IPAddress(INADDR_LOOPBACK));
  /external/ipsec-tools/src/libipsec/
policy_parse.h 52 IPADDRESS = 268,
71 #define IPADDRESS 268

Completed in 2861 milliseconds

12 3 4 5 6 7 8 91011