Searched defs:nla_value (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/net/netlink/
H A DStructNlAttr.java74 struct.nla_value = new byte[valueLen];
75 byteBuffer.get(struct.nla_value, 0, valueLen);
83 public byte[] nla_value; field in class:StructNlAttr
95 if (nla_value == null) { return null; }
96 final ByteBuffer byteBuffer = ByteBuffer.wrap(nla_value);
110 if (nla_value == null) { return null; }
113 return InetAddress.getByAddress(nla_value);
123 byteBuffer.put(nla_value);
132 + "nla_value{" + NetlinkConstants.hexify(nla_value)
[all...]

Completed in 16 milliseconds