Searched defs:index_tbl (Results 1 - 1 of 1) sorted by relevance

/osnet-11/usr/src/lib/libbsm/common/
H A Daudit_event.c284 static au_event_ent_t **index_tbl; local
382 /* get space for the index_tbl */
383 index_tbl = calloc(max+1, sizeof (au_event_ent_t *));
384 if (index_tbl == NULL) {
389 /* intialize the index_tbl to the invalid event number */
391 index_tbl[i] = p_tbl[invalid];
394 /* point each index_tbl element at the corresponding event */
396 index_tbl[p_tbl[i]->ae_number] = p_tbl[i];
403 *result = index_tbl[invalid];
405 *result = index_tbl[event_numbe
[all...]

Completed in 21 milliseconds