Searched refs:find_in_html (Results 1 – 1 of 1) sorted by relevance
/openbmc/linux/tools/power/pm-graph/ |
H A D | sleepgraph.py | 6248 def find_in_html(html, start, end, firstonly=True): function 6278 suspend = find_in_html(html, 'Kernel Suspend', 'ms') 6279 resume = find_in_html(html, 'Kernel Resume', 'ms') 6280 sysinfo = find_in_html(html, '<div class="stamp sysinfo">', '</div>') 6281 line = find_in_html(html, '<div class="stamp">', '</div>') 6291 error = find_in_html(html, '<table class="testfail"><tr><td>', '</td>') 6303 log = find_in_html(html, '<div id="dmesglog" style="display:none;">', 6322 line = find_in_html(log, '# wifi ', '\n') 6325 line = find_in_html(log, '# netfix ', '\n') 6328 low = find_in_html(html, 'freeze time: <b>', ' ms</b>') [all …]
|