| 1045 | } |
| 1046 | |
| 1047 | void GcsFileSystem::ClearFileCaches(const string& fname) { |
| 1048 | tf_shared_lock l(block_cache_lock_); |
| 1049 | file_block_cache_->RemoveFile(fname); |
| 1050 | stat_cache_->Delete(fname); |
| 1051 | // TODO(rxsang): Remove the patterns that matche the file in |
| 1052 | // MatchingPathsCache as well. |
| 1053 | } |
| 1054 | |
| 1055 | Status GcsFileSystem::NewWritableFile(const string& fname, |
| 1056 | std::unique_ptr<WritableFile>* result) { |
nothing calls this directly
no test coverage detected