Home | History | Annotate | Download | only in plot

Lines Matching refs:max_time

151 def compute_temp_file(fio_data_file,disk_perf,gnuplot_output_dir, min_time, max_time):
152 end_time=max_time
211 if ((float(time)>(float(min_time)*1000)) and ((int(time) < (int(max_time)*1000)) or max_time==-1)):
377 print '-M or --max_time <time> : Only consider data ending before <time> seconds (default is -1 aka nolimit)'
394 max_time=-1
410 opts, args = getopt.getopt(argv[1:],"ghkbivo:d:t:p:G:m:M:",['bandwidth', 'iops', 'pattern', 'outputfile', 'outputdir', 'title', 'min_time', 'max_time', 'gnuplot', 'Global', 'help', 'verbose','keep'])
442 elif opt in ("-M", "--max_time"):
443 max_time=arg
505 blk_size=compute_temp_file(fio_data_file,disk_perf,gnuplot_output_dir,min_time,max_time)