HomeSort by relevance Sort by last modified time
    Searched refs:ipaddress (Results 1 - 17 of 17) sorted by null

  /libcore/luni/src/main/java/java/net/
Inet4Address.java 51 Inet4Address(byte[] ipaddress, String hostName) {
52 super(AF_INET, ipaddress, hostName);
56 return ipaddress[0] == 0 && ipaddress[1] == 0 && ipaddress[2] == 0 && ipaddress[3] == 0; // 0.0.0.0
61 return ((ipaddress[0] & 0xff) == 169) && ((ipaddress[1] & 0xff) == 254); // 169.254/16
65 return ((ipaddress[0] & 0xff) == 127); // 127/8
74 int address = Memory.peekInt(ipaddress, 0, ByteOrder.BIG_ENDIAN)
    [all...]
Inet6Address.java 65 Inet6Address(byte[] ipaddress, String hostName, int scope_id) {
66 super(AF_INET6, ipaddress, hostName);
173 return Arrays.equals(ipaddress, Inet6Address.ANY.ipaddress);
183 if (ipaddress[i] != 0) {
191 return ((ipaddress[0] & 0xff) == 0xfe) && ((ipaddress[1] & 0xc0) == 0x80); // fe80:/10
195 return Arrays.equals(ipaddress, Inet6Address.LOOPBACK.ipaddress);
199 return ((ipaddress[0] & 0xff) == 0xff) && ((ipaddress[1] & 0x0f) == 0x0e); // ffxe:/1
    [all...]
InetUnixAddress.java 46 return "InetUnixAddress[" + new String(ipaddress, StandardCharsets.UTF_8) + "]";
InetAddress.java 134 byte[] ipaddress; field in class:InetAddress
149 InetAddress(int family, byte[] ipaddress, String hostName) {
151 this.ipaddress = ipaddress;
169 return Arrays.equals(this.ipaddress, ((InetAddress) obj).ipaddress);
180 return ipaddress.clone();
375 return Arrays.hashCode(ipaddress);
441 return makeInetAddress(address.ipaddress.clone(), hostname);
743 * Equivalent to {@code getByAddress(null, ipAddress)}. Handy for addresses wit
    [all...]
InterfaceAddress.java 59 for (byte b : mask.ipaddress) {
PlainDatagramSocketImpl.java 156 sender.ipaddress = packet.getAddress().getAddress();
  /external/iproute2/ip/
Android.mk 4 LOCAL_SRC_FILES := ip.c ipaddress.c ipaddrlabel.c iproute.c iprule.c ipnetns.c \
Makefile 1 IPOBJ=ip.o ipaddress.o ipaddrlabel.o iproute.o iprule.o ipnetns.o \
  /external/chromium_org/chrome/test/pyautolib/
chromeos_network.py 152 os.system('route del -net %(ipaddress)s gateway %(gateway)s netmask '
213 def _SetupRouteForPowerStrip(self, ipaddress, iface='eth'):
227 'ipaddress' : ipaddress
230 os.system('route add -net %(ipaddress)s gateway %(gateway)s netmask '
234 assert os.system('route -n | egrep "^%(ipaddress)s[[:space:]]+%(gateway)s'
  /external/chromium_org/third_party/libjingle/
libjingle.target.darwin-arm.mk 50 third_party/libjingle/source/talk/base/ipaddress.cc \
libjingle.target.darwin-mips.mk 50 third_party/libjingle/source/talk/base/ipaddress.cc \
libjingle.target.darwin-x86.mk 50 third_party/libjingle/source/talk/base/ipaddress.cc \
libjingle.target.linux-arm.mk 50 third_party/libjingle/source/talk/base/ipaddress.cc \
libjingle.target.linux-mips.mk 50 third_party/libjingle/source/talk/base/ipaddress.cc \
libjingle.target.linux-x86.mk 50 third_party/libjingle/source/talk/base/ipaddress.cc \
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiConfigController.java 746 mIpAddressView = (TextView) mView.findViewById(R.id.ipaddress);
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/
libjingle.scons 182 "base/ipaddress.cc",

Completed in 310 milliseconds