Home | History | Annotate | Download | only in src

Lines Matching defs:blist

94 	SELboolean *blist = NULL;
101 blist = malloc(sizeof(SELboolean) * count);
102 if (blist == NULL)
114 blist[bcount].name = strdup(name);
115 if (blist[bcount].name == NULL)
117 blist[bcount].value = newvalue;
122 if (security_set_boolean_list(bcount, blist, 0) < 0) {
128 free(blist[i].name);
129 free(blist);
138 free(blist[i].name);
139 free(blist);