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

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dhash.h37 char copyKey; /* True if copy of key made on insert */ member in struct:Hash
74 ** if the copyKey parameter to HashInit is 1.
84 void sqliteHashInit(Hash*, int keytype, int copyKey);
H A Dhash.c29 ** determines what kind of key the hash table will use. "copyKey" is
35 void sqliteHashInit(Hash *new, int keyClass, int copyKey){ argument
39 new->copyKey = copyKey &&
62 if( pH->copyKey && elem->pKey ){
253 if( pH->copyKey && elem->pKey ){
282 ** element is created. A copy of the key is made if the copyKey
319 if( pH->copyKey && pKey!=0 ){

Completed in 57 milliseconds