Home | History | Annotate | Download | only in checkpolicy

Lines Matching full:bounds

169 	role_datum_t *bounds;
183 bounds = hashtab_search(roles_tab, bounds_id);
184 if (!bounds) {
185 yyerror2("role %s doesn't exist, is implicit bounds of %s",
190 if (!role->bounds)
191 role->bounds = bounds->s.value;
192 else if (role->bounds != bounds->s.value) {
193 yyerror2("role %s has inconsistent bounds %s/%s",
195 policydbp->p_role_val_to_name[role->bounds - 1]);
373 user_datum_t *bounds;
387 bounds = hashtab_search(users_tab, bounds_id);
388 if (!bounds) {
389 yyerror2("user %s doesn't exist, is implicit bounds of %s",
394 if (!user->bounds)
395 user->bounds = bounds->s.value;
396 else if (user->bounds != bounds->s.value) {
397 yyerror2("user %s has inconsistent bounds %s/%s",
399 policydbp->p_role_val_to_name[user->bounds - 1]);