• Home
  • Raw
  • Download

Lines Matching refs:state

1276 					   unsigned int state)  in match_component()  argument
1281 return aa_dfa_match(profile->policy.dfa, state, tp->base.hname); in match_component()
1285 state = aa_dfa_match_len(profile->policy.dfa, state, ":", 1); in match_component()
1286 state = aa_dfa_match(profile->policy.dfa, state, ns_name); in match_component()
1287 state = aa_dfa_match_len(profile->policy.dfa, state, ":", 1); in match_component()
1288 return aa_dfa_match(profile->policy.dfa, state, tp->base.hname); in match_component()
1308 unsigned int state, bool subns, u32 request, in label_compound_match() argument
1318 state = match_component(profile, tp, state); in label_compound_match()
1319 if (!state) in label_compound_match()
1332 state = aa_dfa_match(profile->policy.dfa, state, "//&"); in label_compound_match()
1333 state = match_component(profile, tp, state); in label_compound_match()
1334 if (!state) in label_compound_match()
1337 aa_compute_perms(profile->policy.dfa, state, perms); in label_compound_match()
1346 return state; in label_compound_match()
1372 unsigned int state = 0; in label_components_match() local
1378 state = match_component(profile, tp, start); in label_components_match()
1379 if (!state) in label_components_match()
1388 aa_compute_perms(profile->policy.dfa, state, &tmp); in label_components_match()
1394 state = match_component(profile, tp, start); in label_components_match()
1395 if (!state) in label_components_match()
1397 aa_compute_perms(profile->policy.dfa, state, &tmp); in label_components_match()
1424 unsigned int state, bool subns, u32 request, in aa_label_match() argument
1427 int error = label_compound_match(profile, label, state, subns, request, in aa_label_match()
1433 return label_components_match(profile, label, state, subns, request, in aa_label_match()