Lines Matching refs:guid
56 guid_t guid; member
65 guid_t guid; member
112 guid_copy(&tm->guid, (guid_t *) module_info->module_guid); in acpi_parse_prmt()
141 guid_copy(&th->guid, (guid_t *)handler_info->handler_guid); in acpi_parse_prmt()
153 static void *find_guid_info(const guid_t *guid, u8 mode) in find_guid_info() argument
162 if (guid_equal(guid, &cur_handler->guid)) { in find_guid_info()
175 static struct prm_module_info *find_prm_module(const guid_t *guid) in find_prm_module() argument
177 return (struct prm_module_info *)find_guid_info(guid, GET_MODULE); in find_prm_module()
180 static struct prm_handler_info *find_prm_handler(const guid_t *guid) in find_prm_handler() argument
182 return (struct prm_handler_info *) find_guid_info(guid, GET_HANDLER); in find_prm_handler()
242 context.identifier = handler->guid; in acpi_platformrt_space_handler()