Home
last modified time | relevance | path

Searched refs:new_table (Results 1 – 9 of 9) sorted by relevance

/linux-4.1.27/drivers/acpi/acpica/
Dtbutils.c178 struct acpi_table_header *new_table; in acpi_tb_copy_dsdt() local
183 new_table = ACPI_ALLOCATE(table_desc->length); in acpi_tb_copy_dsdt()
184 if (!new_table) { in acpi_tb_copy_dsdt()
190 ACPI_MEMCPY(new_table, table_desc->pointer, table_desc->length); in acpi_tb_copy_dsdt()
195 ACPI_PTR_TO_PHYSADDR(new_table), in acpi_tb_copy_dsdt()
197 new_table); in acpi_tb_copy_dsdt()
201 new_table->length)); in acpi_tb_copy_dsdt()
203 return (new_table); in acpi_tb_copy_dsdt()
/linux-4.1.27/tools/power/acpi/os_specific/service_layers/
Dosunixxf.c72 struct acpi_table_header **new_table);
278 struct acpi_table_header ** new_table) in acpi_os_table_override() argument
281 if (!existing_table || !new_table) { in acpi_os_table_override()
285 *new_table = NULL; in acpi_os_table_override()
289 ae_table_override(existing_table, new_table); in acpi_os_table_override()
/linux-4.1.27/fs/
Dselect.c166 struct poll_table_page *new_table; in poll_get_entry() local
168 new_table = (struct poll_table_page *) __get_free_page(GFP_KERNEL); in poll_get_entry()
169 if (!new_table) { in poll_get_entry()
173 new_table->entry = new_table->entries; in poll_get_entry()
174 new_table->next = table; in poll_get_entry()
175 p->table = new_table; in poll_get_entry()
176 table = new_table; in poll_get_entry()
/linux-4.1.27/drivers/acpi/
Dosl.c718 struct acpi_table_header ** new_table) in acpi_os_table_override() argument
720 if (!existing_table || !new_table) in acpi_os_table_override()
723 *new_table = NULL; in acpi_os_table_override()
727 *new_table = (struct acpi_table_header *)AmlCode; in acpi_os_table_override()
729 if (*new_table != NULL) in acpi_os_table_override()
/linux-4.1.27/include/acpi/
Dacpiosxf.h104 struct acpi_table_header **new_table);
/linux-4.1.27/net/ipv4/netfilter/
Darp_tables.c1785 struct xt_table *new_table; in arpt_register_table() local
1802 new_table = xt_register_table(net, table, &bootstrap, newinfo); in arpt_register_table()
1803 if (IS_ERR(new_table)) { in arpt_register_table()
1804 ret = PTR_ERR(new_table); in arpt_register_table()
1807 return new_table; in arpt_register_table()
Dip_tables.c2078 struct xt_table *new_table; in ipt_register_table() local
2094 new_table = xt_register_table(net, table, &bootstrap, newinfo); in ipt_register_table()
2095 if (IS_ERR(new_table)) { in ipt_register_table()
2096 ret = PTR_ERR(new_table); in ipt_register_table()
2100 return new_table; in ipt_register_table()
/linux-4.1.27/net/ipv6/netfilter/
Dip6_tables.c2091 struct xt_table *new_table; in ip6t_register_table() local
2107 new_table = xt_register_table(net, table, &bootstrap, newinfo); in ip6t_register_table()
2108 if (IS_ERR(new_table)) { in ip6t_register_table()
2109 ret = PTR_ERR(new_table); in ip6t_register_table()
2112 return new_table; in ip6t_register_table()
/linux-4.1.27/drivers/net/vmxnet3/
Dvmxnet3_drv.c2048 u8 *new_table = NULL; in vmxnet3_set_mc() local
2068 new_table = vmxnet3_copy_mc(netdev); in vmxnet3_set_mc()
2069 if (new_table) { in vmxnet3_set_mc()
2074 new_table, in vmxnet3_set_mc()
2110 kfree(new_table); in vmxnet3_set_mc()