Lines Matching refs:ioc_table

88           struct ipfw_ioc_table *ioc_table;  in table_create_dispatch()  local
91 ioc_table = tbmsg->ioc_table; in table_create_dispatch()
92 int id = ioc_table->id; in table_create_dispatch()
96 table_ctx->type = ioc_table->type; in table_create_dispatch()
98 strlcpy(table_ctx->name , ioc_table->name, IPFW_TABLE_NAME_LEN); in table_create_dispatch()
125 ioc_tbl = tbmsg->ioc_table; in table_delete_dispatch()
147 ioc_tbl = tbmsg->ioc_table; in table_append_dispatch()
203 ioc_tbl = tbmsg->ioc_table; in table_remove_dispatch()
242 ioc_tbl = tbmsg->ioc_table; in table_flush_dispatch()
263 ioc_tbl = tbmsg->ioc_table; in table_rename_dispatch()
278 struct ipfw_ioc_table *ioc_table; in ip_fw3_ctl_table_list() local
287 ioc_table = (struct ipfw_ioc_table *)sopt->sopt_val; in ip_fw3_ctl_table_list()
288 for (i = 0; i < IPFW_TABLES_MAX; i++, ioc_table++, table_ctx++) { in ip_fw3_ctl_table_list()
289 ioc_table->id = i; in ip_fw3_ctl_table_list()
290 ioc_table->type = table_ctx->type; in ip_fw3_ctl_table_list()
291 ioc_table->count = table_ctx->count; in ip_fw3_ctl_table_list()
292 strlcpy(ioc_table->name, table_ctx->name, IPFW_TABLE_NAME_LEN); in ip_fw3_ctl_table_list()
306 tbmsg.ioc_table = sopt->sopt_val; in ip_fw3_ctl_table_remove()
321 tbmsg.ioc_table = sopt->sopt_val; in ip_fw3_ctl_table_flush()
468 tbmsg.ioc_table = sopt->sopt_val; in ip_fw3_ctl_table_create()
483 tbmsg.ioc_table = sopt->sopt_val; in ip_fw3_ctl_table_delete()
498 tbmsg.ioc_table = sopt->sopt_val; in ip_fw3_ctl_table_append()
513 tbmsg.ioc_table = sopt->sopt_val; in ip_fw3_ctl_table_rename()