Home
last modified time | relevance | path

Searched refs:DROP_LABEL (Results 1 – 9 of 9) sorted by relevance

/packages/modules/NetworkStack/tests/unit/src/android/net/apf/
DApfNewTest.kt52 import android.net.apf.BaseApfGenerator.DROP_LABEL
210 ApfV4Generator.DROP_LABEL in testApfInstructionEncodingSizeCheck()
215 ApfV4Generator.DROP_LABEL in testApfInstructionEncodingSizeCheck()
220 ApfV4Generator.DROP_LABEL in testApfInstructionEncodingSizeCheck()
225 ApfV4Generator.DROP_LABEL in testApfInstructionEncodingSizeCheck()
230 ApfV4Generator.DROP_LABEL in testApfInstructionEncodingSizeCheck()
235 ApfV4Generator.DROP_LABEL in testApfInstructionEncodingSizeCheck()
240 ApfV4Generator.DROP_LABEL in testApfInstructionEncodingSizeCheck()
245 ApfV4Generator.DROP_LABEL in testApfInstructionEncodingSizeCheck()
250 ApfV4Generator.DROP_LABEL in testApfInstructionEncodingSizeCheck()
[all …]
DApfTest.java21 import static android.net.apf.BaseApfGenerator.DROP_LABEL;
345 gen.addJump(DROP_LABEL); in testApfInstructions()
358 gen.addJump(DROP_LABEL); in testApfInstructions()
367 gen.addJumpIfR0Equals(0, DROP_LABEL); in testApfInstructions()
372 gen.addJumpIfR0NotEquals(0, DROP_LABEL); in testApfInstructions()
376 gen.addJumpIfR0NotEquals(0, DROP_LABEL); in testApfInstructions()
381 gen.addJumpIfR0EqualsR1(DROP_LABEL); in testApfInstructions()
386 gen.addJumpIfR0NotEqualsR1(DROP_LABEL); in testApfInstructions()
390 gen.addJumpIfR0NotEqualsR1(DROP_LABEL); in testApfInstructions()
396 gen.addJumpIfR0Equals(1234567890, DROP_LABEL); in testApfInstructions()
[all …]
DBpf2Apf.java298 gen.addJump(gen.DROP_LABEL); in convertLine()
DApfStandaloneTest.kt349 gen.addJump(BaseApfGenerator.DROP_LABEL) in generateApfV4Program()
/packages/modules/NetworkStack/src/android/net/apf/
DDnsUtils.java105 gen.addJumpIfR0GreaterThanR1(ApfV4Generator.DROP_LABEL); in genParseDnsLabel()
151 gen.addJumpIfR0EqualsR1(ApfV4Generator.DROP_LABEL); in genParseDnsLabel()
152 gen.addJumpIfR0GreaterThanR1(ApfV4Generator.DROP_LABEL); in genParseDnsLabel()
261 gen.addJumpIfR0Equals(0, ApfV4Generator.DROP_LABEL); in genFindNextDnsQuestion()
409 gen.addJump(ApfV4Generator.DROP_LABEL); in generateFilter()
DApfV4Generator.java68 mCountAndDropLabel = version > 2 ? COUNT_AND_DROP_LABEL : DROP_LABEL; in ApfV4Generator()
392 .addJump(DROP_LABEL); in addCountTrampoline()
DBaseApfGenerator.java667 if (mTargetLabel == DROP_LABEL) { in calculateTargetLabelOffset()
862 public static final String DROP_LABEL = "__DROP__"; field in BaseApfGenerator
DLegacyApfFilter.java418 mCountAndDropLabel = ApfV4Generator.DROP_LABEL; in LegacyApfFilter()
1856 gen.addJump(gen.DROP_LABEL); in emitEpilogue()
/packages/modules/Connectivity/tests/cts/net/src/android/net/cts/
DApfIntegrationTest.kt447 gen.addJump(BaseApfGenerator.DROP_LABEL) in testDropPingReply()