Home
last modified time | relevance | path

Searched refs:table_header (Results 1 – 2 of 2) sorted by relevance

/security/apparmor/include/
Dmatch.h82 struct table_header { struct
102 struct table_header *tables[YYTD_ID_TSIZE]; argument
122 return ALIGN(sizeof(struct table_header) + len * el_size, 8); in table_size()
/security/apparmor/
Dmatch.c77 static struct table_header *unpack_table(char *blob, size_t bsize) in unpack_table()
79 struct table_header *table = NULL; in unpack_table()
80 struct table_header th; in unpack_table()
83 if (bsize < sizeof(struct table_header)) in unpack_table()
94 blob += sizeof(struct table_header); in unpack_table()
147 static int verify_table_headers(struct table_header **tables, int flags) in verify_table_headers()
311 struct table_header *table = NULL; in aa_dfa_unpack()