Searched refs:mapobj (Results 1 - 2 of 2) sorted by relevance

/bind-9.11.3/lib/isccfg/include/isccfg/
H A Dcfg.h152 cfg_parser_mapadd(cfg_parser_t *pctx, cfg_obj_t *mapobj,
155 * Add the object 'obj' to the specified clause in mapbody 'mapobj'.
160 * \li 'mapobj' is a valid cfg_obj_t of type map.
204 cfg_map_get(const cfg_obj_t *mapobj, const char* name, const cfg_obj_t **obj);
210 * \li 'mapobj' points to a valid configuration object of a map type.
220 cfg_map_getname(const cfg_obj_t *mapobj);
225 * \li 'mapobj' points to a valid configuration object of a map type.
233 cfg_map_count(const cfg_obj_t *mapobj);
238 * \li 'mapobj' points to a valid configuration object of a map type.
/bind-9.11.3/lib/isccfg/
H A Dparser.c1864 cfg_obj_t *mapobj = NULL; local
1872 CHECK(cfg_parse_map(pctx, type, &mapobj));
1873 mapobj->value.map.id = idobj;
1874 *ret = mapobj;
1878 CLEANUP_OBJ(mapobj);
2080 cfg_map_get(const cfg_obj_t *mapobj, const char* name, const cfg_obj_t **obj) { argument
2085 REQUIRE(mapobj != NULL && mapobj->type->rep == &cfg_rep_map);
2089 map = &mapobj->value.map;
2099 cfg_map_getname(const cfg_obj_t *mapobj) { argument
2105 cfg_map_count(const cfg_obj_t *mapobj) argument
3189 cfg_parser_mapadd(cfg_parser_t *pctx, cfg_obj_t *mapobj, cfg_obj_t *obj, const char *clausename) argument
[all...]

Completed in 61 milliseconds