Current Path: > > usr > include > sepol > policydb
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
avrule_block.h | File | 1637 bytes | October 09 2021 02:44:18. | |
avtab.h | File | 4743 bytes | October 09 2021 02:44:18. | |
conditional.h | File | 4733 bytes | October 09 2021 02:44:18. | |
constraint.h | File | 2571 bytes | October 09 2021 02:44:18. | |
context.h | File | 3332 bytes | October 09 2021 02:44:18. | |
ebitmap.h | File | 3176 bytes | October 09 2021 02:44:18. | |
expand.h | File | 3656 bytes | October 09 2021 02:44:18. | |
flask.h | File | 4992 bytes | October 09 2021 02:44:18. | |
flask_types.h | File | 1779 bytes | October 09 2021 02:44:18. | |
hashtab.h | File | 4392 bytes | October 09 2021 02:44:18. | |
hierarchy.h | File | 1818 bytes | October 09 2021 02:44:18. | |
link.h | File | 517 bytes | October 09 2021 02:44:18. | |
mls_types.h | File | 4376 bytes | October 09 2021 02:44:18. | |
module.h | File | 1532 bytes | October 09 2021 02:44:18. | |
polcaps.h | File | 721 bytes | October 09 2021 02:44:18. | |
policydb.h | File | 25976 bytes | October 09 2021 02:44:18. | |
services.h | File | 8583 bytes | October 09 2021 02:44:18. | |
sidtab.h | File | 1976 bytes | October 09 2021 02:44:18. | |
symtab.h | File | 1102 bytes | October 09 2021 02:44:18. | |
util.h | File | 1461 bytes | October 09 2021 02:44:18. |
/* Author : Stephen Smalley, <sds@tycho.nsa.gov> */ /* FLASK */ /* * A symbol table (symtab) maintains associations between symbol * strings and datum values. The type of the datum values * is arbitrary. The symbol table type is implemented * using the hash table type (hashtab). */ #ifndef _SEPOL_POLICYDB_SYMTAB_H_ #define _SEPOL_POLICYDB_SYMTAB_H_ #include <sepol/policydb/hashtab.h> #ifdef __cplusplus extern "C" { #endif /* The symtab_datum struct stores the common information for * all symtab datums. It should the first element in every * struct that will be used in a symtab to allow the specific * datum types to be freely cast to this type. * * The values start at 1 - 0 is never a valid value. */ typedef struct symtab_datum { uint32_t value; } symtab_datum_t; typedef struct { hashtab_t table; /* hash table (keyed on a string) */ uint32_t nprim; /* number of primary names in table */ } symtab_t; extern int symtab_init(symtab_t *, unsigned int size); extern void symtab_destroy(symtab_t *); #ifdef __cplusplus } #endif #endif /* _SYMTAB_H_ */ /* FLASK */
SILENT KILLER Tool