Lines Matching refs:cookie

130 __noinline int exception_cb_mod_global(u64 cookie)  in exception_cb_mod_global()  argument
145 __noinline int exception_cb_mod(u64 cookie) in exception_cb_mod() argument
147 return exception_cb_mod_global(cookie) + cookie + 10; in exception_cb_mod()
203 volatile u64 cookie = c; in assert_nz_gfunc() local
205 bpf_assert(cookie != 0); in assert_nz_gfunc()
211 volatile u64 cookie = c; in assert_zero_gfunc() local
213 bpf_assert(bpf_cmp_unlikely(cookie, ==, 0)); in assert_zero_gfunc()
219 volatile s64 cookie = c; in assert_neg_gfunc() local
221 bpf_assert(bpf_cmp_unlikely(cookie, <, 0)); in assert_neg_gfunc()
227 volatile s64 cookie = c; in assert_pos_gfunc() local
229 bpf_assert(bpf_cmp_unlikely(cookie, >, 0)); in assert_pos_gfunc()
235 volatile s64 cookie = c; in assert_negeq_gfunc() local
237 bpf_assert(bpf_cmp_unlikely(cookie, <=, -1)); in assert_negeq_gfunc()
243 volatile s64 cookie = c; in assert_poseq_gfunc() local
245 bpf_assert(bpf_cmp_unlikely(cookie, >=, 1)); in assert_poseq_gfunc()
251 volatile u64 cookie = c; in assert_nz_gfunc_with() local
253 bpf_assert_with(cookie != 0, cookie + 100); in assert_nz_gfunc_with()
259 volatile u64 cookie = c; in assert_zero_gfunc_with() local
261 bpf_assert_with(bpf_cmp_unlikely(cookie, ==, 0), cookie + 100); in assert_zero_gfunc_with()
267 volatile s64 cookie = c; in assert_neg_gfunc_with() local
269 bpf_assert_with(bpf_cmp_unlikely(cookie, <, 0), cookie + 100); in assert_neg_gfunc_with()
275 volatile s64 cookie = c; in assert_pos_gfunc_with() local
277 bpf_assert_with(bpf_cmp_unlikely(cookie, >, 0), cookie + 100); in assert_pos_gfunc_with()
283 volatile s64 cookie = c; in assert_negeq_gfunc_with() local
285 bpf_assert_with(bpf_cmp_unlikely(cookie, <=, -1), cookie + 100); in assert_negeq_gfunc_with()
291 volatile s64 cookie = c; in assert_poseq_gfunc_with() local
293 bpf_assert_with(bpf_cmp_unlikely(cookie, >=, 1), cookie + 100); in assert_poseq_gfunc_with()
297 #define check_assert(name, cookie, tag) \ argument
301 return name(cookie) + 1; \