Lines Matching defs:slot
115 * get the info about this slot
120 tlm_slot_t *slot = NULL;
124 slot = library->tl_slot;
125 while (slot != NULL) {
126 if (slt == slot->ts_number) {
127 return (slot);
129 slot = slot->ts_next;
363 * add a new tape slot data blob to the list of slots in a library
364 * returns the new tape slot data blob just created
370 tlm_slot_t *slot = ndmp_malloc(sizeof (tlm_slot_t));
379 slot->ts_library = library;
380 slot->ts_number = library->tl_slot_count;
381 *p_slot = slot;
382 return (slot->ts_number);