HomeSort by relevance Sort by last modified time
    Searched defs:MakeInstruction (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/sandbox/linux/seccomp-bpf/
codegen.cc 137 Instruction* CodeGen::MakeInstruction(uint16_t code,
165 Instruction* CodeGen::MakeInstruction(uint16_t code, const ErrorCode& err) {
173 return MakeInstruction(code, err.err_);
176 Instruction* CodeGen::MakeInstruction(uint16_t code,
612 Instruction* ja = MakeInstruction(BPF_JMP + BPF_JA, 0, last_insn->next);
668 Instruction* ja = MakeInstruction(BPF_JMP + BPF_JA, 0, insn->jt_ptr);
679 Instruction* ja = MakeInstruction(BPF_JMP + BPF_JA, 0, insn->jf_ptr);
codegen_unittest.cc 50 return codegen->MakeInstruction(BPF_RET+BPF_K,
60 return codegen->MakeInstruction(BPF_JMP+BPF_JEQ+BPF_K, 42,
61 codegen->MakeInstruction(BPF_RET+BPF_K,
63 codegen->MakeInstruction(BPF_RET+BPF_K,
78 codegen->MakeInstruction(BPF_RET+BPF_K,
80 return codegen->MakeInstruction(BPF_JMP+BPF_JEQ+BPF_K, 42, ret, ret);
95 Instruction *insn0 = codegen->MakeInstruction(BPF_LD+BPF_W+BPF_ABS, 42);
101 Instruction *insn1 = codegen->MakeInstruction(BPF_JMP+BPF_JA, 0, insn0);
106 Instruction *insn2 = codegen->MakeInstruction(BPF_RET+BPF_K, ErrorCode(42));
113 Instruction *insn3 = codegen->MakeInstruction(BPF_LD+BPF_W+BPF_ABS, 42
    [all...]

Completed in 39 milliseconds