Lines Matching refs:File_system
829 class File_system
832 File_system *_next;
835 File_system() throw() : _next(0) {} in File_system() function
861 virtual ~File_system() throw() = 0;
867 File_system *next() const throw() { return _next; } in next()
868 File_system *&next() throw() { return _next; } in next()
869 void next(File_system *n) throw() { _next = n; } in next()
873 File_system::~File_system() throw() in ~File_system()
943 virtual int register_file_system(File_system *f) throw() = 0;
952 virtual int unregister_file_system(File_system *f) throw() = 0;
961 virtual File_system *get_file_system(char const *fstype) throw() = 0;
983 File_system *fs = get_file_system(fstype); in mount()