Home | History | Annotate | Download | only in Misc

Lines Matching refs:opts

92             if opts.debug:
112 if opts.debug:
138 global opts
202 (opts, args) = parser.parse_args()
204 if opts.listSignals:
213 signal = kSignals[opts.signalName]
215 if opts.verbose:
237 if opts.execName is not None:
239 if re_full_match(opts.execName,
241 if opts.execPath is not None:
243 if re_full_match(opts.execPath, p.executable)]
244 if opts.userName is not None:
246 if re_full_match(opts.userName, p.user)]
248 if opts.minCPU <= p.cpu_percent <= opts.maxCPU]
250 if opts.minMem <= float(p.vmem_size) / (1<<20) <= opts.maxMem]
252 if opts.minRSS <= p.rss <= opts.maxRSS]
254 if opts.minTime <= p.cpu_time <= opts.maxTime]
257 if not opts.force and not opts.dryRun:
264 if opts.verbose:
267 if not opts.dryRun:
271 if opts.debug: