Lines Matching refs:next
50 QSLIST_ENTRY(CoroutinePoolBatch) next;
97 QSLIST_FOREACH_SAFE(batch, local_pool, next, tmp) { in local_pool_cleanup()
98 QSLIST_REMOVE_HEAD(local_pool, next); in local_pool_cleanup()
129 QSLIST_REMOVE_HEAD(local_pool, next); in coroutine_pool_get_local()
145 QSLIST_REMOVE_HEAD(&global_pool, next); in coroutine_pool_refill_local()
151 QSLIST_INSERT_HEAD(local_pool, batch, next); in coroutine_pool_refill_local()
164 QSLIST_INSERT_HEAD(&global_pool, batch, next); in coroutine_pool_put_global()
196 QSLIST_INSERT_HEAD(local_pool, batch, next); in coroutine_pool_put()
201 CoroutinePoolBatch *next = QSLIST_NEXT(batch, next); in coroutine_pool_put() local
204 if (next) { in coroutine_pool_put()
205 QSLIST_REMOVE_HEAD(local_pool, next); in coroutine_pool_put()
210 QSLIST_INSERT_HEAD(local_pool, batch, next); in coroutine_pool_put()