Searched refs:buf_count (Results 1 – 4 of 4) sorted by relevance
/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/common/bluetooth/realtek/sdk/inc/os/ |
A D | os_pool.h | 45 uint16_t buf_count, const char *p_func, uint32_t file_line); 47 bool os_pool_extend_intern(uint8_t handle, uint16_t buf_size, uint16_t buf_count, 105 #define os_pool_create(p_handle, ram_type, buf_size, buf_count) \ argument 106 os_pool_create_intern(p_handle, ram_type, buf_size, buf_count, __func__, __LINE__) 155 #define os_pool_extend(handle, buf_size, buf_count) \ argument 156 os_pool_extend_intern(handle, buf_size, buf_count, __func__, __LINE__)
|
/AliOS-Things-master/components/drivers/peripheral/uart/src/ |
A D | tty.c | 178 size_t buf_count; in rx_buffer_consume() local 188 buf_count = rx_buf_count(tty); in rx_buffer_consume() 189 if (buf_count == 0) { in rx_buffer_consume() 192 } else if (buf_count < to_rx) { in rx_buffer_consume() 193 to_rx = buf_count; in rx_buffer_consume() 196 old_event = rx_count_to_event(buf_count); in rx_buffer_consume()
|
/AliOS-Things-master/components/ble_host/include/net/ |
A D | buf.h | 807 const u16_t buf_count; member 845 .buf_count = _count, \ 857 .buf_count = _count, \
|
/AliOS-Things-master/components/ble_host/bt_host/port/core/ |
A D | buf.c | 95 return (pool->buf_count == pool->uninit_count + k_lifo_num_get(&pool->free)); in net_buf_pool_is_free() 124 buf = &pool->__bufs[pool->buf_count - uninit_count]; in pool_get_uninit() 347 if (pool->uninit_count < pool->buf_count) { in net_buf_alloc_len_debug() 649 __ASSERT_NO_MSG(pool->avail_count <= pool->buf_count); in net_buf_unref_debug()
|
Completed in 66 milliseconds