Lines Matching defs:uid
807 const char *uid;
812 uid = acpi_device_uid(adev);
813 if (!uid)
816 return kstrtou64(uid, 0, integer);
852 const char *uid;
866 if (match->uid && (!adev->pnp.unique_id ||
867 strcmp(adev->pnp.unique_id, match->uid)))
883 * @uid: Unique ID of the device, pass NULL to not check _UID
900 bool acpi_dev_present(const char *hid, const char *uid, s64 hrv)
906 match.uid = uid;
917 * @adev: Pointer to the previous ACPI device matching this @hid, @uid and @hrv
919 * @uid: Unique ID of the device, pass NULL to not check _UID
932 acpi_dev_get_next_match_dev(struct acpi_device *adev, const char *hid, const char *uid, s64 hrv)
939 match.uid = uid;
951 * @uid: Unique ID of the device, pass NULL to not check _UID
962 acpi_dev_get_first_match_dev(const char *hid, const char *uid, s64 hrv)
964 return acpi_dev_get_next_match_dev(NULL, hid, uid, hrv);