Lines Matching refs:result
317 static int lsm_append(const char *new, char **result);
450 static int lsm_append(const char *new, char **result)
454 if (*result == NULL) {
455 *result = kstrdup(new, GFP_KERNEL);
456 if (*result == NULL)
460 if (match_last_lsm(*result, new))
462 cp = kasprintf(GFP_KERNEL, "%s,%s", *result, new);
465 kfree(*result);
466 *result = cp;
1654 * may result in a call here with ->security being NULL.