Searched refs:StructNlAttr (Results 1 – 3 of 3) sorted by relevance
35 public class StructNlAttr { class43 public static StructNlAttr peek(ByteBuffer byteBuffer) { in peek()49 final StructNlAttr struct = new StructNlAttr(); in peek()62 public static StructNlAttr parse(ByteBuffer byteBuffer) { in parse()63 final StructNlAttr struct = peek(byteBuffer); in parse()86 public StructNlAttr() { in StructNlAttr() method in StructNlAttr
26 import android.net.netlink.StructNlAttr;57 private static StructNlAttr findNextAttrOfType(short attrType, ByteBuffer byteBuffer) { in findNextAttrOfType()59 final StructNlAttr nlAttr = StructNlAttr.peek(byteBuffer); in findNextAttrOfType()64 return StructNlAttr.parse(byteBuffer); in findNextAttrOfType()84 StructNlAttr nlAttr = findNextAttrOfType(NDA_DST, byteBuffer); in parse()208 StructNlAttr.NLA_HEADERLEN + mDestination.getAddress().length); in getRequiredSpace()212 StructNlAttr.NLA_HEADERLEN + mLinkLayerAddr.length); in getRequiredSpace()220 final StructNlAttr nlAttr = new StructNlAttr(); in packNlAttr()223 nlAttr.nla_len = (short) (StructNlAttr.NLA_HEADERLEN + nlAttr.nla_value.length); in packNlAttr()
22 import android.net.netlink.StructNlAttr;