Lines Matching full:bytes
177 int *bytes, zero = 0, one = 1, two = 2, three = 3, four = 4, five = 5; in bpf_prog4() local
180 bytes = bpf_map_lookup_elem(&sock_apply_bytes, &zero); in bpf_prog4()
181 if (bytes) in bpf_prog4()
182 bpf_msg_apply_bytes(msg, *bytes); in bpf_prog4()
183 bytes = bpf_map_lookup_elem(&sock_cork_bytes, &zero); in bpf_prog4()
184 if (bytes) in bpf_prog4()
185 bpf_msg_cork_bytes(msg, *bytes); in bpf_prog4()
206 int *bytes, len1, len2 = 0, len3, len4; in bpf_prog5() local
209 bytes = bpf_map_lookup_elem(&sock_apply_bytes, &zero); in bpf_prog5()
210 if (bytes) in bpf_prog5()
211 err1 = bpf_msg_apply_bytes(msg, *bytes); in bpf_prog5()
212 bytes = bpf_map_lookup_elem(&sock_cork_bytes, &zero); in bpf_prog5()
213 if (bytes) in bpf_prog5()
214 err2 = bpf_msg_cork_bytes(msg, *bytes); in bpf_prog5()
271 int *bytes, *start, *end, *start_push, *end_push, *start_pop, *pop, *f; in bpf_prog6() local
274 bytes = bpf_map_lookup_elem(&sock_apply_bytes, &zero); in bpf_prog6()
275 if (bytes) in bpf_prog6()
276 bpf_msg_apply_bytes(msg, *bytes); in bpf_prog6()
277 bytes = bpf_map_lookup_elem(&sock_cork_bytes, &zero); in bpf_prog6()
278 if (bytes) in bpf_prog6()
279 bpf_msg_cork_bytes(msg, *bytes); in bpf_prog6()
311 int *bytes, *start, *end, *start_push, *end_push, *start_pop, *pop, *f; in bpf_prog7() local
318 bytes = bpf_map_lookup_elem(&sock_apply_bytes, &zero); in bpf_prog7()
319 if (bytes) in bpf_prog7()
320 err1 = bpf_msg_apply_bytes(msg, *bytes); in bpf_prog7()
321 bytes = bpf_map_lookup_elem(&sock_cork_bytes, &zero); in bpf_prog7()
322 if (bytes) in bpf_prog7()
323 err2 = bpf_msg_cork_bytes(msg, *bytes); in bpf_prog7()
392 int ret = 0, *bytes, zero = 0; in bpf_prog8() local
394 bytes = bpf_map_lookup_elem(&sock_apply_bytes, &zero); in bpf_prog8()
395 if (bytes) { in bpf_prog8()
396 ret = bpf_msg_apply_bytes(msg, *bytes); in bpf_prog8()
409 int ret = 0, *bytes, zero = 0; in bpf_prog9() local
411 bytes = bpf_map_lookup_elem(&sock_cork_bytes, &zero); in bpf_prog9()
412 if (bytes) { in bpf_prog9()
413 if (((__u64)data_end - (__u64)data) >= *bytes) in bpf_prog9()
415 ret = bpf_msg_cork_bytes(msg, *bytes); in bpf_prog9()
425 int *bytes, *start, *end, *start_push, *end_push, *start_pop, *pop; in bpf_prog10() local
428 bytes = bpf_map_lookup_elem(&sock_apply_bytes, &zero); in bpf_prog10()
429 if (bytes) in bpf_prog10()
430 bpf_msg_apply_bytes(msg, *bytes); in bpf_prog10()
431 bytes = bpf_map_lookup_elem(&sock_cork_bytes, &zero); in bpf_prog10()
432 if (bytes) in bpf_prog10()
433 bpf_msg_cork_bytes(msg, *bytes); in bpf_prog10()