/usr/include/sepol
NameSizeModeActions
policydb/-0755rm
booleans.h21690644editdlrm
boolean_record.h14820644editdlrm
context.h6820644editdlrm
context_record.h16010644editdlrm
debug.h9050644editdlrm
errcodes.h7830644editdlrm
handle.h9760644editdlrm
iface_record.h17710644editdlrm
interfaces.h13340644editdlrm
module.h26110644editdlrm
nodes.h12430644editdlrm
node_record.h27370644editdlrm
policydb.h44330644editdlrm
ports.h12430644editdlrm
port_record.h18920644editdlrm
roles.h2700644editdlrm
sepol.h6670644editdlrm
users.h19540644editdlrm
user_record.h23150644editdlrm
Edit: /usr/include/sepol/handle.h (976B)
#ifndef _SEPOL_HANDLE_H_ #define _SEPOL_HANDLE_H_ struct sepol_handle; typedef struct sepol_handle sepol_handle_t; /* Create and return a sepol handle. */ sepol_handle_t *sepol_handle_create(void); /* Get whether or not dontaudits will be disabled, same values as * specified by set_disable_dontaudit. This value reflects the state * your system will be set to upon commit, not necessarily its * current state.*/ int sepol_get_disable_dontaudit(sepol_handle_t * sh); /* Set whether or not to disable dontaudits, 0 is default and does * not disable dontaudits, 1 disables them */ void sepol_set_disable_dontaudit(sepol_handle_t * sh, int disable_dontaudit); /* Set whether module_expand() should consume the base policy passed in. * This should reduce the amount of memory required to expand the policy. */ void sepol_set_expand_consume_base(sepol_handle_t * sh, int consume_base); /* Destroy a sepol handle. */ void sepol_handle_destroy(sepol_handle_t *); #endif