Home
last modified time | relevance | path

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

/frameworks/base/services/net/java/android/net/netlink/
DStructNlAttr.java85 struct.nla_value = new byte[valueLen]; in parse()
86 byteBuffer.get(struct.nla_value, 0, valueLen); in parse()
94 public byte[] nla_value; field in StructNlAttr
109 nla_value[0] = value; in StructNlAttr()
158 if (nla_value == null) { return null; } in getValueAsByteBuffer()
159 final ByteBuffer byteBuffer = ByteBuffer.wrap(nla_value); in getValueAsByteBuffer()
173 if (nla_value == null) { return null; } in getValueAsInetAddress()
176 return InetAddress.getByAddress(nla_value); in getValueAsInetAddress()
190 if (nla_value != null) byteBuffer.put(nla_value); in pack()
198 nla_value = value; in setValue()
[all …]
DRtNetlinkNeighborMessage.java92 neighMsg.mLinkLayerAddr = nlAttr.nla_value; in parse()
222 nlAttr.nla_value = nlValue; in packNlAttr()
223 nlAttr.nla_len = (short) (StructNlAttr.NLA_HEADERLEN + nlAttr.nla_value.length); in packNlAttr()