Searched refs:labelfrom (Results 1 - 3 of 3) sorted by relevance

/freebsd-9.3-release/sys/security/mac_lomac/
H A Dmac_lomac.c450 lomac_copy_range(struct mac_lomac *labelfrom, struct mac_lomac *labelto) argument
453 KASSERT((labelfrom->ml_flags & MAC_LOMAC_FLAG_RANGE) != 0,
454 ("lomac_copy_range: labelfrom not range"));
456 labelto->ml_rangelow = labelfrom->ml_rangelow;
457 labelto->ml_rangehigh = labelfrom->ml_rangehigh;
462 lomac_copy_single(struct mac_lomac *labelfrom, struct mac_lomac *labelto) argument
465 KASSERT((labelfrom->ml_flags & MAC_LOMAC_FLAG_SINGLE) != 0,
466 ("lomac_copy_single: labelfrom not single"));
468 labelto->ml_single = labelfrom->ml_single;
473 lomac_copy_auxsingle(struct mac_lomac *labelfrom, struc argument
[all...]
/freebsd-9.3-release/sys/security/mac_biba/
H A Dmac_biba.c468 biba_copy_range(struct mac_biba *labelfrom, struct mac_biba *labelto) argument
471 KASSERT((labelfrom->mb_flags & MAC_BIBA_FLAG_RANGE) != 0,
472 ("biba_copy_range: labelfrom not range"));
474 labelto->mb_rangelow = labelfrom->mb_rangelow;
475 labelto->mb_rangehigh = labelfrom->mb_rangehigh;
480 biba_copy_effective(struct mac_biba *labelfrom, struct mac_biba *labelto) argument
483 KASSERT((labelfrom->mb_flags & MAC_BIBA_FLAG_EFFECTIVE) != 0,
484 ("biba_copy_effective: labelfrom not effective"));
486 labelto->mb_effective = labelfrom->mb_effective;
/freebsd-9.3-release/sys/security/mac_mls/
H A Dmac_mls.c429 mls_copy_range(struct mac_mls *labelfrom, struct mac_mls *labelto) argument
432 KASSERT((labelfrom->mm_flags & MAC_MLS_FLAG_RANGE) != 0,
433 ("mls_copy_range: labelfrom not range"));
435 labelto->mm_rangelow = labelfrom->mm_rangelow;
436 labelto->mm_rangehigh = labelfrom->mm_rangehigh;
441 mls_copy_effective(struct mac_mls *labelfrom, struct mac_mls *labelto) argument
444 KASSERT((labelfrom->mm_flags & MAC_MLS_FLAG_EFFECTIVE) != 0,
445 ("mls_copy_effective: labelfrom not effective"));
447 labelto->mm_effective = labelfrom->mm_effective;

Completed in 108 milliseconds