Home
last modified time | relevance | path

Searched refs:fFileSystems (Results 1 – 5 of 5) sorted by relevance

/haiku/src/add-ons/kernel/file_systems/userlandfs/kernel_add_on/
H A DUserlandFS.cpp25 fFileSystems(NULL), in UserlandFS()
34 delete fFileSystems; in ~UserlandFS()
87 FileSystemLocker _(fFileSystems); in RegisterFileSystem()
88 fileSystemInitializer = fFileSystems->Get(name); in RegisterFileSystem()
96 status_t error = fFileSystems->Put(name, fileSystemInitializer); in RegisterFileSystem()
129 return fFileSystems->Size(); in CountFileSystems()
141 fFileSystems = new(nothrow) FileSystemMap; in _Init()
142 if (!fFileSystems) in _Init()
144 status_t error = fFileSystems->InitCheck(); in _Init()
162 FileSystemLocker _(fFileSystems); in _UnregisterFileSystem()
[all …]
H A DUserlandFS.h55 FileSystemMap* fFileSystems; variable
H A DKernelDebug.cpp23 KDebugFSMap& fileSystems = userlandFS->fFileSystems->GetUnsynchronizedMap(); in DebugUFS()
/haiku/src/add-ons/kernel/file_systems/nfs4/
H A DNFS4Server.cpp63 FileSystem* fs = fFileSystems.Head(); in ServerRebooted()
75 fs = fFileSystems.GetNext(fs); in ServerRebooted()
88 fFileSystems.Add(fs); in AddFileSystem()
102 fFileSystems.Remove(fs); in RemoveFileSystem()
148 FileSystem* fs = fFileSystems.Head(); in FileSystemMigrated()
151 fs = fFileSystems.GetNext(fs); in FileSystemMigrated()
333 FileSystem* current = fFileSystems.Head(); in CallbackRecall()
339 current = fFileSystems.GetNext(current); in CallbackRecall()
375 FileSystem* current = fFileSystems.Head(); in CallbackGetAttr()
381 current = fFileSystems.GetNext(current); in CallbackGetAttr()
[all …]
H A DNFS4Server.h68 DoublyLinkedList<FileSystem> fFileSystems; variable