myhttp             83 opal/mca/event/libevent2022/libevent/test/regress_http.c http_bind(struct evhttp *myhttp, ev_uint16_t *pport)
myhttp             88 opal/mca/event/libevent2022/libevent/test/regress_http.c 	sock = evhttp_bind_socket_with_handle(myhttp, "127.0.0.1", *pport);
myhttp            103 opal/mca/event/libevent2022/libevent/test/regress_http.c 	struct evhttp *myhttp;
myhttp            106 opal/mca/event/libevent2022/libevent/test/regress_http.c 	myhttp = evhttp_new(base);
myhttp            108 opal/mca/event/libevent2022/libevent/test/regress_http.c 	if (http_bind(myhttp, pport) < 0)
myhttp            112 opal/mca/event/libevent2022/libevent/test/regress_http.c 	evhttp_set_cb(myhttp, "/test", http_basic_cb, base);
myhttp            113 opal/mca/event/libevent2022/libevent/test/regress_http.c 	evhttp_set_cb(myhttp, "/chunked", http_chunked_cb, base);
myhttp            114 opal/mca/event/libevent2022/libevent/test/regress_http.c 	evhttp_set_cb(myhttp, "/streamed", http_chunked_cb, base);
myhttp            115 opal/mca/event/libevent2022/libevent/test/regress_http.c 	evhttp_set_cb(myhttp, "/postit", http_post_cb, base);
myhttp            116 opal/mca/event/libevent2022/libevent/test/regress_http.c 	evhttp_set_cb(myhttp, "/putit", http_put_cb, base);
myhttp            117 opal/mca/event/libevent2022/libevent/test/regress_http.c 	evhttp_set_cb(myhttp, "/deleteit", http_delete_cb, base);
myhttp            118 opal/mca/event/libevent2022/libevent/test/regress_http.c 	evhttp_set_cb(myhttp, "/delay", http_delay_cb, base);
myhttp            119 opal/mca/event/libevent2022/libevent/test/regress_http.c 	evhttp_set_cb(myhttp, "/largedelay", http_large_delay_cb, base);
myhttp            120 opal/mca/event/libevent2022/libevent/test/regress_http.c 	evhttp_set_cb(myhttp, "/badrequest", http_badreq_cb, base);
myhttp            121 opal/mca/event/libevent2022/libevent/test/regress_http.c 	evhttp_set_cb(myhttp, "/", http_dispatcher_cb, base);
myhttp            122 opal/mca/event/libevent2022/libevent/test/regress_http.c 	return (myhttp);
myhttp           1874 opal/mca/event/libevent2022/libevent/test/regress_http.c 	struct evhttp *myhttp = NULL;
myhttp           1878 opal/mca/event/libevent2022/libevent/test/regress_http.c 		myhttp = evhttp_new(data->base);
myhttp           1879 opal/mca/event/libevent2022/libevent/test/regress_http.c 		if (evhttp_bind_socket(myhttp, "127.0.0.1", 65535 - i) == 0) {
myhttp           1881 opal/mca/event/libevent2022/libevent/test/regress_http.c 			evhttp_free(myhttp);
myhttp           1884 opal/mca/event/libevent2022/libevent/test/regress_http.c 		evhttp_free(myhttp);
myhttp             79 opal/mca/event/libevent2022/libevent/test/regress_rpc.c 	struct evhttp *myhttp;
myhttp             83 opal/mca/event/libevent2022/libevent/test/regress_rpc.c 	myhttp = evhttp_new(NULL);
myhttp             84 opal/mca/event/libevent2022/libevent/test/regress_rpc.c 	if (!myhttp)
myhttp             88 opal/mca/event/libevent2022/libevent/test/regress_rpc.c 	sock = evhttp_bind_socket_with_handle(myhttp, "127.0.0.1", 0);
myhttp             95 opal/mca/event/libevent2022/libevent/test/regress_rpc.c 	return (myhttp);