Lines Matching refs:item_id
126 * @param item_id item to return for 0 to item_num
130 apr_status_t (* dptr)(ap_slotmem_instance_t *s, unsigned int item_id, void**mem);
134 * @param item_id item to return for 0 to item_num
139 apr_status_t (* get)(ap_slotmem_instance_t *s, unsigned int item_id, unsigned char *dest, apr_size_t dest_len);
143 * @param item_id item to return for 0 to item_num
148 apr_status_t (* put)(ap_slotmem_instance_t *slot, unsigned int item_id, unsigned char *src, apr_size_t src_len);
172 * @param item_id ptr to the available slot id and marked as in-use
175 apr_status_t (* grab)(ap_slotmem_instance_t *s, unsigned int *item_id);
177 * release (or free) the slot associated with this item_id
179 * @param item_id slot id to free and mark as no longer in-use
182 apr_status_t (* release)(ap_slotmem_instance_t *s, unsigned int item_id);
184 * forced grab (or alloc) a slot associated with this item_id
186 * @param item_id to the specified slot id and marked as in-use
189 apr_status_t (* fgrab)(ap_slotmem_instance_t *s, unsigned int item_id);