Lines Matching refs:bpf_text
100 bpf_text = """ variable
158 bpf_text = bpf_text.replace('FILTER', variable
161 bpf_text = bpf_text.replace('FILTER', '') variable
163 bpf_text = bpf_text.replace('FACTOR', 'delta /= 1000000;') variable
166 bpf_text = bpf_text.replace('FACTOR', 'delta /= 1000;') variable
169 bpf_text = bpf_text.replace('FACTOR', '') variable
172 bpf_text = bpf_text.replace('STORAGE', 'BPF_HASH(ipaddr, u32);\n' + variable
175 bpf_text = bpf_text.replace('ENTRYSTORE', variable
178 bpf_text = bpf_text.replace('STORE', variable
192 bpf_text = bpf_text.replace('STORAGE', 'BPF_HISTOGRAM(dist);') variable
193 bpf_text = bpf_text.replace('ENTRYSTORE', '') variable
194 bpf_text = bpf_text.replace('STORE', variable
197 print(bpf_text)
206 b = BPF(text=bpf_text)