Lines Matching refs:code
23 and tracing helpers, allowing developers to simplify BPF code writing.
56 state without racing with the BPF program code execution.
73 objects. Skeleton code abstract away generic libbpf APIs to significantly
74 simplify code for manipulating BPF programs from user space. Skeleton code
76 process of distributing your BPF code. With BPF bytecode embedded, there are no
92 Using the skeleton code is the recommended way to work with bpf programs. Keep
96 cumbersome code.
102 global variables. The skeleton code memory maps global variables as a struct
112 code and user-space code getting out of sync.
121 system. The BPF helpers definition allows developers to use them in BPF code as
168 applications without modifications and runtime source code compilation on the
171 The following code snippet shows how to read the parent field of a kernel
177 .. code-block:: C
192 In the code snippet, we first get a pointer to the current ``task_struct`` using
217 Rust-idiomatic interfaces and provides libbpf-cargo plugin to handle BPF code