http_cb          3257 opal/mca/event/libevent2022/libevent/http.c 	struct evhttp_cb *http_cb;
http_cb          3277 opal/mca/event/libevent2022/libevent/http.c 	while ((http_cb = TAILQ_FIRST(&http->callbacks)) != NULL) {
http_cb          3278 opal/mca/event/libevent2022/libevent/http.c 		TAILQ_REMOVE(&http->callbacks, http_cb, next);
http_cb          3279 opal/mca/event/libevent2022/libevent/http.c 		mm_free(http_cb->what);
http_cb          3280 opal/mca/event/libevent2022/libevent/http.c 		mm_free(http_cb);
http_cb          3404 opal/mca/event/libevent2022/libevent/http.c 	struct evhttp_cb *http_cb;
http_cb          3406 opal/mca/event/libevent2022/libevent/http.c 	TAILQ_FOREACH(http_cb, &http->callbacks, next) {
http_cb          3407 opal/mca/event/libevent2022/libevent/http.c 		if (strcmp(http_cb->what, uri) == 0)
http_cb          3411 opal/mca/event/libevent2022/libevent/http.c 	if ((http_cb = mm_calloc(1, sizeof(struct evhttp_cb))) == NULL) {
http_cb          3416 opal/mca/event/libevent2022/libevent/http.c 	http_cb->what = mm_strdup(uri);
http_cb          3417 opal/mca/event/libevent2022/libevent/http.c 	if (http_cb->what == NULL) {
http_cb          3419 opal/mca/event/libevent2022/libevent/http.c 		mm_free(http_cb);
http_cb          3422 opal/mca/event/libevent2022/libevent/http.c 	http_cb->cb = cb;
http_cb          3423 opal/mca/event/libevent2022/libevent/http.c 	http_cb->cbarg = cbarg;
http_cb          3425 opal/mca/event/libevent2022/libevent/http.c 	TAILQ_INSERT_TAIL(&http->callbacks, http_cb, next);
http_cb          3433 opal/mca/event/libevent2022/libevent/http.c 	struct evhttp_cb *http_cb;
http_cb          3435 opal/mca/event/libevent2022/libevent/http.c 	TAILQ_FOREACH(http_cb, &http->callbacks, next) {
http_cb          3436 opal/mca/event/libevent2022/libevent/http.c 		if (strcmp(http_cb->what, uri) == 0)
http_cb          3439 opal/mca/event/libevent2022/libevent/http.c 	if (http_cb == NULL)
http_cb          3442 opal/mca/event/libevent2022/libevent/http.c 	TAILQ_REMOVE(&http->callbacks, http_cb, next);
http_cb          3443 opal/mca/event/libevent2022/libevent/http.c 	mm_free(http_cb->what);
http_cb          3444 opal/mca/event/libevent2022/libevent/http.c 	mm_free(http_cb);