MCPcopy Create free account
hub / github.com/audacity/audacity / idxHashSearch

Function idxHashSearch

lib-src/sqlite/shell.c:8644–8648  ·  view source on GitHub ↗

** If the hash table contains an entry with a key equal to the string ** passed as the final two arguments to this function, return a pointer ** to the payload string. Otherwise, if zKey/nKey is not present in the ** hash table, return NULL. */

Source from the content-addressed store, hash-verified

8642** hash table, return NULL.
8643*/
8644static const char *idxHashSearch(IdxHash *pHash, const char *zKey, int nKey){
8645 IdxHashEntry *pEntry = idxHashFind(pHash, zKey, nKey);
8646 if( pEntry ) return pEntry->zVal;
8647 return 0;
8648}
8649
8650/*
8651** Allocate and return a new IdxConstraint object. Set the IdxConstraint.zColl

Callers 1

idxFindIndexesFunction · 0.85

Calls 1

idxHashFindFunction · 0.85

Tested by

no test coverage detected