Home
last modified time | relevance | path

Searched defs:BpfProg (Results 1 – 3 of 3) sorted by relevance

/DragonOS/kernel/src/bpf/prog/
H A Dmod.rs21 pub struct BpfProg { struct
22 meta: BpfProgMeta, argument
26 impl BpfProg { implementation
47 impl IndexNode for BpfProg { implementation
100 impl Drop for BpfProg { implementation
H A Dverifier.rs26 pub fn new(prog: BpfProg, log_level: VerifierLogLevel, log_buf: &'a mut [u8]) -> Self { in new()
127 pub fn verify(mut self, fd_table: &Arc<RwLock<FileDescriptorVec>>) -> Result<BpfProg> { in verify()
/DragonOS/kernel/src/perf/
H A Dkprobe.rs60 fn new(bpf_prog_file: Arc<BpfProg>, vm: EbpfVmRawOwned) -> Self { in new()