Home
last modified time | relevance | path

Searched defs:PerfBuffer (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/external/rust/android-crates-io/crates/libbpf-rs/src/
Dperf_buffer.rs187 pub struct PerfBuffer<'b> { struct
189 // Hold onto the box so it'll get dropped when PerfBuffer is dropped argument
195 impl PerfBuffer<'_> { argument
233 impl AsRawLibbpf for PerfBuffer<'_> { implementation
243 unsafe impl Send for PerfBuffer<'_> {} implementation
245 impl Drop for PerfBuffer<'_> { implementation
/aosp_15_r20/external/rust/android-crates-io/crates/libbpf-rs/tests/
Dtest.rs1803 fn buffer<'a>(perf: &'a libbpf_rs::PerfBuffer, buf_idx: usize) -> &'a [u8] { in buffer()