Searched refs:rngp (Results 1 - 2 of 2) sorted by relevance

/bind-9.11.3/lib/isc/include/isc/
H A Drandom.h60 isc_rng_create(isc_mem_t *mctx, isc_entropy_t *entropy, isc_rng_t **rngp);
70 * \li rngp != NULL && *rngp == NULL is where a pointer to the RNG is
75 * *rngp points to a valid RNG.
78 * *rngp does not point to a valid RNG.
97 isc_rng_detach(isc_rng_t **rngp);
103 * \li rngp != NULL the RNG struct to decrement reference for
/bind-9.11.3/lib/isc/
H A Drandom.c175 isc_rng_create(isc_mem_t *mctx, isc_entropy_t *entropy, isc_rng_t **rngp) { argument
184 REQUIRE(rngp != NULL && *rngp == NULL);
225 *rngp = rng;
254 isc_rng_detach(isc_rng_t **rngp) { argument
258 REQUIRE(rngp != NULL && VALID_RNG(*rngp));
260 rng = *rngp;
261 *rngp = NULL;

Completed in 19 milliseconds