Lines Matching full:bytes
236 int *bytes, zero = 0, one = 1, two = 2, three = 3, four = 4, five = 5; in bpf_prog4() local
239 bytes = bpf_map_lookup_elem(&sock_apply_bytes, &zero); in bpf_prog4()
240 if (bytes) in bpf_prog4()
241 bpf_msg_apply_bytes(msg, *bytes); in bpf_prog4()
242 bytes = bpf_map_lookup_elem(&sock_cork_bytes, &zero); in bpf_prog4()
243 if (bytes) in bpf_prog4()
244 bpf_msg_cork_bytes(msg, *bytes); in bpf_prog4()
267 int *bytes, *start, *end, *start_push, *end_push, *start_pop, *pop, *f; in bpf_prog6() local
271 bytes = bpf_map_lookup_elem(&sock_apply_bytes, &zero); in bpf_prog6()
272 if (bytes) in bpf_prog6()
273 bpf_msg_apply_bytes(msg, *bytes); in bpf_prog6()
274 bytes = bpf_map_lookup_elem(&sock_cork_bytes, &zero); in bpf_prog6()
275 if (bytes) in bpf_prog6()
276 bpf_msg_cork_bytes(msg, *bytes); in bpf_prog6()
313 int ret = 0, *bytes, zero = 0; in bpf_prog8() local
315 bytes = bpf_map_lookup_elem(&sock_apply_bytes, &zero); in bpf_prog8()
316 if (bytes) { in bpf_prog8()
317 ret = bpf_msg_apply_bytes(msg, *bytes); in bpf_prog8()
335 int ret = 0, *bytes, zero = 0; in bpf_prog9() local
337 bytes = bpf_map_lookup_elem(&sock_cork_bytes, &zero); in bpf_prog9()
338 if (bytes) { in bpf_prog9()
339 if (((__u64)data_end - (__u64)data) >= *bytes) in bpf_prog9()
341 ret = bpf_msg_cork_bytes(msg, *bytes); in bpf_prog9()
351 int *bytes, *start, *end, *start_push, *end_push, *start_pop, *pop; in bpf_prog10() local
354 bytes = bpf_map_lookup_elem(&sock_apply_bytes, &zero); in bpf_prog10()
355 if (bytes) in bpf_prog10()
356 bpf_msg_apply_bytes(msg, *bytes); in bpf_prog10()
357 bytes = bpf_map_lookup_elem(&sock_cork_bytes, &zero); in bpf_prog10()
358 if (bytes) in bpf_prog10()
359 bpf_msg_cork_bytes(msg, *bytes); in bpf_prog10()