blob: 007278224c3f3ee579580adeb4f3a806f3dfa714 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{{/*
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">
<tr>
<th>Call</th>
<th>Successful</th>
<th>Errnos</th>
</tr>
{{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}}
</table>
|