Lines Matching refs:buffer
226 void tomoyo_print_ulong(char *buffer, const int buffer_len, in tomoyo_print_ulong() argument
230 snprintf(buffer, buffer_len, "%lu", value); in tomoyo_print_ulong()
232 snprintf(buffer, buffer_len, "0%lo", value); in tomoyo_print_ulong()
234 snprintf(buffer, buffer_len, "0x%lX", value); in tomoyo_print_ulong()
236 snprintf(buffer, buffer_len, "type(%u)", type); in tomoyo_print_ulong()
406 void tomoyo_normalize_line(unsigned char *buffer) in tomoyo_normalize_line() argument
408 unsigned char *sp = buffer; in tomoyo_normalize_line()
409 unsigned char *dp = buffer; in tomoyo_normalize_line()
585 bool tomoyo_domain_def(const unsigned char *buffer) in tomoyo_domain_def() argument
590 if (*buffer != '<') in tomoyo_domain_def()
592 cp = strchr(buffer, ' '); in tomoyo_domain_def()
594 len = strlen(buffer); in tomoyo_domain_def()
596 len = cp - buffer; in tomoyo_domain_def()
597 if (buffer[len - 1] != '>' || in tomoyo_domain_def()
598 !tomoyo_correct_word2(buffer + 1, len - 2)) in tomoyo_domain_def()