Symbol: pool_list
usr/src/uts/common/io/ntxn/unm_gem.c
622
rcv_desc->pool_list = NULL;
usr/src/uts/common/io/ntxn/unm_gem.c
676
rcv_desc->pool_list = rcv_desc->rx_buf_pool;
usr/src/uts/common/io/ntxn/unm_nic.h
391
unm_rx_buffer_t *pool_list;
usr/src/uts/common/io/ntxn/unm_nic_main.c
1218
rx_buffer->next = rcv_desc->pool_list;
usr/src/uts/common/io/ntxn/unm_nic_main.c
1219
rcv_desc->pool_list = rx_buffer;
usr/src/uts/common/io/ntxn/unm_nic_main.c
1472
rx_buffer = rcv_desc->pool_list;
usr/src/uts/common/io/ntxn/unm_nic_main.c
1473
rcv_desc->pool_list = rx_buffer->next;
usr/src/uts/common/io/ntxn/unm_nic_main.c
1480
rcv_desc->pool_list = rcv_desc->recycle_list;
usr/src/uts/common/io/ntxn/unm_nic_main.c
1485
rx_buffer = rcv_desc->pool_list;
usr/src/uts/common/io/ntxn/unm_nic_main.c
1486
rcv_desc->pool_list = rx_buffer->next;
usr/src/uts/common/os/pool.c
149
static list_t pool_list; /* doubly-linked list of pools */
usr/src/uts/common/os/pool.c
176
list_create(&pool_list, sizeof (pool_t), offsetof(pool_t, pool_link));
usr/src/uts/common/os/pool.c
177
list_insert_head(&pool_list, pool_default);
usr/src/uts/common/os/pool.c
359
for (pool = list_head(&pool_list); pool;
usr/src/uts/common/os/pool.c
360
pool = list_next(&pool_list, pool)) {
usr/src/uts/common/os/pool.c
374
for (pool = list_head(&pool_list); pool;
usr/src/uts/common/os/pool.c
375
pool = list_next(&pool_list, pool)) {
usr/src/uts/common/os/pool.c
389
for (pool = list_head(&pool_list); pool != NULL;
usr/src/uts/common/os/pool.c
390
pool = list_next(&pool_list, pool)) {
usr/src/uts/common/os/pool.c
413
list_insert_tail(&pool_list, pool);
usr/src/uts/common/os/pool.c
477
list_remove(&pool_list, pool);
usr/src/uts/common/os/pool.c
653
for (pool = list_head(&pool_list); pool != NULL;
usr/src/uts/common/os/pool.c
654
pool = list_next(&pool_list, pool)) {
usr/src/uts/common/os/pool.c
803
for (pool = list_head(&pool_list); pool;
usr/src/uts/common/os/pool.c
804
pool = list_next(&pool_list, pool)) {