Lines Matching full:options
73 options = args.parse_args() variable
74 if (options.start_time and options.stop_time and
75 options.start_time >= options.stop_time):
78 if (options.start_sample and options.stop_sample and
79 options.start_sample >= options.stop_sample):
131 if (options.vmlinux):
132 return options.vmlinux;
158 disasm = [ options.objdump, "-d", "-z",
242 global options
265 if (options.start_time and sample["time"] < options.start_time):
267 if (options.stop_time and sample["time"] > options.stop_time):
269 if (options.start_sample and sample_idx < options.start_sample):
271 if (options.stop_sample and sample_idx > options.stop_sample):
274 if (options.verbose == True):
327 if ((stop_addr == 4) and (options.verbose == True)):
339 if (options.objdump != None):