Lines Matching refs:guid
55 guid_t guid; member
64 guid_t guid; member
111 guid_copy(&tm->guid, (guid_t *) module_info->module_guid); in acpi_parse_prmt()
150 guid_copy(&th->guid, (guid_t *)handler_info->handler_guid); in acpi_parse_prmt()
171 static void *find_guid_info(const guid_t *guid, u8 mode) in find_guid_info() argument
180 if (guid_equal(guid, &cur_handler->guid)) { in find_guid_info()
192 static struct prm_module_info *find_prm_module(const guid_t *guid) in find_prm_module() argument
194 return (struct prm_module_info *)find_guid_info(guid, GET_MODULE); in find_prm_module()
197 static struct prm_handler_info *find_prm_handler(const guid_t *guid) in find_prm_handler() argument
199 return (struct prm_handler_info *) find_guid_info(guid, GET_HANDLER); in find_prm_handler()
254 context.identifier = handler->guid; in acpi_platformrt_space_handler()