Lines Matching refs:type
225 const unsigned long value, const u8 type) in tomoyo_print_ulong() argument
227 if (type == TOMOYO_VALUE_TYPE_DECIMAL) in tomoyo_print_ulong()
229 else if (type == TOMOYO_VALUE_TYPE_OCTAL) in tomoyo_print_ulong()
231 else if (type == TOMOYO_VALUE_TYPE_HEXADECIMAL) in tomoyo_print_ulong()
234 snprintf(buffer, buffer_len, "type(%u)", type); in tomoyo_print_ulong()
274 u8 type; in tomoyo_parse_number_union() local
284 type = tomoyo_parse_ulong(&v, &data); in tomoyo_parse_number_union()
285 if (type == TOMOYO_VALUE_TYPE_INVALID) in tomoyo_parse_number_union()
288 ptr->value_type[0] = type; in tomoyo_parse_number_union()
291 ptr->value_type[1] = type; in tomoyo_parse_number_union()
296 type = tomoyo_parse_ulong(&v, &data); in tomoyo_parse_number_union()
297 if (type == TOMOYO_VALUE_TYPE_INVALID || *data || ptr->values[0] > v) in tomoyo_parse_number_union()
300 ptr->value_type[1] = type; in tomoyo_parse_number_union()
1008 r->type = index; in tomoyo_init_request_info()
1039 switch (ptr->type) { in tomoyo_domain_quota_is_ok()