Lines Matching refs:bpf_text
69 bpf_text = """ variable
206 bpf_text += bpf_text_raw_tp
208 bpf_text += bpf_text_kprobe
213 bpf_text = bpf_text.replace('FILTER', 'tgid != %s' % args.pid) variable
215 bpf_text = bpf_text.replace('FILTER', '0') variable
217 bpf_text = bpf_text.replace('FACTOR', 'delta /= 1000000;') variable
220 bpf_text = bpf_text.replace('FACTOR', 'delta /= 1000;') variable
228 bpf_text = bpf_text.replace('STORAGE', variable
230 bpf_text = bpf_text.replace('STORE', variable
235 bpf_text = bpf_text.replace('STORAGE', variable
237 bpf_text = bpf_text.replace('STORE', 'pidns_key_t key = ' + variable
242 bpf_text = bpf_text.replace('STORAGE', 'BPF_HISTOGRAM(dist);') variable
243 bpf_text = bpf_text.replace('STORE', variable
246 print(bpf_text)
251 b = BPF(text=bpf_text)