Home
last modified time | relevance | path

Searched refs:rx_time (Results 1 – 7 of 7) sorted by relevance

/Zephyr-latest/subsys/net/ip/
Dnet_stats.c554 (struct net_stats_rx_time *rx_time = in net_stats_prometheus_scrape()
559 (double)rx_time->sum, in net_stats_prometheus_scrape()
560 (unsigned long)rx_time->count))); in net_stats_prometheus_scrape()
Dnet_stats.h455 UPDATE_STAT(iface, stats.rx_time.sum += in net_stats_update_rx_time()
457 UPDATE_STAT(iface, stats.rx_time.count += 1); in net_stats_update_rx_time()
552 UPDATE_STAT(iface, stats.tc.recv[tc].rx_time.sum += in net_stats_update_tc_rx_time()
554 UPDATE_STAT(iface, stats.tc.recv[tc].rx_time.count += 1); in net_stats_update_tc_rx_time()
/Zephyr-latest/subsys/net/lib/shell/
Dstats.c375 tc.recv[i].rx_time.count); in print_tc_rx_stats()
389 tc.recv[i].rx_time.sum) / in print_tc_rx_stats()
409 net_stats_t count = GET_STAT(iface, rx_time.count); in print_tc_rx_stats()
413 (uint32_t)(GET_STAT(iface, rx_time.sum) / (uint64_t)count), in print_tc_rx_stats()
/Zephyr-latest/subsys/bluetooth/controller/ll_sw/
Dull_conn.c1300 uint32_t ready_delay, rx_time, tx_time, ticks_slot, slot_us; in ull_conn_done() local
1312 rx_time = lll->dle.eff.max_rx_time; in ull_conn_done()
1317 rx_time = MAX(PDU_DC_MAX_US(PDU_DC_PAYLOAD_SIZE_MIN, 0), in ull_conn_done()
1323 rx_time = PDU_MAX_US(0U, 0U, lll->phy_rx); in ull_conn_done()
1332 rx_time = PDU_DC_MAX_US(lll->dle.eff.max_rx_octets, 0); in ull_conn_done()
1336 rx_time = PDU_MAX_US(0U, 0U, PHY_1M); in ull_conn_done()
1341 slot_us = tx_time + rx_time; in ull_conn_done()
2480 uint16_t rx_time = 0U; in dle_max_time_get() local
2493 rx_time = PDU_DC_MAX_US(LL_LENGTH_OCTETS_RX_MAX, phy_select); in dle_max_time_get()
2506 rx_time = MAX(PDU_DC_PAYLOAD_TIME_MIN, rx_time); in dle_max_time_get()
[all …]
/Zephyr-latest/include/zephyr/net/
Dnet_stats.h340 struct net_stats_rx_time rx_time; member
454 struct net_stats_rx_time rx_time; member
1352 NET_STATS_GET_INSTANCE(dev_id, sfx, rx_time), \
1355 NET_STATS_GET_VAR(dev_id, sfx, rx_time), \
1356 &(iface)->stats.rx_time)
/Zephyr-latest/drivers/ieee802154/
Dieee802154_dw1000.c149 uint8_t rx_time[DWT_RX_TIME_FP_RAWST_OFFSET]; member
457 memcpy(ts_buf, rx_inf_reg.rx_time, DWT_RX_TIME_RX_STAMP_LEN); in dwt_irq_handle_rx()
/Zephyr-latest/subsys/net/lib/sockets/
Dsockets_inet.c871 SYS_PORT_TRACING_FUNC(net, rx_time, pkt, end_tick); in net_socket_update_tc_rx_time()