Searched defs:gnuplot (Results 1 - 2 of 2) sorted by relevance

/external/autotest/tko/
H A Dplotgraph.py4 Class to draw gnuplot graphs for autotest performance analysis.
22 class gnuplot: class in inherits:
38 # prepend 2 blanks to work around gnuplot bug
72 p = Popen("/usr/bin/gnuplot", stdin = subprocess.PIPE)
/external/v8/tools/
H A Dgc-nvp-trace-processor.py33 # run with flags --trace-gc --trace-gc-nvp. Relies on gnuplot for actual
49 def gnuplot(script): function
50 gnuplot = subprocess.Popen(["gnuplot"], stdin=subprocess.PIPE)
51 gnuplot.stdin.write(script)
52 gnuplot.stdin.close()
53 gnuplot.wait()
181 gnuplot(script)

Completed in 123 milliseconds