| 205 | } |
| 206 | |
| 207 | static void RemoveAllocEntry(long lRequest) |
| 208 | { |
| 209 | auto itr = gBfCaptureSourceAllocMap.find(lRequest); |
| 210 | if (itr != gBfCaptureSourceAllocMap.end()) |
| 211 | { |
| 212 | CaptureAllocEntry* entry = &itr->second; |
| 213 | |
| 214 | entry->mLoc->mTotalSize -= entry->mAllocSize; |
| 215 | gBfCaptureSourceAllocMap.erase(itr); |
| 216 | } |
| 217 | } |
| 218 | |
| 219 | //const LOC_HASHES |
| 220 |
no test coverage detected