Lines Matching defs:uuid
122 * __mei_me_cl_by_uuid - locate me client by uuid
126 * @uuid: me client uuid
133 const uuid_le *uuid)
142 if (uuid_le_cmp(*uuid, *pn) == 0)
150 * mei_me_cl_by_uuid - locate me client by uuid
154 * @uuid: me client uuid
161 const uuid_le *uuid)
166 me_cl = __mei_me_cl_by_uuid(dev, uuid);
201 * __mei_me_cl_by_uuid_id - locate me client by client id and uuid
205 * @uuid: me client uuid
213 const uuid_le *uuid, u8 client_id)
222 if (uuid_le_cmp(*uuid, *pn) == 0 &&
232 * mei_me_cl_by_uuid_id - locate me client by client id and uuid
236 * @uuid: me client uuid
242 const uuid_le *uuid, u8 client_id)
247 me_cl = __mei_me_cl_by_uuid_id(dev, uuid, client_id);
254 * mei_me_cl_rm_by_uuid - remove all me clients matching uuid
257 * @uuid: me client uuid
261 void mei_me_cl_rm_by_uuid(struct mei_device *dev, const uuid_le *uuid)
265 dev_dbg(dev->dev, "remove %pUl\n", uuid);
268 me_cl = __mei_me_cl_by_uuid(dev, uuid);
278 * @uuid: me client uuid
283 void mei_me_cl_rm_by_uuid_id(struct mei_device *dev, const uuid_le *uuid, u8 id)
287 dev_dbg(dev->dev, "remove %pUl %d\n", uuid, id);
290 me_cl = __mei_me_cl_by_uuid_id(dev, uuid, id);