/usr/include/sepol
NameSizeModeActions
cil/-0755rm
policydb/-0755rm
booleans.h13270644editdlrm
boolean_record.h15510644editdlrm
context.h7520644editdlrm
context_record.h16700644editdlrm
debug.h9750644editdlrm
errcodes.h8260644editdlrm
handle.h13930644editdlrm
ibendports.h13870644editdlrm
ibendport_record.h21820644editdlrm
ibpkeys.h13470644editdlrm
ibpkey_record.h23010644editdlrm
iface_record.h18400644editdlrm
interfaces.h14030644editdlrm
kernel_to_cil.h1250644editdlrm
kernel_to_conf.h1260644editdlrm
module.h26800644editdlrm
module_to_cil.h3290644editdlrm
nodes.h13120644editdlrm
node_record.h28060644editdlrm
policydb.h48130644editdlrm
ports.h13120644editdlrm
port_record.h20150644editdlrm
sepol.h8620644editdlrm
users.h13360644editdlrm
user_record.h23840644editdlrm
Edit: /usr/include/sepol/errcodes.h (826B)
/* Author: Karl MacMillan */ #ifndef __sepol_errno_h__ #define __sepol_errno_h__ #include #ifdef __cplusplus extern "C" { #endif #define SEPOL_OK 0 /* These first error codes are defined for compatibility with * previous version of libsepol. In the future, custom error * codes that don't map to system error codes should be defined * outside of the range of system error codes. */ #define SEPOL_ERR (-1) #define SEPOL_ENOTSUP (-2) /* feature not supported in module language */ #define SEPOL_EREQ (-3) /* requirements not met */ /* Error codes that map to system error codes */ #define SEPOL_ENOMEM (-ENOMEM) #define SEPOL_EEXIST (-EEXIST) #define SEPOL_ENOENT (-ENOENT) #ifdef __cplusplus } #endif #endif