Home
last modified time | relevance | path

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

/Zephyr-latest/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-latest/subsys/net/lib/sockets/
Dsockets_packet.c98 struct net_pkt *last_pkt = k_fifo_peek_tail(&ctx->recv_q); in zpacket_received_cb() local
100 if (!last_pkt) { in zpacket_received_cb()
109 net_pkt_set_eof(last_pkt, true); in zpacket_received_cb()
Dsockets_can.c153 struct net_pkt *last_pkt = in zcan_received_cb() local
156 if (!last_pkt) { in zcan_received_cb()
166 net_pkt_set_eof(last_pkt, true); in zcan_received_cb()
Dsockets_inet.c231 struct net_pkt *last_pkt = k_fifo_peek_tail(&ctx->recv_q); in zsock_received_cb() local
233 if (!last_pkt) { in zsock_received_cb()
242 net_pkt_set_eof(last_pkt, true); in zsock_received_cb()
243 NET_DBG("Set EOF flag on pkt %p", last_pkt); in zsock_received_cb()
436 struct net_pkt *last_pkt; in zsock_accept_ctx() local
466 last_pkt = k_fifo_peek_tail(&ctx->recv_q); in zsock_accept_ctx()
467 if (last_pkt) { in zsock_accept_ctx()
468 if (net_pkt_eof(last_pkt)) { in zsock_accept_ctx()
/Zephyr-latest/include/zephyr/sys/
Dcrc.h264 size_t len, bool first_pkt, bool last_pkt);