Lines Matching refs:bpf_text
128 bpf_text = """ variable
203 bpf_text = bpf_text.replace('THREAD_FILTER', thread_filter) variable
206 bpf_text = bpf_text.replace('STACK_STORAGE_SIZE', str(args.stack_storage_size)) variable
222 bpf_text = bpf_text.replace('USER_STACK_GET', user_stack_get) variable
223 bpf_text = bpf_text.replace('KERNEL_STACK_GET', kernel_stack_get) variable
226 bpf_text = bpf_text.replace('DO_KERNEL_RIP', '0') variable
229 bpf_text = bpf_text.replace('DO_KERNEL_RIP', '1') variable
241 bpf_text = bpf_text.replace('PERF_TRACE_EVENT', variable
243 bpf_text = bpf_text.replace('REGS_LOCATION', 'PT_REGS_PARM1(args)') variable
245 print(bpf_text)
249 b = BPF(text=bpf_text)