Home
last modified time | relevance | path

Searched refs:mDestination (Results 1 – 10 of 10) sorted by relevance

/frameworks/base/core/java/android/net/
DRouteInfo.java71 private final IpPrefix mDestination; field in RouteInfo
185 mDestination = destination; // IpPrefix objects are immutable. in RouteInfo()
315 return (mDestination.getAddress() instanceof Inet4Address && in isHost()
316 mDestination.getPrefixLength() == 32) || in isHost()
317 (mDestination.getAddress() instanceof Inet6Address && in isHost()
318 mDestination.getPrefixLength() == 128); in isHost()
328 return mDestination; in getDestination()
337 return new LinkAddress(mDestination.getAddress(), mDestination.getPrefixLength()); in getDestinationLinkAddress()
381 return mType == RTN_UNICAST && mDestination.getPrefixLength() == 0; in isDefaultRoute()
389 return isDefaultRoute() && mDestination.getAddress() instanceof Inet4Address; in isIPv4Default()
[all …]
DNattSocketKeepalive.java33 @NonNull private final InetAddress mDestination; field in NattSocketKeepalive
46 mDestination = destination; in NattSocketKeepalive()
56 mSource.getHostAddress(), mDestination.getHostAddress()); in startImpl()
/frameworks/base/services/net/java/android/net/netlink/
DRtNetlinkNeighborMessage.java86 neighMsg.mDestination = nlAttr.getValueAsInetAddress(); in parse()
158 msg.mDestination = ip; in newNewNeighborMessage()
170 private InetAddress mDestination; field in RtNetlinkNeighborMessage
178 mDestination = null; in RtNetlinkNeighborMessage()
189 return mDestination; in getDestination()
206 if (mDestination != null) { in getRequiredSpace()
208 StructNlAttr.NLA_HEADERLEN + mDestination.getAddress().length); in getRequiredSpace()
231 if (mDestination != null) { in pack()
232 packNlAttr(NDA_DST, mDestination.getAddress(), byteBuffer); in pack()
241 final String ipLiteral = (mDestination == null) ? "" : mDestination.getHostAddress(); in toString()
/frameworks/base/services/core/java/com/android/server/hdmi/
DHdmiCecMessage.java35 private final int mDestination; field in HdmiCecMessage
45 mDestination = destination; in HdmiCecMessage()
55 this.mDestination == that.getDestination() && in equals()
66 mDestination, in hashCode()
88 return mDestination; in getDestination()
116 opcodeToString(mOpcode), mSource, mDestination, mOpcode)); in toString()
/frameworks/native/libs/ui/include_vndk/ui/
DColorSpace.h283 constexpr const ColorSpace& getDestination() const noexcept { return mDestination; } in getDestination()
289 return apply(mDestination.fromLinear(mTransform * linear), mDestination.getClamper()); in transform()
294 return apply(mTransform * linear, mDestination.getClamper()); in transformLinear()
299 ColorSpace mDestination; variable
/frameworks/native/libs/ui/include/ui/
DColorSpace.h283 constexpr const ColorSpace& getDestination() const noexcept { return mDestination; } in getDestination()
289 return apply(mDestination.fromLinear(mTransform * linear), mDestination.getClamper()); in transform()
294 return apply(mTransform * linear, mDestination.getClamper()); in transformLinear()
299 ColorSpace mDestination; variable
/frameworks/base/core/java/android/print/
DPrintFileDocumentAdapter.java98 private final ParcelFileDescriptor mDestination; field in PrintFileDocumentAdapter.WriteFileAsyncTask
106 mDestination = destination; in WriteFileAsyncTask()
120 OutputStream out = new FileOutputStream(mDestination.getFileDescriptor())) { in doInBackground()
/frameworks/opt/chips/src/com/android/ex/chips/
DRecipientEntry.java63 private final String mDestination; field in RecipientEntry
117 mDestination = destination; in RecipientEntry()
259 return mDestination; in getDestination()
323 return mDisplayName + " <" + mDestination + ">, isValid=" + mIsValid; in toString()
/frameworks/base/graphics/java/android/graphics/
DColorSpace.java3635 @NonNull private final ColorSpace mDestination; field in ColorSpace.Connector
3668 mDestination = destination; in Connector()
3724 return mDestination; in getDestination()
3789 @NonNull private final ColorSpace.Rgb mDestination; field in ColorSpace.Connector.Rgb
3796 mDestination = destination; in Rgb()
3806 rgb[0] = (float) mDestination.mClampedOetf.applyAsDouble(rgb[0]); in transform()
3807 rgb[1] = (float) mDestination.mClampedOetf.applyAsDouble(rgb[1]); in transform()
3808 rgb[2] = (float) mDestination.mClampedOetf.applyAsDouble(rgb[2]); in transform()
/frameworks/native/libs/ui/
DColorSpace.cpp393 , mDestination(dst) { in ColorSpaceConnector()