Lines Matching refs:maps
272 struct certmap_info **maps = NULL;
322 DEBUG(SSSDBG_TRACE_FUNC, "No certificate maps found.\n");
327 maps = talloc_zero_array(tmp_ctx, struct certmap_info *, res->count + 1);
328 if (maps == NULL) {
335 maps[c] = talloc_zero(maps, struct certmap_info);
336 if (maps[c] == NULL) {
348 maps[c]->name = talloc_strdup(maps, tmp_str);
349 if (maps[c]->name == NULL) {
357 maps[c]->map_rule = talloc_strdup(maps, tmp_str);
358 if (maps[c]->map_rule == NULL) {
368 maps[c]->match_rule = talloc_strdup(maps, tmp_str);
369 if (maps[c]->match_rule == NULL) {
387 maps[c]->priority = (uint32_t) tmp_uint;
397 maps[c]->domains = talloc_zero_array(maps[c], const char *,
399 if (maps[c]->domains == NULL) {
406 maps[c]->domains[d] = talloc_strndup(maps[c]->domains,
409 if (maps[c]->domains[d] == NULL) {
421 *certmaps = talloc_steal(mem_ctx, maps);