Searched refs:find_in_html (Results 1 – 1 of 1) sorted by relevance
/Linux-v6.1/tools/power/pm-graph/ |
D | sleepgraph.py | 6227 def find_in_html(html, start, end, firstonly=True): function 6257 suspend = find_in_html(html, 'Kernel Suspend', 'ms') 6258 resume = find_in_html(html, 'Kernel Resume', 'ms') 6259 sysinfo = find_in_html(html, '<div class="stamp sysinfo">', '</div>') 6260 line = find_in_html(html, '<div class="stamp">', '</div>') 6270 error = find_in_html(html, '<table class="testfail"><tr><td>', '</td>') 6282 log = find_in_html(html, '<div id="dmesglog" style="display:none;">', 6301 line = find_in_html(log, '# wifi ', '\n') 6304 line = find_in_html(log, '# netfix ', '\n') 6307 low = find_in_html(html, 'freeze time: <b>', ' ms</b>') [all …]
|