Lines Matching refs:output
29 import output
64 def display(self, output=None, limit=None, maxsymlen=None):
65 if not output:
67 output = sys.stdout
68 elif isinstance(output, str):
69 output = file(output, 'w')
84 print >>output, symbolf % (name, 100.0 * (float(number) / total))
207 def displayx(self, output=None, maxcount=None):
208 if output is None:
210 output = sys.stdout
221 print >>output, '%-30s %8s' % (key, '%3.2f%%' % percent)
224 # This list controls the order of values in stacked bar data output
341 output = file(symbols.filename[:-3] + 'txt', 'w')
342 symbols.display(output, limit)
382 -d generate dot output
383 -g <d> draw graphs and send output to <d>
394 from output import StatOutput
482 output = StatOutput(jobfile, info=profile)
483 output.xlabel = 'System Configuration'
484 output.ylabel = '% CPU utilization'
485 output.stat = name
486 output.graph(name, graph)