Lines Matching refs:b
1163 const struct tomoyo_path_info *b) in tomoyo_pathcmp() argument
1165 return a->hash != b->hash || strcmp(a->name, b->name); in tomoyo_pathcmp()
1231 (const struct tomoyo_name_union *a, const struct tomoyo_name_union *b) in tomoyo_same_name_union() argument
1233 return a->filename == b->filename && a->group == b->group; in tomoyo_same_name_union()
1245 (const struct tomoyo_number_union *a, const struct tomoyo_number_union *b) in tomoyo_same_number_union() argument
1247 return a->values[0] == b->values[0] && a->values[1] == b->values[1] && in tomoyo_same_number_union()
1248 a->group == b->group && a->value_type[0] == b->value_type[0] && in tomoyo_same_number_union()
1249 a->value_type[1] == b->value_type[1]; in tomoyo_same_number_union()
1261 (const struct tomoyo_ipaddr_union *a, const struct tomoyo_ipaddr_union *b) in tomoyo_same_ipaddr_union() argument
1263 return !memcmp(a->ip, b->ip, sizeof(a->ip)) && a->group == b->group && in tomoyo_same_ipaddr_union()
1264 a->is_ipv6 == b->is_ipv6; in tomoyo_same_ipaddr_union()