connections        90 opal/mca/event/libevent2022/libevent/evrpc-internal.h 	struct evconq connections;
connections       516 opal/mca/event/libevent2022/libevent/evrpc.c 	TAILQ_INIT(&pool->connections);
connections       558 opal/mca/event/libevent2022/libevent/evrpc.c 	while ((connection = TAILQ_FIRST(&pool->connections)) != NULL) {
connections       559 opal/mca/event/libevent2022/libevent/evrpc.c 		TAILQ_REMOVE(&pool->connections, connection, next);
connections       586 opal/mca/event/libevent2022/libevent/evrpc.c 	TAILQ_INSERT_TAIL(&pool->connections, connection, next);
connections       618 opal/mca/event/libevent2022/libevent/evrpc.c 	TAILQ_REMOVE(&pool->connections, connection, next);
connections       625 opal/mca/event/libevent2022/libevent/evrpc.c 	TAILQ_FOREACH(evcon, &pool->connections, next) {
connections       643 opal/mca/event/libevent2022/libevent/evrpc.c 	TAILQ_FOREACH(connection, &pool->connections, next) {
connections       810 opal/mca/event/libevent2022/libevent/evrpc.c 	EVUTIL_ASSERT(TAILQ_FIRST(&pool->connections) != NULL);
connections       146 opal/mca/event/libevent2022/libevent/http-internal.h 	struct evconq connections;
connections      1147 opal/mca/event/libevent2022/libevent/http.c 		TAILQ_REMOVE(&http->connections, evcon, next);
connections      3214 opal/mca/event/libevent2022/libevent/http.c 	TAILQ_INIT(&http->connections);
connections      3272 opal/mca/event/libevent2022/libevent/http.c 	while ((evcon = TAILQ_FIRST(&http->connections)) != NULL) {
connections      3771 opal/mca/event/libevent2022/libevent/http.c 	TAILQ_INSERT_TAIL(&http->connections, evcon, next);
connections      1850 opal/mca/event/libevent2022/libevent/test/regress_http.c 	tt_assert(TAILQ_FIRST(&http->connections) == NULL);