Home | History | Annotate | Download | only in net

Lines Matching refs:mDestination

53     private final IpPrefix mDestination;
153 mDestination = destination; // IpPrefix objects are immutable.
262 return (mDestination.getAddress() instanceof Inet4Address &&
263 mDestination.getPrefixLength() == 32) ||
264 (mDestination.getAddress() instanceof Inet6Address &&
265 mDestination.getPrefixLength() == 128);
274 return mDestination;
282 return new LinkAddress(mDestination.getAddress(), mDestination.getPrefixLength());
321 return mType == RTN_UNICAST && mDestination.getPrefixLength() == 0;
329 return isDefaultRoute() && mDestination.getAddress() instanceof Inet4Address;
337 return isDefaultRoute() && mDestination.getAddress() instanceof Inet6Address;
370 return mDestination.contains(destination);
388 if (NetworkUtils.addressTypeMatches(route.mDestination.getAddress(), dest)) {
390 (bestRoute.mDestination.getPrefixLength() >=
391 route.mDestination.getPrefixLength())) {
405 if (mDestination != null) val = mDestination.toString();
432 return Objects.equals(mDestination, target.getDestination()) &&
442 return (mDestination.hashCode() * 41)
459 dest.writeParcelable(mDestination, flags);