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

/illumos-gate/usr/src/lib/udapl/libdat/common/
H A Ddat_dictionary.c100 DAT_DICTIONARY *p_dictionary; local
108 p_dictionary = dat_os_alloc(sizeof (DAT_DICTIONARY));
109 if (NULL == p_dictionary) {
115 (void) dat_os_memset(p_dictionary, '\0', sizeof (DAT_DICTIONARY));
118 p_dictionary->head = dat_os_alloc(sizeof (DAT_DICTIONARY_NODE));
119 if (NULL == p_dictionary->head) {
125 (void) dat_os_memset(p_dictionary->head, '\0',
129 p_dictionary->tail = dat_os_alloc(sizeof (DAT_DICTIONARY_NODE));
130 if (NULL == p_dictionary->tail) {
136 (void) dat_os_memset(p_dictionary
170 dat_dictionary_destroy( IN DAT_DICTIONARY *p_dictionary) argument
195 dat_dictionary_size( IN DAT_DICTIONARY *p_dictionary, OUT DAT_COUNT *p_size) argument
255 dat_dictionary_insert( IN DAT_DICTIONARY *p_dictionary, IN DAT_DICTIONARY_ENTRY entry, IN const DAT_PROVIDER_INFO *key, IN DAT_DICTIONARY_DATA data) argument
302 dat_dictionary_search( IN DAT_DICTIONARY *p_dictionary, IN const DAT_PROVIDER_INFO *key, OUT DAT_DICTIONARY_DATA *p_data) argument
338 dat_dictionary_enumerate( IN DAT_DICTIONARY *p_dictionary, IN DAT_DICTIONARY_DATA array[], IN DAT_COUNT array_size) argument
373 dat_dictionary_remove( IN DAT_DICTIONARY *p_dictionary, IN DAT_DICTIONARY_ENTRY *p_entry, IN const DAT_PROVIDER_INFO *key, OUT DAT_DICTIONARY_DATA *p_data) argument
[all...]

Completed in 55 milliseconds