Lines Matching defs:policydb_str
2414 char *policydb_str;
2442 policydb_str = kmalloc(len + 1, GFP_KERNEL);
2443 if (!policydb_str) {
2449 rc = next_entry(policydb_str, fp, len);
2452 kfree(policydb_str);
2457 policydb_str[len] = '\0';
2458 if (strcmp(policydb_str, POLICYDB_STRING)) {
2460 "my string %s\n", policydb_str, POLICYDB_STRING);
2461 kfree(policydb_str);
2464 /* Done with policydb_str. */
2465 kfree(policydb_str);
2466 policydb_str = NULL;