Home | History | Annotate | Download | only in common

Lines Matching refs:error

56 	int error;
58 error = kern_xxx_12_init();
59 if (error != 0)
60 return error;
62 error = vm_12_init();
63 if (error != 0) {
65 return error;
68 error = vfs_syscalls_12_init();
69 if (error != 0) {
72 return error;
81 int error;
83 error = vfs_syscalls_12_fini();
84 if (error != 0)
85 return error;
87 error = vm_12_fini();
88 if (error != 0) {
90 return error;
93 error = kern_xxx_12_fini();
94 if (error != 0) {
97 return error;