Lines Matching defs:zfs
25 """This module implements the "zfs userspace" and "zfs groupspace" subcommands.
26 The only public interface is the zfs.userspace.do_userspace() function."""
34 import zfs.util
35 import zfs.ioctl
36 import zfs.dataset
37 import zfs.table
39 _ = zfs.util._
134 v[field] = zfs.util.nicenum(value)
137 """Implements the "zfs userspace" and "zfs groupspace" subcommands."""
143 parser.exit("zfs: error: " + msg)
158 parser = optparse.OptionParser(usage=u, prog="zfs")
173 action="callback", callback=zfs.util.append_with_opt,
177 action="callback", callback=zfs.util.append_with_opt,
204 ds = zfs.dataset.Dataset(dsname, types=("filesystem"))
243 t = zfs.table.Table(options.fields, rjustfields)