Lines Matching refs:_size
48 #define NET_BUF_SIMPLE_DEFINE(_name, _size) \ argument
49 uint8_t net_buf_data_##_name[_size]; \
53 .size = _size, \
67 #define NET_BUF_SIMPLE_DEFINE_STATIC(_name, _size) \ argument
68 static __noinit uint8_t net_buf_data_##_name[_size]; \
72 .size = _size, \
125 #define NET_BUF_SIMPLE(_size) \ argument
128 uint8_t data[_size]; \
130 .buf.size = _size, \
1299 #define NET_BUF_POOL_DEFINE(_name, _count, _size, _ud_size, _destroy) \ argument
1300 NET_BUF_POOL_FIXED_DEFINE(_name, _count, _size, _ud_size, _destroy)
1391 #define net_buf_alloc_len(_pool, _size, _timeout) \ argument
1392 net_buf_alloc_len_debug(_pool, _size, _timeout, __func__, __LINE__)
1428 #define net_buf_alloc_with_data(_pool, _data_, _size, _timeout) \ argument
1429 net_buf_alloc_with_data_debug(_pool, _data_, _size, _timeout, \