Searched defs:mapsize (Results 1 - 3 of 3) sorted by relevance
/bind-9.11.3/lib/dns/ |
H A D | view.c | 1992 void (*cfg_destroy)(void **), isc_uint64_t mapsize) 2002 UNUSED(mapsize); 2059 if (mapsize != 0ULL) { 2060 status = mdb_env_set_mapsize(env, mapsize); 2068 view->new_zone_mapsize = mapsize; 1991 dns_view_setnewzones(dns_view_t *view, isc_boolean_t allow, void *cfgctx, void (*cfg_destroy)(void **), isc_uint64_t mapsize) argument
|
/bind-9.11.3/lib/bind9/ |
H A D | check.c | 1466 (void)cfg_map_get(options, "lmdb-mapsize", &obj); 1468 isc_uint64_t mapsize = cfg_obj_asuint64(obj); local 1470 if (mapsize < (1ULL << 20)) { /* 1 megabyte */ 1473 "'lmdb-mapsize " 1476 mapsize); 1478 } else if (mapsize > (1ULL << 40)) { /* 1 terabyte */ 1481 "'lmdb-mapsize " 1484 mapsize);
|
/bind-9.11.3/bin/named/ |
H A D | server.c | 6683 isc_uint64_t mapsize = 0ULL; local 6702 result = ns_config_get(maps, "lmdb-mapsize", &obj); 6704 mapsize = cfg_obj_asuint64(obj); 6705 if (mapsize < (1ULL << 20)) { /* 1 megabyte */ 6708 "'lmdb-mapsize " 6711 mapsize); 6713 } else if (mapsize > (1ULL << 40)) { /* 1 terabyte */ 6716 "'lmdb-mapsize " 6719 mapsize); 6766 newzone_cfgctx_destroy, mapsize); [all...] |
Completed in 56 milliseconds