Lines Matching refs:text
377 static int check_neverallows(policydb_t *policydb, char *text, char *end) in check_neverallows() argument
385 p = text; in check_neverallows()
458 char *text, *end; in check_neverallows_file() local
470 text = mmap(NULL, sb.st_size, PROT_READ, MAP_PRIVATE, fd, 0); in check_neverallows_file()
471 end = text + sb.st_size; in check_neverallows_file()
472 if (text == MAP_FAILED) { in check_neverallows_file()
478 return check_neverallows(policydb, text, end); in check_neverallows_file()
483 char *text, *end; in check_neverallows_string() local
484 text = string; in check_neverallows_string()
485 end = text + len; in check_neverallows_string()
486 return check_neverallows(policydb, text, end); in check_neverallows_string()