Lines Matching refs:result
78 int result; in rk_check_and_resizefs() local
83 result = run(e2fsck_argv[0], (char **) e2fsck_argv); in rk_check_and_resizefs()
84 if (result) { in rk_check_and_resizefs()
86 return result; in rk_check_and_resizefs()
89 result = run(resizefs_argv[0], (char **) resizefs_argv); in rk_check_and_resizefs()
90 if (result) { in rk_check_and_resizefs()
94 return result; in rk_check_and_resizefs()
99 int result; in rk_check_and_resizefs_f2fs() local
104 result = run(e2fsck_argv[0], (char **) e2fsck_argv); in rk_check_and_resizefs_f2fs()
105 if (result) { in rk_check_and_resizefs_f2fs()
107 return result; in rk_check_and_resizefs_f2fs()
110 result = run(resizefs_argv[0], (char **) resizefs_argv); in rk_check_and_resizefs_f2fs()
111 if (result) { in rk_check_and_resizefs_f2fs()
115 return result; in rk_check_and_resizefs_f2fs()
128 int result; in make_extfs() local
131 result = run(mke2fs[0], (char **) mke2fs); in make_extfs()
132 if (result) { in make_extfs()
134 return result; in make_extfs()
137 result = run(tune2fs[0], (char **) tune2fs); in make_extfs()
138 if (result) { in make_extfs()
140 return result; in make_extfs()
143 return result; in make_extfs()