Searched refs:snapshot (Results 1 - 4 of 4) sorted by relevance

/haiku/src/add-ons/kernel/file_systems/nfs4/
H A DDirectoryCache.h37 const DirectoryCacheSnapshot& snapshot);
57 inline status_t GetSnapshot(DirectoryCacheSnapshot** snapshot);
75 void _SetSnapshot(DirectoryCacheSnapshot* snapshot);
115 DirectoryCache::GetSnapshot(DirectoryCacheSnapshot** snapshot) argument
117 ASSERT(snapshot != NULL);
122 *snapshot = fDirectoryCache;
H A DDirectoryCache.cpp49 const DirectoryCacheSnapshot& snapshot)
53 MutexLocker _(snapshot.fLock);
54 NameCacheEntry* entry = snapshot.fEntries.Head();
63 entry = snapshot.fEntries.GetNext(entry);
206 DirectoryCache::_SetSnapshot(DirectoryCacheSnapshot* snapshot) argument
210 fDirectoryCache = snapshot;
48 DirectoryCacheSnapshot( const DirectoryCacheSnapshot& snapshot) argument
H A DInodeDir.cpp229 DirectoryCacheSnapshot* snapshot = new DirectoryCacheSnapshot; local
230 if (snapshot == NULL)
245 delete snapshot;
274 delete snapshot;
286 delete snapshot;
290 snapshot->fEntries.Add(entry);
296 *_snapshot = snapshot;
326 DirectoryCacheSnapshot* snapshot; local
327 result = cache->GetSnapshot(&snapshot);
333 cookie->fSnapshot = new DirectoryCacheSnapshot(*snapshot);
[all...]
/haiku/src/apps/diskusage/
H A DPieView.cpp439 VolumeSnapshot* snapshot = fScanner->Snapshot(); local
457 off_t volCapacity = snapshot->capacity;
458 mySpan = 360.0 * (volCapacity - snapshot->freeBytes) / volCapacity;
476 displayName = snapshot->name.c_str();
479 info = snapshot->rootDir;
484 snapshot->freeSpace));
520 parentSize = (float)snapshot->capacity;

Completed in 37 milliseconds