| 398 | } |
| 399 | |
| 400 | void BNSharedCacheFreeSymbolList(BNSharedCacheSymbol* symbols, size_t count) |
| 401 | { |
| 402 | for (size_t i = 0; i < count; i++) |
| 403 | BNSharedCacheFreeSymbol(symbols[i]); |
| 404 | delete[] symbols; |
| 405 | } |
| 406 | |
| 407 | BNSharedCacheEntry* BNSharedCacheControllerGetEntries(BNSharedCacheController* controller, size_t* count) |
| 408 | { |
no test coverage detected