Lines Matching full:acquired
18 struct file *acquired; in BPF_PROG() local
21 acquired = bpf_get_task_exe_file(NULL); in BPF_PROG()
22 if (!acquired) in BPF_PROG()
25 bpf_put_file(acquired); in BPF_PROG()
34 struct file *acquired; in BPF_PROG() local
39 acquired = bpf_get_task_exe_file(task); in BPF_PROG()
40 if (!acquired) in BPF_PROG()
43 bpf_put_file(acquired); in BPF_PROG()
51 struct file *acquired; in BPF_PROG() local
59 acquired = bpf_get_task_exe_file(parent); in BPF_PROG()
60 if (!acquired) in BPF_PROG()
63 bpf_put_file(acquired); in BPF_PROG()
71 struct file *acquired; in BPF_PROG() local
73 acquired = bpf_get_task_exe_file(bpf_get_current_task_btf()); in BPF_PROG()
74 if (!acquired) in BPF_PROG()
77 /* Acquired but never released. */ in BPF_PROG()