Uses of Class
jnetpcap.filter.bpf.IllegalInstruction

Packages that use IllegalInstruction
jnetpcap.filter.bpf BPF (Berkley Packet Filter) extension for filter framework. 
jnetpcap.filter.bpf.vm BPF Virtual Machine in executed in pure java. 
 

Uses of IllegalInstruction in jnetpcap.filter.bpf
 

Methods in jnetpcap.filter.bpf that throw IllegalInstruction
static BPFInstruction[] BPFProgram.compileTcpdumpOutput(java.lang.String text)
           
static BPFInstruction[] BPFProgram.convertBE(byte[] program)
           
static BPFInstruction[] BPFProgram.convertLE(byte[] program)
           
 void TestBPFProgramRawBytes.testReadRawFromFile()
           
 

Constructors in jnetpcap.filter.bpf that throw IllegalInstruction
BPFInstruction(byte[] buf, int offset, java.nio.ByteOrder encoding)
          Initializes the instruction from raw buffer data.
BPFInstruction(int code, int jt, int jf, int k)
           
BPFProgram(byte[] pc)
           
BPFProgram(java.lang.String tcpdumpText)
           
 

Uses of IllegalInstruction in jnetpcap.filter.bpf.vm
 

Methods in jnetpcap.filter.bpf.vm that throw IllegalInstruction
 long BPFVirtualMachine.execute(BPFProgram program, byte[] p, int wirelen, int buflen)
           
 long BPFVirtualMachine.execute(byte[] p, int wirelen, int buflen)
           
 long BPFVirtualMachine.execute(java.nio.ByteBuffer p, int wirelen, int buflen)
           
 void TestVM.setUp()
           
 void TestVM.test_l2tp()
           
 void TestVM.test_nfsv2()
           
 void TestVM.test_radius_vpdn_basic()
           
 

Constructors in jnetpcap.filter.bpf.vm that throw IllegalInstruction
BPFVirtualMachine(byte[] pc)