Lines Matching refs:buffer
224 void tomoyo_print_ulong(char *buffer, const int buffer_len, in tomoyo_print_ulong() argument
228 snprintf(buffer, buffer_len, "%lu", value); in tomoyo_print_ulong()
230 snprintf(buffer, buffer_len, "0%lo", value); in tomoyo_print_ulong()
232 snprintf(buffer, buffer_len, "0x%lX", value); in tomoyo_print_ulong()
234 snprintf(buffer, buffer_len, "type(%u)", type); in tomoyo_print_ulong()
404 void tomoyo_normalize_line(unsigned char *buffer) in tomoyo_normalize_line() argument
406 unsigned char *sp = buffer; in tomoyo_normalize_line()
407 unsigned char *dp = buffer; in tomoyo_normalize_line()
563 bool tomoyo_domain_def(const unsigned char *buffer) in tomoyo_domain_def() argument
568 if (*buffer != '<') in tomoyo_domain_def()
570 cp = strchr(buffer, ' '); in tomoyo_domain_def()
572 len = strlen(buffer); in tomoyo_domain_def()
574 len = cp - buffer; in tomoyo_domain_def()
575 if (buffer[len - 1] != '>' || in tomoyo_domain_def()
576 !tomoyo_correct_word2(buffer + 1, len - 2)) in tomoyo_domain_def()