Home | History | Annotate | Download | only in platform_MemoryMonitor

Lines Matching refs:lines

83 def parse_processes(lines):
86 @param lines: a list of lines from top, the header must be the first
91 headers = [x.lower() for x in lines[0].split()]
93 for line in lines[1:]:
335 lines = output.split('\n')
336 # Ignore the first 3 lines, they're not relevant in this test.
337 lines = lines[3:]
338 mem_general = parse_general_usage(lines[0])
341 swap_general = parse_general_usage(lines[1])
355 lines = lines[3:]
357 processes = parse_processes(lines)