Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/net/
DRouteInfo.java53 private final IpPrefix mDestination; field in RouteInfo
153 mDestination = destination; // IpPrefix objects are immutable. in RouteInfo()
262 return (mDestination.getAddress() instanceof Inet4Address && in isHost()
263 mDestination.getPrefixLength() == 32) || in isHost()
264 (mDestination.getAddress() instanceof Inet6Address && in isHost()
265 mDestination.getPrefixLength() == 128); in isHost()
274 return mDestination; in getDestination()
282 return new LinkAddress(mDestination.getAddress(), mDestination.getPrefixLength()); in getDestinationLinkAddress()
321 return mType == RTN_UNICAST && mDestination.getPrefixLength() == 0; in isDefaultRoute()
329 return isDefaultRoute() && mDestination.getAddress() instanceof Inet4Address; in isIPv4Default()
[all …]
/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.java32 private final int mDestination; field in HdmiCecMessage
42 mDestination = destination; in HdmiCecMessage()
64 return mDestination; in getDestination()
92 opcodeToString(mOpcode), mSource, mDestination)); in toString()
/frameworks/native/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.java96 private final ParcelFileDescriptor mDestination; field in PrintFileDocumentAdapter.WriteFileAsyncTask
104 mDestination = destination; in WriteFileAsyncTask()
118 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.java3438 @NonNull private final ColorSpace mDestination; field in ColorSpace.Connector
3471 mDestination = destination; in Connector()
3527 return mDestination; in getDestination()
3592 @NonNull private final ColorSpace.Rgb mDestination; field in ColorSpace.Connector.Rgb
3599 mDestination = destination; in Rgb()
3609 rgb[0] = (float) mDestination.mClampedOetf.applyAsDouble(rgb[0]); in transform()
3610 rgb[1] = (float) mDestination.mClampedOetf.applyAsDouble(rgb[1]); in transform()
3611 rgb[2] = (float) mDestination.mClampedOetf.applyAsDouble(rgb[2]); in transform()
/frameworks/native/libs/ui/
DColorSpace.cpp394 , mDestination(dst) { in ColorSpaceConnector()