Lines Matching refs:text
370 static int check_neverallows(policydb_t *policydb, char *text, char *end) in check_neverallows() argument
377 p = text; in check_neverallows()
443 char *text, *end; in check_neverallows_file() local
455 text = mmap(NULL, sb.st_size, PROT_READ, MAP_PRIVATE, fd, 0); in check_neverallows_file()
456 end = text + sb.st_size; in check_neverallows_file()
457 if (text == MAP_FAILED) { in check_neverallows_file()
463 return check_neverallows(policydb, text, end); in check_neverallows_file()
468 char *text, *end; in check_neverallows_string() local
469 text = string; in check_neverallows_string()
470 end = text + len; in check_neverallows_string()
471 return check_neverallows(policydb, text, end); in check_neverallows_string()