Lines Matching refs:fields
17 # fields enclosed by brackets "[]" replaced with your own identifying
53 if field not in options.fields:
153 fields = ("type", "name", "used", "quota")
169 parser.add_option("-o", dest="fields", metavar="field[,...]",
171 help=_("print only these fields (eg type,name,used,quota)"))
173 type="choice", choices=fields, default=list(),
177 type="choice", choices=fields, #-s sets the default
189 options.fields = options.fields.split(",")
190 for f in options.fields:
191 if f not in fields:
244 t = zfs.table.Table(options.fields, rjustfields)