| 305 | } |
| 306 | |
| 307 | TupleCacheState TupleCacheMgr::GetState(TupleCacheMgr::Handle* handle) const { |
| 308 | uint8_t* data = getHandleData(cache_.get(), handle); |
| 309 | return reinterpret_cast<TupleCacheEntry*>(data)->state; |
| 310 | } |
| 311 | |
| 312 | // Returns true if state was updated. |
| 313 | bool TupleCacheMgr::UpdateState(TupleCacheMgr::Handle* handle, |
nothing calls this directly
no test coverage detected