Lines Matching defs:index_tbl
274 static au_event_ent_t **index_tbl;
362 /* get space for the index_tbl */
363 index_tbl = calloc(max+1, sizeof (au_event_ent_t *));
364 if (index_tbl == NULL) {
369 /* intialize the index_tbl to the invalid event number */
371 index_tbl[i] = p_tbl[invalid];
374 /* point each index_tbl element at the corresponding event */
376 index_tbl[p_tbl[i]->ae_number] = p_tbl[i];
384 *result = index_tbl[invalid];
386 *result = index_tbl[event_number];