Lines Matching refs:idp
79 void *idr_find_slowpath(struct idr *idp, int id);
81 int idr_alloc(struct idr *idp, void *ptr, int start, int end, gfp_t gfp_mask);
83 int idr_for_each(struct idr *idp,
85 void *idr_get_next(struct idr *idp, int *nextid);
86 void *idr_replace(struct idr *idp, void *ptr, int id);
87 void idr_remove(struct idr *idp, int id);
88 void idr_destroy(struct idr *idp);
89 void idr_init(struct idr *idp);
90 bool idr_is_empty(struct idr *idp);
135 #define idr_for_each_entry(idp, entry, id) \ argument
136 for (id = 0; ((entry) = idr_get_next(idp, &(id))) != NULL; ++id)