Searched refs:PacketSection (Results 1 – 1 of 1) sorted by relevance
/packages/modules/NetworkStack/src/android/net/apf/ |
D | ApfFilter.java | 511 private static class PacketSection { class in ApfFilter 529 PacketSection(int start, int length, Type type, int option, long lifetime) { in PacketSection() method in ApfFilter.PacketSection 582 private final ArrayList<PacketSection> mPacketSections = new ArrayList<>(); 707 new PacketSection(mPacket.position(), length, PacketSection.Type.MATCH, 0, 0)); in addMatchSection() 725 new PacketSection(mPacket.position(), length, PacketSection.Type.IGNORE, 0, 0)); in addIgnoreSection() 737 new PacketSection(mPacket.position(), length, PacketSection.Type.LIFETIME, in addLifetimeSection() 764 private boolean isRelevantLifetime(PacketSection section) { in isRelevantLifetime() 765 return section.type == PacketSection.Type.LIFETIME in isRelevantLifetime() 869 for (PacketSection section : mPacketSections) { in matches() 870 if (section.type != PacketSection.Type.MATCH) continue; in matches() [all …]
|