| 318 | } |
| 319 | |
| 320 | size_t TupleCacheMgr::GetCharge(TupleCacheMgr::Handle* handle) const { |
| 321 | uint8_t* data = getHandleData(cache_.get(), handle); |
| 322 | return reinterpret_cast<TupleCacheEntry*>(data)->charge; |
| 323 | } |
| 324 | |
| 325 | void TupleCacheMgr::UpdateWriteSize(TupleCacheMgr::Handle* handle, |
| 326 | size_t charge) { |
nothing calls this directly
no test coverage detected