Lines Matching defs:set
15 struct ioasid_set *set;
262 * @ioasid: the ID to set data
265 * For IOASID that is already allocated, private data can be set
294 * @set: the IOASID set
304 ioasid_t ioasid_alloc(struct ioasid_set *set, ioasid_t min, ioasid_t max,
315 data->set = set;
377 * @set: the IOASID set
386 * Private data can be NULL if not set. Return an error if the IOASID is not
387 * found, or if @set is not NULL and the IOASID does not belong to the set.
389 void *ioasid_find(struct ioasid_set *set, ioasid_t ioasid,
403 if (set && ioasid_data->set != set) {
404 /* data found but does not belong to the set */
408 /* Now IOASID and its set is verified, we can return the private data */