Lines Matching refs:list
29 attr_in_list(const char **list, size_t nlist, const char *str)
34 if (strcasecmp(list[i], str) == 0) {
47 const char **list = NULL;
67 "Cannot parse attribute ACL list %s: %d\n", conf_str, ret);
107 list = talloc_zero_array(tmp_ctx, const char *, list_size + 1);
108 if (list == NULL) {
119 list[li] = talloc_strdup(list, allow[i]);
120 if (list[li] == NULL) {
137 list[li] = talloc_strdup(list, defaults[i]);
138 if (list[li] == NULL) {
148 res = talloc_steal(mem_ctx, list);