Lines Matching defs:MemBlockHdr
26979 ** | Title | backtrace pointers | MemBlockHdr | allocation | EndGuard |
26983 ** to back up from the allocation pointer to find the MemBlockHdr. The
26984 ** MemBlockHdr tells us the size of the allocation and the number of
26986 ** MemBlockHdr.
26988 struct MemBlockHdr {
26990 struct MemBlockHdr *pNext, *pPrev; /* Linked list of all unfreed memory */
27025 struct MemBlockHdr *pFirst;
27026 struct MemBlockHdr *pLast;
27080 ** Given an allocation, find the MemBlockHdr for that allocation.
27085 static struct MemBlockHdr *sqlite3MemsysGetHeader(const void *pAllocation){
27086 struct MemBlockHdr *p;
27091 p = (struct MemBlockHdr*)pAllocation;
27110 struct MemBlockHdr *pHdr;
27123 assert( (sizeof(struct MemBlockHdr)&7) == 0 );
27176 struct MemBlockHdr *pHdr;
27192 pHdr = (struct MemBlockHdr*)&pBt[mem.nBacktrace];
27235 struct MemBlockHdr *pHdr;
27277 struct MemBlockHdr *pOldHdr;
27316 struct MemBlockHdr *pHdr;
27335 struct MemBlockHdr *pHdr;
27357 struct MemBlockHdr *pHdr;
27397 struct MemBlockHdr *pHdr;
27411 struct MemBlockHdr *pHdr;