Lines Matching defs:table

203  * 	@table: the table the chain is contained in
215 struct nft_table *table;
542 * @list: table set list node
545 * @table: table this set belongs to
579 struct nft_table *table;
633 const struct nft_table *table,
1088 * @table: table that this chain belongs to
1105 struct nft_table *table;
1172 int nft_chain_add(struct nft_table *table, struct nft_chain *chain);
1249 * struct nft_table - nf_tables table
1252 * @chains_ht: chains in the table
1254 * @sets: sets in the table
1255 * @objects: stateful objects in the table
1256 * @flowtables: flow tables in the table
1258 * @handle: table handle
1259 * @use: number of chain references to this table
1261 * @flags: table flag (see enum nft_table_flags)
1264 * @name: name of the table
1289 static inline bool nft_table_has_owner(const struct nft_table *table)
1291 return table->flags & NFT_TABLE_F_OWNER;
1294 static inline bool nft_table_is_orphan(const struct nft_table *table)
1296 return (table->flags & (NFT_TABLE_F_OWNER | NFT_TABLE_F_PERSIST)) ==
1319 * @table: table the object belongs to
1323 const struct nft_table *table;
1329 * @list: table stateful object list node
1363 const struct nft_table *table,
1367 void nft_obj_notify(struct net *net, const struct nft_table *table,
1430 * struct nft_flowtable - nf_tables flow table
1432 * @list: flow table list node in table list
1433 * @table: the table the flow table is contained in
1434 * @name: name of this flow table
1438 * @use: number of references to this flow table
1445 struct nft_table *table;
1457 struct nft_flowtable *nft_flowtable_lookup(const struct nft_table *table,