Home
last modified time | relevance | path

Searched refs:last_pkt (Results 1 – 5 of 5) sorted by relevance

/Zephyr-Core-3.5.0/lib/crc/
Dcrc32c_sw.c28 size_t len, bool first_pkt, bool last_pkt) in crc32_c() argument
39 return last_pkt ? (crc ^ CRC32C_XOR_OUT) : crc; in crc32_c()
/Zephyr-Core-3.5.0/subsys/net/lib/sockets/
Dsockets_packet.c94 struct net_pkt *last_pkt = k_fifo_peek_tail(&ctx->recv_q); in zpacket_received_cb() local
96 if (!last_pkt) { in zpacket_received_cb()
105 net_pkt_set_eof(last_pkt, true); in zpacket_received_cb()
Dsockets_can.c157 struct net_pkt *last_pkt = in zcan_received_cb() local
160 if (!last_pkt) { in zcan_received_cb()
170 net_pkt_set_eof(last_pkt, true); in zcan_received_cb()
Dsockets.c394 struct net_pkt *last_pkt = k_fifo_peek_tail(&ctx->recv_q); in zsock_received_cb() local
396 if (!last_pkt) { in zsock_received_cb()
405 net_pkt_set_eof(last_pkt, true); in zsock_received_cb()
406 NET_DBG("Set EOF flag on pkt %p", last_pkt); in zsock_received_cb()
589 struct net_pkt *last_pkt; in zsock_accept_ctx() local
619 last_pkt = k_fifo_peek_tail(&ctx->recv_q); in zsock_accept_ctx()
620 if (last_pkt) { in zsock_accept_ctx()
621 if (net_pkt_eof(last_pkt)) { in zsock_accept_ctx()
/Zephyr-Core-3.5.0/include/zephyr/sys/
Dcrc.h253 size_t len, bool first_pkt, bool last_pkt);