Lines Matching refs:uuid
121 * __mei_me_cl_by_uuid - locate me client by uuid
125 * @uuid: me client uuid
132 const uuid_le *uuid)
141 if (uuid_le_cmp(*uuid, *pn) == 0)
149 * mei_me_cl_by_uuid - locate me client by uuid
153 * @uuid: me client uuid
160 const uuid_le *uuid)
165 me_cl = __mei_me_cl_by_uuid(dev, uuid);
200 * __mei_me_cl_by_uuid_id - locate me client by client id and uuid
204 * @uuid: me client uuid
212 const uuid_le *uuid, u8 client_id)
221 if (uuid_le_cmp(*uuid, *pn) == 0 &&
231 * mei_me_cl_by_uuid_id - locate me client by client id and uuid
235 * @uuid: me client uuid
241 const uuid_le *uuid, u8 client_id)
246 me_cl = __mei_me_cl_by_uuid_id(dev, uuid, client_id);
253 * mei_me_cl_rm_by_uuid - remove all me clients matching uuid
256 * @uuid: me client uuid
260 void mei_me_cl_rm_by_uuid(struct mei_device *dev, const uuid_le *uuid)
264 dev_dbg(dev->dev, "remove %pUl\n", uuid);
267 me_cl = __mei_me_cl_by_uuid(dev, uuid);
277 * @uuid: me client uuid
282 void mei_me_cl_rm_by_uuid_id(struct mei_device *dev, const uuid_le *uuid, u8 id)
286 dev_dbg(dev->dev, "remove %pUl %d\n", uuid, id);
289 me_cl = __mei_me_cl_by_uuid_id(dev, uuid, id);