Lines Matching refs:type
227 const unsigned long value, const u8 type) in tomoyo_print_ulong() argument
229 if (type == TOMOYO_VALUE_TYPE_DECIMAL) in tomoyo_print_ulong()
231 else if (type == TOMOYO_VALUE_TYPE_OCTAL) in tomoyo_print_ulong()
233 else if (type == TOMOYO_VALUE_TYPE_HEXADECIMAL) in tomoyo_print_ulong()
236 snprintf(buffer, buffer_len, "type(%u)", type); in tomoyo_print_ulong()
276 u8 type; in tomoyo_parse_number_union() local
286 type = tomoyo_parse_ulong(&v, &data); in tomoyo_parse_number_union()
287 if (type == TOMOYO_VALUE_TYPE_INVALID) in tomoyo_parse_number_union()
290 ptr->value_type[0] = type; in tomoyo_parse_number_union()
293 ptr->value_type[1] = type; in tomoyo_parse_number_union()
298 type = tomoyo_parse_ulong(&v, &data); in tomoyo_parse_number_union()
299 if (type == TOMOYO_VALUE_TYPE_INVALID || *data || ptr->values[0] > v) in tomoyo_parse_number_union()
302 ptr->value_type[1] = type; in tomoyo_parse_number_union()
1030 r->type = index; in tomoyo_init_request_info()
1067 switch (ptr->type) { in tomoyo_domain_quota_is_ok()