MCPcopy Create free account
hub / github.com/OSGeo/gdal / CPLHashSetLookup

Function CPLHashSetLookup

port/cpl_hash_set.cpp:384–392  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

382 */
383
384void *CPLHashSetLookup(CPLHashSet *set, const void *elt)
385{
386 CPLAssert(set != nullptr);
387 void **pElt = CPLHashSetFindPtr(set, elt);
388 if (pElt)
389 return *pElt;
390
391 return nullptr;
392}
393
394/************************************************************************/
395/* CPLHashSetRemoveInternal() */

Callers 14

startElementCbkMethod · 0.85
OGRPGFindTableEntryFunction · 0.85
LoadTablesMethod · 0.85
OpenMethod · 0.85
TEST_FFunction · 0.85
MarkAsSharedMethod · 0.85
GetSharedDSFunction · 0.85
CPLLoadSchemaStrInternalFunction · 0.85
GetFileListMethod · 0.85

Calls 1

CPLHashSetFindPtrFunction · 0.85

Tested by 1

TEST_FFunction · 0.68