Home
last modified time | relevance | path

Searched refs:pkt_id (Results 1 – 4 of 4) sorted by relevance

/Zephyr-latest/tests/net/ipv4_fragment/src/
Dmain.c140 static uint16_t pkt_id; variable
217 zassert_equal(*((uint16_t *)&hdr->id), pkt_id, "IPv4 header ID mismatch"); in check_ipv4_fragment_header()
270 if (lower_layer_packet_count == 1 && pkt_id == 0) { in sender_iface()
272 pkt_id = *((uint16_t *)&NET_IPV4_HDR(pkt)->id); in sender_iface()
278 zassert_not_equal(pkt_id, 0, "IPv4 header ID should not be 0"); in sender_iface()
280 zassert_equal(pkt_id, 0, "IPv4 header ID should be 0"); in sender_iface()
288 ipv4_icmp_reassembly_time)), pkt_id, pkt_recv_size, in sender_iface()
389 zassert_equal(*((uint16_t *)&hdr->id), pkt_id, "IPv4 header ID mismatch"); in udp_data_received()
470 zassert_equal(*((uint16_t *)&hdr->id), pkt_id, "IPv4 header ID mismatch"); in tcp_data_received()
887 pkt_id = 0; in test_pre()
/Zephyr-latest/drivers/dma/
Ddma_iproc_pax_v1.c33 return ring->pkt_id = 0x0; in reset_pkt_id()
41 ring->pkt_id = (ring->pkt_id + 1) % 32; in alloc_pkt_id()
42 return ring->pkt_id; in alloc_pkt_id()
47 return ring->pkt_id; in curr_pkt_id()
Ddma_iproc_pax_v2.c36 return ring->pkt_id = 0x0; in reset_pkt_id()
41 ring->pkt_id = (ring->pkt_id + 1) % 32; in alloc_pkt_id()
42 return ring->pkt_id; in alloc_pkt_id()
47 return ring->pkt_id; in curr_pkt_id()
Ddma_iproc_pax.h476 uint32_t pkt_id; member