HomeSort by: relevance | last modified time | path
    Searched defs:ixfr_store (Results 1 - 3 of 3) sorted by relevancy

  /src/external/bsd/nsd/dist/
ixfr.h 103 struct ixfr_store { struct
126 * routine if the ixfr_store itself needs to be deleted too, like on error.
132 * return NULL or a fresh ixfr_store structure for adding records to the
135 struct ixfr_store* ixfr_store_start(struct zone* zone,
136 struct ixfr_store* ixfr_store_mem);
140 * ixfr_store: this is set to cancel.
142 void ixfr_store_cancel(struct ixfr_store* ixfr_store);
146 * ixfr_store: deleted
148 void ixfr_store_free(struct ixfr_store* ixfr_store)
    [all...]
difffile.c 706 region_type* temp_region, int* softfail, struct ixfr_store* ixfr_store)
759 if(ixfr_store)
760 ixfr_store_delrr(ixfr_store, rr);
852 int* softfail, struct ixfr_store* ixfr_store)
919 if (ixfr_store)
920 ixfr_store_addrr(ixfr_store, rr);
1101 int* softfail, struct ixfr_store* ixfr_store)
1452 struct ixfr_store* ixfr_store = NULL, ixfr_store_mem; local
    [all...]
ixfr.c 951 struct ixfr_store* ixfr_store_start(struct zone* zone,
952 struct ixfr_store* ixfr_store_mem)
954 struct ixfr_store* ixfr_store = ixfr_store_mem; local
955 memset(ixfr_store, 0, sizeof(*ixfr_store));
956 ixfr_store->zone = zone;
957 ixfr_store->data = xalloc_zero(sizeof(*ixfr_store->data));
958 return ixfr_store;
    [all...]

Completed in 67 milliseconds