Home
last modified time | relevance | path

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

/linux-4.4.14/drivers/acpi/acpica/
Dtbutils.c155 struct acpi_table_header *new_table; in acpi_tb_copy_dsdt() local
160 new_table = ACPI_ALLOCATE(table_desc->length); in acpi_tb_copy_dsdt()
161 if (!new_table) { in acpi_tb_copy_dsdt()
167 memcpy(new_table, table_desc->pointer, table_desc->length); in acpi_tb_copy_dsdt()
172 ACPI_PTR_TO_PHYSADDR(new_table), in acpi_tb_copy_dsdt()
174 new_table); in acpi_tb_copy_dsdt()
178 new_table->length)); in acpi_tb_copy_dsdt()
180 return (new_table); in acpi_tb_copy_dsdt()
/linux-4.4.14/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.4.14/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.4.14/drivers/acpi/
Dosl.c733 struct acpi_table_header ** new_table) in acpi_os_table_override() argument
735 if (!existing_table || !new_table) in acpi_os_table_override()
738 *new_table = NULL; in acpi_os_table_override()
742 *new_table = (struct acpi_table_header *)AmlCode; in acpi_os_table_override()
744 if (*new_table != NULL) in acpi_os_table_override()
/linux-4.4.14/include/acpi/
Dacpiosxf.h105 struct acpi_table_header **new_table);
/linux-4.4.14/net/ipv4/netfilter/
Darp_tables.c1677 struct xt_table *new_table; in arpt_register_table() local
1693 new_table = xt_register_table(net, table, &bootstrap, newinfo); in arpt_register_table()
1694 if (IS_ERR(new_table)) { in arpt_register_table()
1695 ret = PTR_ERR(new_table); in arpt_register_table()
1698 return new_table; in arpt_register_table()
Dip_tables.c1927 struct xt_table *new_table; in ipt_register_table() local
1942 new_table = xt_register_table(net, table, &bootstrap, newinfo); in ipt_register_table()
1943 if (IS_ERR(new_table)) { in ipt_register_table()
1944 ret = PTR_ERR(new_table); in ipt_register_table()
1948 return new_table; in ipt_register_table()
/linux-4.4.14/net/ipv6/netfilter/
Dip6_tables.c1929 struct xt_table *new_table; in ip6t_register_table() local
1944 new_table = xt_register_table(net, table, &bootstrap, newinfo); in ip6t_register_table()
1945 if (IS_ERR(new_table)) { in ip6t_register_table()
1946 ret = PTR_ERR(new_table); in ip6t_register_table()
1949 return new_table; in ip6t_register_table()
/linux-4.4.14/drivers/net/vmxnet3/
Dvmxnet3_drv.c2180 u8 *new_table = NULL; in vmxnet3_set_mc() local
2200 new_table = vmxnet3_copy_mc(netdev); in vmxnet3_set_mc()
2201 if (new_table) { in vmxnet3_set_mc()
2207 new_table, in vmxnet3_set_mc()
2244 kfree(new_table); in vmxnet3_set_mc()