Searched defs:IpPrefix (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/net/
H A DIpPrefix.java46 public final class IpPrefix implements Parcelable { class in inherits:Parcelable
53 "IpPrefix has " + address.length + " bytes which is neither 4 nor 16");
59 * Constructs a new {@code IpPrefix} from a byte array containing an IPv4 or IPv6 address in
68 public IpPrefix(byte[] address, int prefixLength) { method in class:IpPrefix
75 * Constructs a new {@code IpPrefix} from an IPv4 or IPv6 address and a prefix length. Silently
83 public IpPrefix(InetAddress address, int prefixLength) { method in class:IpPrefix
92 * Constructs a new IpPrefix from a string such as "192.0.2.1/24" or "2001:db8::1/64".
100 public IpPrefix(String prefix) { method in class:IpPrefix
112 * Compares this {@code IpPrefix} object against the specified object in {@code obj}. Two
120 if (!(obj instanceof IpPrefix)) {
[all...]
/frameworks/native/include/binder/
H A DIpPrefix.h31 * C++ implementation of the Java class android.net.IpPrefix
33 class IpPrefix : public Parcelable { class in namespace:android::net
35 IpPrefix() = default;
36 virtual ~IpPrefix() = default;
37 IpPrefix(const IpPrefix& prefix) = default;
39 IpPrefix(const struct in6_addr& addr, int32_t plen): function in class:android::net::IpPrefix
42 IpPrefix(const struct in_addr& addr, int32_t plen): function in class:android::net::IpPrefix
61 friend bool operator==(const IpPrefix& lhs, const IpPrefix
[all...]
/frameworks/native/libs/binder/include/binder/
H A DIpPrefix.h31 * C++ implementation of the Java class android.net.IpPrefix
33 class IpPrefix : public Parcelable { class in namespace:android::net
35 IpPrefix() = default;
36 virtual ~IpPrefix() = default;
37 IpPrefix(const IpPrefix& prefix) = default;
39 IpPrefix(const struct in6_addr& addr, int32_t plen): function in class:android::net::IpPrefix
42 IpPrefix(const struct in_addr& addr, int32_t plen): function in class:android::net::IpPrefix
61 friend bool operator==(const IpPrefix& lhs, const IpPrefix
[all...]

Completed in 2515 milliseconds