Home
last modified time | relevance | path

Searched refs:process_packet (Results 1 – 6 of 6) sorted by relevance

/external/pigweed/pw_rpc/py/tests/
Dclient_test.py221 self.assertIs(self._client.process_packet(b'NOT a packet!'),
226 self._client.process_packet(
232 self._client.process_packet(
240 self._client.process_packet(
257 self._client.process_packet(
275 self._client.process_packet(
/external/linux-kselftest/tools/testing/selftests/bpf/progs/
Dtest_l4lb_noinline.c324 static int process_packet(void *data, __u64 off, void *data_end, in process_packet() function
467 return process_packet(data, nh_off, data_end, false, ctx); in balancer_ingress()
469 return process_packet(data, nh_off, data_end, true, ctx); in balancer_ingress()
Dtest_l4lb.c324 static __always_inline int process_packet(void *data, __u64 off, void *data_end, in process_packet() function
467 return process_packet(data, nh_off, data_end, false, ctx); in balancer_ingress()
469 return process_packet(data, nh_off, data_end, true, ctx); in balancer_ingress()
Dtest_xdp_noinline.c691 static int process_packet(void *data, __u64 off, void *data_end, in process_packet() function
814 return process_packet(data, nh_off, data_end, 0, ctx); in balancer_ingress()
816 return process_packet(data, nh_off, data_end, 1, ctx); in balancer_ingress()
/external/pigweed/pw_hdlc/py/pw_hdlc/
Drpc.py173 if not self.client.process_packet(frame.data):
/external/pigweed/pw_rpc/py/pw_rpc/
Dclient.py388 def process_packet(self, pw_rpc_raw_packet_data: bytes, *impl_args, member in Client