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
|
// automatically generated by stateify.
package ramfs
import (
"gvisor.dev/gvisor/pkg/state"
)
func (x *Dir) beforeSave() {}
func (x *Dir) save(m state.Map) {
x.beforeSave()
m.Save("InodeSimpleAttributes", &x.InodeSimpleAttributes)
m.Save("InodeSimpleExtendedAttributes", &x.InodeSimpleExtendedAttributes)
m.Save("children", &x.children)
m.Save("dentryMap", &x.dentryMap)
}
func (x *Dir) afterLoad() {}
func (x *Dir) load(m state.Map) {
m.Load("InodeSimpleAttributes", &x.InodeSimpleAttributes)
m.Load("InodeSimpleExtendedAttributes", &x.InodeSimpleExtendedAttributes)
m.Load("children", &x.children)
m.Load("dentryMap", &x.dentryMap)
}
func (x *dirFileOperations) beforeSave() {}
func (x *dirFileOperations) save(m state.Map) {
x.beforeSave()
m.Save("dirCursor", &x.dirCursor)
m.Save("dir", &x.dir)
}
func (x *dirFileOperations) afterLoad() {}
func (x *dirFileOperations) load(m state.Map) {
m.Load("dirCursor", &x.dirCursor)
m.Load("dir", &x.dir)
}
func (x *Socket) beforeSave() {}
func (x *Socket) save(m state.Map) {
x.beforeSave()
m.Save("InodeSimpleAttributes", &x.InodeSimpleAttributes)
m.Save("InodeSimpleExtendedAttributes", &x.InodeSimpleExtendedAttributes)
m.Save("ep", &x.ep)
}
func (x *Socket) afterLoad() {}
func (x *Socket) load(m state.Map) {
m.Load("InodeSimpleAttributes", &x.InodeSimpleAttributes)
m.Load("InodeSimpleExtendedAttributes", &x.InodeSimpleExtendedAttributes)
m.Load("ep", &x.ep)
}
func (x *socketFileOperations) beforeSave() {}
func (x *socketFileOperations) save(m state.Map) {
x.beforeSave()
}
func (x *socketFileOperations) afterLoad() {}
func (x *socketFileOperations) load(m state.Map) {
}
func (x *Symlink) beforeSave() {}
func (x *Symlink) save(m state.Map) {
x.beforeSave()
m.Save("InodeSimpleAttributes", &x.InodeSimpleAttributes)
m.Save("InodeSimpleExtendedAttributes", &x.InodeSimpleExtendedAttributes)
m.Save("Target", &x.Target)
}
func (x *Symlink) afterLoad() {}
func (x *Symlink) load(m state.Map) {
m.Load("InodeSimpleAttributes", &x.InodeSimpleAttributes)
m.Load("InodeSimpleExtendedAttributes", &x.InodeSimpleExtendedAttributes)
m.Load("Target", &x.Target)
}
func (x *symlinkFileOperations) beforeSave() {}
func (x *symlinkFileOperations) save(m state.Map) {
x.beforeSave()
}
func (x *symlinkFileOperations) afterLoad() {}
func (x *symlinkFileOperations) load(m state.Map) {
}
func init() {
state.Register("pkg/sentry/fs/ramfs.Dir", (*Dir)(nil), state.Fns{Save: (*Dir).save, Load: (*Dir).load})
state.Register("pkg/sentry/fs/ramfs.dirFileOperations", (*dirFileOperations)(nil), state.Fns{Save: (*dirFileOperations).save, Load: (*dirFileOperations).load})
state.Register("pkg/sentry/fs/ramfs.Socket", (*Socket)(nil), state.Fns{Save: (*Socket).save, Load: (*Socket).load})
state.Register("pkg/sentry/fs/ramfs.socketFileOperations", (*socketFileOperations)(nil), state.Fns{Save: (*socketFileOperations).save, Load: (*socketFileOperations).load})
state.Register("pkg/sentry/fs/ramfs.Symlink", (*Symlink)(nil), state.Fns{Save: (*Symlink).save, Load: (*Symlink).load})
state.Register("pkg/sentry/fs/ramfs.symlinkFileOperations", (*symlinkFileOperations)(nil), state.Fns{Save: (*symlinkFileOperations).save, Load: (*symlinkFileOperations).load})
}
|