Lines Matching full:fuse
2 QEMU Object Model FUSE filesystem tool
4 This script offers a simple FUSE filesystem within which the QOM tree
10 usage: qom-fuse [-h] [--socket SOCKET] <mount>
12 Mount a QOM tree as a FUSE filesystem
48 import fuse
49 from fuse import FUSE, FuseOSError, Operations
56 fuse.fuse_python_api = (0, 2)
61 QOMFuse implements both fuse.Operations and QOMCommand.
65 name = 'fuse'
66 help = 'Mount a QOM tree as a FUSE filesystem'
67 fuse: FUSE
87 self.fuse = FUSE(self, self.mount, foreground=True)