Home
last modified time | relevance | path

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

/frameworks/base/services/net/java/android/net/netlink/
DRtNetlinkNeighborMessage.java59 final StructNlAttr nlAttr = StructNlAttr.peek(byteBuffer); in findNextAttrOfType() local
60 if (nlAttr == null) { in findNextAttrOfType()
63 if (nlAttr.nla_type == attrType) { in findNextAttrOfType()
66 if (byteBuffer.remaining() < nlAttr.getAlignedLength()) { in findNextAttrOfType()
69 byteBuffer.position(byteBuffer.position() + nlAttr.getAlignedLength()); in findNextAttrOfType()
84 StructNlAttr nlAttr = findNextAttrOfType(NDA_DST, byteBuffer); in parse() local
85 if (nlAttr != null) { in parse()
86 neighMsg.mDestination = nlAttr.getValueAsInetAddress(); in parse()
90 nlAttr = findNextAttrOfType(NDA_LLADDR, byteBuffer); in parse()
91 if (nlAttr != null) { in parse()
[all …]