Lines Matching full:example
80 **example.o**, BPF object name will be **example**. The
133 **$ cat example.c**
172 This is example BPF application with two BPF programs and a mix of BPF maps
175 **$ bpftool gen skeleton example.o**
188 struct example {
219 static void example__destroy(struct example *obj);
220 static inline struct example *example__open_opts(
222 static inline struct example *example__open();
223 static inline int example__load(struct example *obj);
224 static inline struct example *example__open_and_load();
225 static inline int example__attach(struct example *obj);
226 static inline void example__detach(struct example *obj);
234 #include "example.skel.h"
238 struct example *skel;
281 This is a stripped-out version of skeleton generated for above example code.