1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
// automatically generated by stateify.
package pipefs
import (
"gvisor.dev/gvisor/pkg/state"
)
func (f *filesystemType) StateTypeName() string {
return "pkg/sentry/fsimpl/pipefs.filesystemType"
}
func (f *filesystemType) StateFields() []string {
return []string{}
}
func (f *filesystemType) beforeSave() {}
func (f *filesystemType) StateSave(stateSinkObject state.Sink) {
f.beforeSave()
}
func (f *filesystemType) afterLoad() {}
func (f *filesystemType) StateLoad(stateSourceObject state.Source) {
}
func (fs *filesystem) StateTypeName() string {
return "pkg/sentry/fsimpl/pipefs.filesystem"
}
func (fs *filesystem) StateFields() []string {
return []string{
"Filesystem",
"devMinor",
}
}
func (fs *filesystem) beforeSave() {}
func (fs *filesystem) StateSave(stateSinkObject state.Sink) {
fs.beforeSave()
stateSinkObject.Save(0, &fs.Filesystem)
stateSinkObject.Save(1, &fs.devMinor)
}
func (fs *filesystem) afterLoad() {}
func (fs *filesystem) StateLoad(stateSourceObject state.Source) {
stateSourceObject.Load(0, &fs.Filesystem)
stateSourceObject.Load(1, &fs.devMinor)
}
func (i *inode) StateTypeName() string {
return "pkg/sentry/fsimpl/pipefs.inode"
}
func (i *inode) StateFields() []string {
return []string{
"InodeNotDirectory",
"InodeNotSymlink",
"InodeNoopRefCount",
"locks",
"pipe",
"ino",
"uid",
"gid",
"ctime",
}
}
func (i *inode) beforeSave() {}
func (i *inode) StateSave(stateSinkObject state.Sink) {
i.beforeSave()
stateSinkObject.Save(0, &i.InodeNotDirectory)
stateSinkObject.Save(1, &i.InodeNotSymlink)
stateSinkObject.Save(2, &i.InodeNoopRefCount)
stateSinkObject.Save(3, &i.locks)
stateSinkObject.Save(4, &i.pipe)
stateSinkObject.Save(5, &i.ino)
stateSinkObject.Save(6, &i.uid)
stateSinkObject.Save(7, &i.gid)
stateSinkObject.Save(8, &i.ctime)
}
func (i *inode) afterLoad() {}
func (i *inode) StateLoad(stateSourceObject state.Source) {
stateSourceObject.Load(0, &i.InodeNotDirectory)
stateSourceObject.Load(1, &i.InodeNotSymlink)
stateSourceObject.Load(2, &i.InodeNoopRefCount)
stateSourceObject.Load(3, &i.locks)
stateSourceObject.Load(4, &i.pipe)
stateSourceObject.Load(5, &i.ino)
stateSourceObject.Load(6, &i.uid)
stateSourceObject.Load(7, &i.gid)
stateSourceObject.Load(8, &i.ctime)
}
func init() {
state.Register((*filesystemType)(nil))
state.Register((*filesystem)(nil))
state.Register((*inode)(nil))
}
|