Lines Matching refs:fields
17 # fields enclosed by brackets "[]" replaced with your own identifying
52 if field not in options.fields:
152 fields = ("type", "name", "used", "quota")
168 parser.add_option("-o", dest="fields", metavar="field[,...]",
170 help=_("print only these fields (eg type,name,used,quota)"))
172 type="choice", choices=fields, default=list(),
176 type="choice", choices=fields, #-s sets the default
188 options.fields = options.fields.split(",")
189 for f in options.fields:
190 if f not in fields:
243 t = zfs.table.Table(options.fields, rjustfields)