Home | History | Annotate | Download | only in gensprep

Lines Matching refs:hashTable

209 static UHashtable* hashTable = NULL;
218 /* Callback for deleting the value from the hashtable */
250 if (hashTable == NULL) {
253 elementCount = uhash_count(hashTable);
260 while( (element = uhash_nextElement(hashTable, &pos))!=NULL){
364 /* initialize the hashtable */
365 if(hashTable==NULL){
366 hashTable = uhash_open(hashEntry, compareEntries, NULL, status);
367 uhash_setValueDeleter(hashTable, valueDeleter);
454 uhash_iput(hashTable,codepoint,value,status);
620 /* done with writing the data .. close the hashtable */
621 if (hashTable != NULL) {
622 uhash_close(hashTable);