Lines Matching defs:methods

95 	const dns_sdlzmethods_t		*methods;
250 * Rdataset Iterator Methods. These methods were "borrowed" from the SDB
303 * DB routines. These methods were "borrowed" from the SDB driver interface.
553 result = sdlz->dlzimp->methods->lookup(zonestr, namestr,
562 result = sdlz->dlzimp->methods->lookup(zonestr, "*",
574 if (isorigin && sdlz->dlzimp->methods->authority != NULL) {
576 authority = sdlz->dlzimp->methods->authority;
680 if (sdlz->dlzimp->methods->allnodes == NULL)
697 sdlziter->common.methods = &dbiterator_methods;
710 result = sdlz->dlzimp->methods->allnodes(zonestr,
935 iterator->common.methods = &rdatasetiter_methods;
1064 * Database Iterator Methods. These methods were "borrowed" from the SDB
1168 * Rdataset Methods. These methods were "borrowed" from the SDB driver
1228 rdataset->methods = &rdataset_methods;
1233 * SDLZ core methods. This is the core of the new DLZ functionality.
1276 sdlzdb->common.methods = &sdlzdb_methods;
1348 if (imp->methods->allowzonexfr != NULL) {
1350 result = imp->methods->allowzonexfr(imp->driverarg, dbdata,
1389 if (imp->methods->create != NULL) {
1391 result = imp->methods->create(dlzname, argc, argv,
1424 if (imp->methods->destroy != NULL) {
1426 imp->methods->destroy(imp->driverarg, dbdata);
1461 result = imp->methods->findzone(imp->driverarg, dbdata, namestr);
1679 dns_sdlzregister(const char *drivername, const dns_sdlzmethods_t *methods,
1691 REQUIRE(methods != NULL);
1692 REQUIRE(methods->findzone != NULL);
1693 REQUIRE(methods->lookup != NULL);
1717 imp->methods = methods;