Lines Matching refs:graph
764 def parse_tracefile_line(line, exclude, include, exflags, incflags, active_proc, graph, base=16): argument
798 graph.addmsg(src, sendpid, dst, destpid, val[5], val[6], float(val[0]))
858 if not args.graph and not args.freq and not args.summary and not args.nodegrid:
864 graph = IPCGraph(args.name, args.tbfreq)
877 parse_tracefile_line(line.strip(), None, None, None, None, active_proc, graph, 10)
884 …ile_line(line.strip(), args.exclude, args.include, args.exflags, args.incflags, active_proc, graph)
889 if args.graph:
891 sys.stderr.write("Writing follow-graph to {:s}...\n".format(args.graph.name))
892 graph.print_follow_graph(args.graph, args.follow)
894 sys.stderr.write("Writing graph output to {:s}...\n".format(args.graph.name))
895 graph.print_graph(args.graph, args.follow)
898 graph.print_freqdata(args.freq, args.gnuplot)
901 graph.print_datasummary(args.summary)
905 graph.print_nodegrid(args.nodegrid, args.ngridtype, args.ngridfilter)