Lines Matching refs:c

203 		char c = *(cp + 1);  in tomoyo_parse_ulong()  local
204 if (c == 'x' || c == 'X') { in tomoyo_parse_ulong()
207 } else if (c >= '0' && c <= '7') { in tomoyo_parse_ulong()
338 static inline bool tomoyo_alphabet_char(const char c) in tomoyo_alphabet_char() argument
340 return (c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z'); in tomoyo_alphabet_char()
364 static inline bool tomoyo_valid(const unsigned char c) in tomoyo_valid() argument
366 return c > ' ' && c < 127; in tomoyo_valid()
376 static inline bool tomoyo_invalid(const unsigned char c) in tomoyo_invalid() argument
378 return c && (c <= ' ' || c >= 127); in tomoyo_invalid()
447 unsigned char c; in tomoyo_correct_word2() local
453 c = *string++; in tomoyo_correct_word2()
454 if (c == '\\') { in tomoyo_correct_word2()
457 c = *string++; in tomoyo_correct_word2()
458 switch (c) { in tomoyo_correct_word2()
494 c = tomoyo_make_byte(c, d, e); in tomoyo_correct_word2()
495 if (c <= ' ' || c >= 127) in tomoyo_correct_word2()
499 } else if (in_repetition && c == '/') { in tomoyo_correct_word2()
501 } else if (c <= ' ' || c >= 127) { in tomoyo_correct_word2()
621 char c; in tomoyo_const_part_length() local
626 while ((c = *filename++) != '\0') { in tomoyo_const_part_length()
627 if (c != '\\') { in tomoyo_const_part_length()
631 c = *filename++; in tomoyo_const_part_length()
632 switch (c) { in tomoyo_const_part_length()
640 c = *filename++; in tomoyo_const_part_length()
641 if (c < '0' || c > '7') in tomoyo_const_part_length()
643 c = *filename++; in tomoyo_const_part_length()
644 if (c < '0' || c > '7') in tomoyo_const_part_length()
688 char c; in tomoyo_file_matches_pattern2() local
694 c = *filename; in tomoyo_file_matches_pattern2()
700 if (c == '/') { in tomoyo_file_matches_pattern2()
702 } else if (c == '\\') { in tomoyo_file_matches_pattern2()
712 if (c != '\\') in tomoyo_file_matches_pattern2()
718 if (!isdigit(c)) in tomoyo_file_matches_pattern2()
722 if (!isxdigit(c)) in tomoyo_file_matches_pattern2()
726 if (!tomoyo_alphabet_char(c)) in tomoyo_file_matches_pattern2()
733 if (c == '\\' && tomoyo_byte_range(filename + 1) in tomoyo_file_matches_pattern2()
747 c = filename[i]; in tomoyo_file_matches_pattern2()
748 if (c == '.' && *pattern == '@') in tomoyo_file_matches_pattern2()
750 if (c != '\\') in tomoyo_file_matches_pattern2()
762 c = *pattern; in tomoyo_file_matches_pattern2()
763 if (c == '$') { in tomoyo_file_matches_pattern2()
766 } else if (c == 'X') { in tomoyo_file_matches_pattern2()
769 } else if (c == 'A') { in tomoyo_file_matches_pattern2()