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

/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...]
/frameworks/base/core/java/android/net/
H A DIpPrefix.java48 public final class IpPrefix implements Parcelable { class in inherits:Parcelable
55 "IpPrefix has " + address.length + " bytes which is neither 4 nor 16");
61 * Constructs a new {@code IpPrefix} from a byte array containing an IPv4 or IPv6 address in
70 public IpPrefix(byte[] address, int prefixLength) { method in class:IpPrefix
77 * Constructs a new {@code IpPrefix} from an IPv4 or IPv6 address and a prefix length. Silently
85 public IpPrefix(InetAddress address, int prefixLength) { method in class:IpPrefix
94 * Constructs a new IpPrefix from a string such as "192.0.2.1/24" or "2001:db8::1/64".
102 public IpPrefix(String prefix) { method in class:IpPrefix
114 * Compares this {@code IpPrefix} object against the specified object in {@code obj}. Two
122 if (!(obj instanceof IpPrefix)) {
[all...]

Completed in 1522 milliseconds