Home
last modified time | relevance | path

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

/Zephyr-latest/samples/net/sockets/dumb_http_server/src/
Dsocket_dumb_http.c160 atomic_get(&rx_data->avail_count), atomic_get(&tx_data->avail_count)); in main()
/Zephyr-latest/subsys/net/lib/shell/
Dmem.c83 atomic_get(&pool->avail_count), pool->name); in context_info()
126 atomic_get(&rx_data->avail_count), rx_data->name); in cmd_net_mem()
129 atomic_get(&tx_data->avail_count), tx_data->name); in cmd_net_mem()
/Zephyr-latest/tests/net/net_pkt/src/
Dmain.c1177 zassert_equal(atomic_get(&tx_data->avail_count), tx_data->buf_count - bufs_to_allocate, in ZTEST()
1182 zassert_equal(atomic_get(&tx_data->avail_count), tx_data->buf_count - bufs_to_allocate, in ZTEST()
1186 zassert_equal(atomic_get(&tx_data->avail_count), tx_data->buf_count - bufs_to_allocate, in ZTEST()
1190 zassert_equal(atomic_get(&tx_data->avail_count), tx_data->buf_count, in ZTEST()
1214 zassert_equal(atomic_get(&tx_data->avail_count), tx_data->buf_count in test_net_pkt_shallow_clone_append_buf()
1230 zassert_equal(atomic_get(&tx_data->avail_count), tx_data->buf_count in test_net_pkt_shallow_clone_append_buf()
1244 zassert_equal(atomic_get(&tx_data->avail_count), tx_data->buf_count in test_net_pkt_shallow_clone_append_buf()
1253 zassert_equal(atomic_get(&tx_data->avail_count), tx_data->buf_count, in test_net_pkt_shallow_clone_append_buf()
1258 zassert_equal(atomic_get(&tx_data->avail_count), in test_net_pkt_shallow_clone_append_buf()
1267 zassert_equal(atomic_get(&tx_data->avail_count), tx_data->buf_count, in test_net_pkt_shallow_clone_append_buf()
/Zephyr-latest/lib/net_buf/
Dbuf.c345 atomic_dec(&pool->avail_count); in net_buf_alloc_len_debug()
346 __ASSERT_NO_MSG(atomic_get(&pool->avail_count) >= 0); in net_buf_alloc_len_debug()
486 atomic_inc(&pool->avail_count); in net_buf_unref_debug()
487 __ASSERT_NO_MSG(atomic_get(&pool->avail_count) <= pool->buf_count); in net_buf_unref_debug()
/Zephyr-latest/include/zephyr/
Dnet_buf.h1096 atomic_t avail_count; member
1117 IF_ENABLED(CONFIG_NET_BUF_POOL_USAGE, (.avail_count = ATOMIC_INIT(_count),)) \
/Zephyr-latest/subsys/net/ip/
Dnet_pkt.c304 return atomic_get(&pool->avail_count); in get_frees()