MCPcopy Create free account
hub / github.com/Kitware/CMake / poolDestroy

Function poolDestroy

Utilities/cmexpat/lib/xmlparse.c:7987–8001  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7985}
7986
7987static void FASTCALL
7988poolDestroy(STRING_POOL *pool) {
7989 BLOCK *p = pool->blocks;
7990 while (p) {
7991 BLOCK *tem = p->next;
7992 FREE(pool->parser, p);
7993 p = tem;
7994 }
7995 p = pool->freeBlocks;
7996 while (p) {
7997 BLOCK *tem = p->next;
7998 FREE(pool->parser, p);
7999 p = tem;
8000 }
8001}
8002
8003static XML_Char *
8004poolAppend(STRING_POOL *pool, const ENCODING *enc, const char *ptr,

Callers 2

XML_ParserFreeFunction · 0.85
dtdDestroyFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…