Home | History | Annotate | Download | only in bpf_dsl

Lines Matching defs:Program

30 // Compile() to convert this DAG to a Program.
47 // CodeGen::Program program = gen.Compile(dag);
49 // static_cast<unsigned short>(program.size()), &program[0] };
55 // program in the kernel.
56 typedef std::vector<struct sock_filter> Program;
59 using Node = Program::size_type;
79 // program that can be executed by a BPF virtual machine.
80 Program Compile(Node head);
91 // program.
101 // NOTE: program_ is the compiled program in *reverse*, so that
103 Program program_;