blob: d189f127a9576885ef9135a5120a63ba0a4ee143 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{{/*
Copyright 2024 syzkaller project authors. All rights reserved.
Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
*/}}
<table class="list_table">
<thead>
<tr>
<th>Call</th>
<th>Successful</th>
<th>Errnos</th>
</tr>
</thead>
<tbody>
{{range $c := $.Calls}}
<tr>
<td>{{$c.Name}}</td>
<td>{{if $c.Successful}}{{$c.Successful}}{{end}}</td>
<td>{{range $e := $c.Errnos}}{{$e}} {{end}}</td>
</tr>
{{end}}
</tbody>
</table>
|