Lines Matching refs:TAILQ_FIRST
87 while ((rpc = TAILQ_FIRST(&base->registered_rpcs)) != NULL) { in evrpc_free()
90 while ((hook = TAILQ_FIRST(&base->input_hooks)) != NULL) { in evrpc_free()
93 while ((hook = TAILQ_FIRST(&base->output_hooks)) != NULL) { in evrpc_free()
415 while ((request = TAILQ_FIRST(&pool->requests)) != NULL) { in evrpc_pool_free()
421 while ((connection = TAILQ_FIRST(&pool->connections)) != NULL) { in evrpc_pool_free()
426 while ((hook = TAILQ_FIRST(&pool->input_hooks)) != NULL) { in evrpc_pool_free()
430 while ((hook = TAILQ_FIRST(&pool->output_hooks)) != NULL) { in evrpc_pool_free()
466 if (TAILQ_FIRST(&pool->requests) != NULL) { in evrpc_pool_add_connection()
468 TAILQ_FIRST(&pool->requests); in evrpc_pool_add_connection()
497 if (TAILQ_FIRST(&connection->requests) == NULL) in evrpc_pool_find_connection()
573 assert(TAILQ_FIRST(&pool->connections) != NULL); in evrpc_make_request()
636 struct evrpc_request_wrapper *ctx = TAILQ_FIRST(&pool->requests); in evrpc_pool_schedule()