Lines Matching refs:list
30 attr_in_list(const char **list, size_t nlist, const char *str)
35 if (strcasecmp(list[i], str) == 0) {
48 const char **list = NULL;
68 "Cannot parse attribute ACL list %s: %d\n", conf_str, ret);
108 list = talloc_zero_array(tmp_ctx, const char *, list_size + 1);
109 if (list == NULL) {
120 list[li] = talloc_strdup(list, allow[i]);
121 if (list[li] == NULL) {
138 list[li] = talloc_strdup(list, defaults[i]);
139 if (list[li] == NULL) {
149 res = talloc_steal(mem_ctx, list);