Searched refs:setTargetLabel (Results 1 – 3 of 3) sorted by relevance
/packages/modules/NetworkStack/src/android/net/apf/ |
D | ApfV4GeneratorBase.java | 96 return append(new Instruction(Opcodes.JMP).setTargetLabel(target)); in addJump() 288 return append(new Instruction(Opcodes.JEQ).addTwosCompUnsigned(val).setTargetLabel(tgt)); in addJumpIfR0Equals() 312 return append(new Instruction(Opcodes.JNE).addTwosCompUnsigned(val).setTargetLabel(tgt)); in addJumpIfR0NotEquals() 336 return append(new Instruction(Opcodes.JGT).addUnsigned(val).setTargetLabel(tgt)); in addJumpIfR0GreaterThan() 360 return append(new Instruction(Opcodes.JLT).addUnsigned(val).setTargetLabel(tgt)); in addJumpIfR0LessThan() 384 return append(new Instruction(Opcodes.JSET).addTwosCompUnsigned(val).setTargetLabel(tgt)); in addJumpIfR0AnyBitsSet() 440 return append(new Instruction(Opcodes.JEQ, R1).setTargetLabel(tgt)); in addJumpIfR0EqualsR1() 448 return append(new Instruction(Opcodes.JNE, R1).setTargetLabel(tgt)); in addJumpIfR0NotEqualsR1() 456 return append(new Instruction(Opcodes.JGT, R1).setTargetLabel(tgt)); in addJumpIfR0GreaterThanR1() 464 return append(new Instruction(Opcodes.JLT, R1).setTargetLabel(target)); in addJumpIfR0LessThanR1() [all …]
|
D | ApfV6GeneratorBase.java | 341 return append(new Instruction(ExtendedOpcodes.JDNSQMATCH, Rbit0).setTargetLabel(tgt).addU8( in addJumpIfPktAtR0DoesNotContainDnsQ() 352 return append(new Instruction(ExtendedOpcodes.JDNSQMATCHSAFE, Rbit0).setTargetLabel( in addJumpIfPktAtR0DoesNotContainDnsQSafe() 366 return append(new Instruction(ExtendedOpcodes.JDNSQMATCH, Rbit1).setTargetLabel(tgt).addU8( in addJumpIfPktAtR0ContainDnsQ() 377 return append(new Instruction(ExtendedOpcodes.JDNSQMATCHSAFE, Rbit1).setTargetLabel( in addJumpIfPktAtR0ContainDnsQSafe() 391 return append(new Instruction(ExtendedOpcodes.JDNSAMATCH, Rbit0).setTargetLabel(tgt) in addJumpIfPktAtR0DoesNotContainDnsA() 402 return append(new Instruction(ExtendedOpcodes.JDNSAMATCHSAFE, Rbit0).setTargetLabel(tgt) in addJumpIfPktAtR0DoesNotContainDnsASafe() 416 return append(new Instruction(ExtendedOpcodes.JDNSAMATCH, Rbit1).setTargetLabel( in addJumpIfPktAtR0ContainDnsA() 427 return append(new Instruction(ExtendedOpcodes.JDNSAMATCHSAFE, Rbit1).setTargetLabel( in addJumpIfPktAtR0ContainDnsASafe() 440 bytes.length).setTargetLabel(tgt).setBytesImm(bytes)); in addJumpIfBytesAtR0Equal() 457 .setTargetLabel(tgt) in addJumpIfBytesAtR0EqualsHelper() [all …]
|
D | BaseApfGenerator.java | 468 Instruction setTargetLabel(String label) { in setTargetLabel() method in BaseApfGenerator.Instruction
|