Lines Matching refs:ptr2
376 struct bpf_dynptr ptr2; in test_dynptr_is_null() local
395 if (bpf_ringbuf_reserve_dynptr(&ringbuf, size, 0, &ptr2)) { in test_dynptr_is_null()
401 if (bpf_dynptr_is_null(&ptr2)) { in test_dynptr_is_null()
407 bpf_ringbuf_discard_dynptr(&ptr2, 0); in test_dynptr_is_null()
417 struct bpf_dynptr ptr2; in test_dynptr_is_rdonly() local
433 if (bpf_dynptr_from_skb(skb, 0, &ptr2)) { in test_dynptr_is_rdonly()
439 if (!bpf_dynptr_is_rdonly(&ptr2)) { in test_dynptr_is_rdonly()
465 struct bpf_dynptr ptr2; in test_dynptr_clone() local
480 if (bpf_dynptr_clone(&ptr1, &ptr2)) { in test_dynptr_clone()
488 if (bpf_dynptr_size(&ptr2) != size) { in test_dynptr_clone()
493 if (bpf_dynptr_is_rdonly(&ptr2) != bpf_dynptr_is_rdonly(&ptr1)) { in test_dynptr_clone()
502 if (bpf_dynptr_size(&ptr2) != size) { in test_dynptr_clone()