Searched refs:confp (Results 1 - 4 of 4) sorted by relevance

/bind-9.11.3/lib/irs/include/irs/
H A Ddnsconf.h46 irs_dnsconf_load(isc_mem_t *mctx, const char *filename, irs_dnsconf_t **confp);
57 *\li 'confp' != NULL && '*confp' == NULL
61 irs_dnsconf_destroy(irs_dnsconf_t **confp);
67 *\li '*confp' is a valid dnsconf object.
71 *\li *confp == NULL
H A Dresconf.h38 irs_resconf_load(isc_mem_t *mctx, const char *filename, irs_resconf_t **confp);
57 * \li ISC_R_FILENOTFOUND if the file was not found. *confp will be valid.
66 *\li 'confp' != NULL && '*confp' == NULL
70 irs_resconf_destroy(irs_resconf_t **confp);
76 *\li '*confp' is a valid resconf object.
80 *\li *confp == NULL
/bind-9.11.3/lib/irs/
H A Ddnsconf.c182 irs_dnsconf_load(isc_mem_t *mctx, const char *filename, irs_dnsconf_t **confp) argument
189 REQUIRE(confp != NULL && *confp == NULL);
226 *confp = conf;
234 irs_dnsconf_destroy(irs_dnsconf_t **confp) { argument
238 REQUIRE(confp != NULL);
239 conf = *confp;
253 *confp = NULL;
H A Dresconf.c483 irs_resconf_load(isc_mem_t *mctx, const char *filename, irs_resconf_t **confp) argument
495 REQUIRE(confp != NULL && *confp == NULL);
588 *confp = conf;
595 irs_resconf_destroy(irs_resconf_t **confp) { argument
601 REQUIRE(confp != NULL);
602 conf = *confp;
625 *confp = NULL;

Completed in 13 milliseconds