github.com/google/syzkaller@v0.0.0-20251211124644-a066d2bc4b02/pkg/manager/html/syscalls.html (about) 1 {{/* 2 Copyright 2024 syzkaller project authors. All rights reserved. 3 Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file. 4 */}} 5 6 <table class="list_table"> 7 <caption>Per-syscall coverage:</caption> 8 <thead> 9 <tr> 10 <th><a onclick="return sortTable(this, 'Syscall', textSort)" href="#">Syscall</a></th> 11 <th><a onclick="return sortTable(this, 'Inputs', numSort)" href="#" title="Number of inputs in the corpus added because of this syscall">Inputs</a></th> 12 <th><a onclick="return sortTable(this, 'Total', numSort)" href="#" title="Total number of inputs in the corpus that contain this syscall">Total</a></th> 13 <th><a onclick="return sortTable(this, 'Coverage', numSort)" href="#" title="Coverage achieved by this syscall">Coverage</a></th> 14 <th><a onclick="return sortTable(this, 'Cover overflows', numSort)" href="#" title="Number of times coverage buffer has overflowed on this syscall">Cover overflows</a></th> 15 <th><a onclick="return sortTable(this, 'Comps overflows', numSort)" href="#" title="Number of times comparisons buffer has overflowed on this syscall">Comps overflows</a></th> 16 <th>Prio</th> 17 </tr> 18 </thead> 19 <tbody> 20 {{range $c := $.Calls}} 21 <tr> 22 <td>{{$c.Name}}{{if $c.ID }} [{{$c.ID}}]{{end}}</td> 23 <td><a href='/corpus?call={{$c.Name}}'>{{$c.Inputs}}</a></td> 24 <td>{{$c.Total}}</td> 25 <td><a href='/cover?call={{$c.Name}}'>{{$c.Cover}}</a></td> 26 <td>{{$c.CoverOverflows}}</td> 27 <td>{{$c.CompsOverflows}}</td> 28 <td><a href='/prio?call={{$c.Name}}'>prio</a></td> 29 </tr> 30 {{end}} 31 </tbody> 32 </table>