Home
last modified time | relevance | path

Searched refs:container_of (Results 1 – 8 of 8) sorted by relevance

/reactos/drivers/bus/acpi/busmgr/
H A Dpower.c202 ref = container_of(node, struct acpi_power_reference, node); in acpi_power_on()
253 ref = container_of(node, struct acpi_power_reference, node); in acpi_power_off_device()
621 struct acpi_power_reference *ref = container_of(node, struct acpi_power_reference, node); in acpi_power_remove()
649 ref = container_of(resource->reference.next, struct acpi_power_reference, node); in acpi_power_resume()
/reactos/drivers/bus/acpi/include/
H A Dglue.h15 #define container_of(ptr, type, member) (type *)( (char *)(ptr) - offsetof(type,member) ) macro
H A Dacpi_bus.h291 #define to_acpi_device(d) container_of(d, struct acpi_device, dev)
292 #define to_acpi_driver(d) container_of(d, struct acpi_driver, drv)
/reactos/drivers/filesystems/ext2/src/ext4/
H A Dext4_xattr.c166 a = container_of(_a, struct ext4_xattr_item, node); in ext4_xattr_item_cmp()
167 a = container_of(_a, struct ext4_xattr_item, node); in ext4_xattr_item_cmp()
168 b = container_of(_b, struct ext4_xattr_item, node); in ext4_xattr_item_cmp()
201 container_of(new, struct ext4_xattr_item, node); in ext4_xattr_item_search()
618 container_of(next_node, in ext4_xattr_remove_item()
742 item = container_of(first_node, struct ext4_xattr_item, in ext4_xattr_purge_items()
750 next_item = container_of(next_node, struct ext4_xattr_item, in ext4_xattr_purge_items()
/reactos/drivers/filesystems/ext2/inc/linux/
H A Drbtree.h130 #define rb_entry(ptr, type, member) container_of(ptr, type, member)
H A Dmodule.h32 #ifndef container_of
33 #define container_of(ptr, type, member) \ macro
/reactos/drivers/filesystems/ext2/src/
H A Dlinux.c381 container_of(new, struct buffer_head, b_rb_node); in __buffer_head_search()
400 a_bh = container_of(a, struct buffer_head, b_rb_node); in buffer_head_blocknr_cmp()
401 b_bh = container_of(b, struct buffer_head, b_rb_node); in buffer_head_blocknr_cmp()
/reactos/drivers/filesystems/ext2/src/ext3/
H A Dgeneric.c353 bh = container_of(node, struct buffer_head, b_rb_node); in Ext2FlushVcb()