Home
last modified time | relevance | path

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

/packages/modules/Connectivity/staticlibs/device/com/android/net/module/util/netlink/
DConntrackMessage.java22 import static com.android.net.module.util.netlink.StructNlAttr.findNextAttrOfType;
243 StructNlAttr nlAttr = findNextAttrOfType(CTA_STATUS, byteBuffer); in parse()
250 nlAttr = findNextAttrOfType(CTA_TIMEOUT, byteBuffer); in parse()
257 nlAttr = findNextAttrOfType(makeNestedType(CTA_TUPLE_ORIG), byteBuffer); in parse()
264 nlAttr = findNextAttrOfType(makeNestedType(CTA_TUPLE_REPLY), byteBuffer); in parse()
324 StructNlAttr nlAttr = findNextAttrOfType(makeNestedType(CTA_TUPLE_IP), byteBuffer); in parseTuple()
331 nlAttr = findNextAttrOfType(makeNestedType(CTA_TUPLE_PROTO), byteBuffer); in parseTuple()
354 StructNlAttr nlAttr = findNextAttrOfType(CTA_IP_V4_SRC, byteBuffer); in parseTupleIpv4()
361 nlAttr = findNextAttrOfType(CTA_IP_V4_DST, byteBuffer); in parseTupleIpv4()
379 StructNlAttr nlAttr = findNextAttrOfType(CTA_PROTO_NUM, byteBuffer); in parseTupleProto()
[all …]
DRtNetlinkRouteMessage.java202 StructNlAttr nlAttr = StructNlAttr.findNextAttrOfType(RTA_DST, byteBuffer); in parse()
220 nlAttr = StructNlAttr.findNextAttrOfType(RTA_SRC, byteBuffer); in parse()
232 nlAttr = StructNlAttr.findNextAttrOfType(RTA_GATEWAY, byteBuffer); in parse()
243 nlAttr = StructNlAttr.findNextAttrOfType(RTA_IIF, byteBuffer); in parse()
254 nlAttr = StructNlAttr.findNextAttrOfType(RTA_OIF, byteBuffer); in parse()
265 nlAttr = StructNlAttr.findNextAttrOfType(RTA_CACHEINFO, byteBuffer); in parse()
272 nlAttr = StructNlAttr.findNextAttrOfType(RTA_EXPIRES, byteBuffer); in parse()
DRtNetlinkLinkMessage.java101 StructNlAttr nlAttr = StructNlAttr.findNextAttrOfType(IFLA_MTU, byteBuffer); in parse()
108 nlAttr = StructNlAttr.findNextAttrOfType(IFLA_ADDRESS, byteBuffer); in parse()
115 nlAttr = StructNlAttr.findNextAttrOfType(IFLA_IFNAME, byteBuffer); in parse()
DRtNetlinkNeighborMessage.java71 StructNlAttr nlAttr = StructNlAttr.findNextAttrOfType(NDA_DST, byteBuffer); in parse()
77 nlAttr = StructNlAttr.findNextAttrOfType(NDA_LLADDR, byteBuffer); in parse()
83 nlAttr = StructNlAttr.findNextAttrOfType(NDA_PROBES, byteBuffer); in parse()
89 nlAttr = StructNlAttr.findNextAttrOfType(NDA_CACHEINFO, byteBuffer); in parse()
DRtNetlinkAddressMessage.java119 StructNlAttr nlAttr = StructNlAttr.findNextAttrOfType(IFA_ADDRESS, byteBuffer); in parse()
126 nlAttr = StructNlAttr.findNextAttrOfType(IFA_CACHEINFO, byteBuffer); in parse()
136 nlAttr = StructNlAttr.findNextAttrOfType(IFA_FLAGS, byteBuffer); in parse()
DStructNlAttr.java119 public static StructNlAttr findNextAttrOfType(short attrType, in findNextAttrOfType() method in StructNlAttr