| 615 | } |
| 616 | |
| 617 | static int |
| 618 | biba_externalize_label(struct label *label, char *element_name, |
| 619 | struct sbuf *sb, int *claimed) |
| 620 | { |
| 621 | struct mac_biba *mb; |
| 622 | |
| 623 | if (strcmp(MAC_BIBA_LABEL_NAME, element_name) != 0) |
| 624 | return (0); |
| 625 | |
| 626 | (*claimed)++; |
| 627 | |
| 628 | mb = SLOT(label); |
| 629 | return (biba_to_string(sb, mb)); |
| 630 | } |
| 631 | |
| 632 | static int |
| 633 | biba_parse_element(struct mac_biba_element *element, char *string) |
nothing calls this directly
no test coverage detected