Lines Matching defs:contextp
15 lwres_context_t is returned through contextp, a pointer to a
30 using lwres_conf_init() and returned via *contextp.
33 socket. contextp is a pointer to a pointer to the context that is to
142 lwres_context_create(lwres_context_t **contextp, void *arg,
149 REQUIRE(contextp != NULL && *contextp == NULL);
197 *contextp = ctx;
203 contextp is a pointer to a pointer to the context that is
208 lwres_context_destroy(lwres_context_t **contextp) {
211 REQUIRE(contextp != NULL && *contextp != NULL);
213 ctx = *contextp;
214 *contextp = NULL;