Lines Matching refs:entp
674 isc_entropy_create(isc_mem_t *mctx, isc_entropy_t **entp) {
679 REQUIRE(entp != NULL && *entp == NULL);
707 *entp = ent;
784 destroy(isc_entropy_t **entp) {
789 REQUIRE(entp != NULL && *entp != NULL);
790 ent = *entp;
791 *entp = NULL;
1120 isc_entropy_attach(isc_entropy_t *ent, isc_entropy_t **entp) {
1122 REQUIRE(entp != NULL && *entp == NULL);
1127 *entp = ent;
1133 isc_entropy_detach(isc_entropy_t **entp) {
1137 REQUIRE(entp != NULL && VALID_ENTROPY(*entp));
1138 ent = *entp;
1139 *entp = NULL;