Lines Matching refs:cleanup
57 int tst_fs_has_free_(void (*cleanup)(void), const char *path,
83 long tst_fs_type_(void (*cleanup)(void), const char *path);
106 int tst_fs_fill_hardlinks_(void (*cleanup) (void), const char *dir);
125 int tst_fs_fill_subdirs_(void (*cleanup) (void), const char *dir);
131 int tst_dir_is_empty_(void (*cleanup)(void), const char *name, int verbose);
177 static inline long tst_fs_type(void (*cleanup)(void), const char *path) in tst_fs_type()
179 return tst_fs_type_(cleanup, path); in tst_fs_type()
182 static inline int tst_fs_has_free(void (*cleanup)(void), const char *path, in tst_fs_has_free()
185 return tst_fs_has_free_(cleanup, path, size, mult); in tst_fs_has_free()
188 static inline int tst_fs_fill_hardlinks(void (*cleanup)(void), const char *dir) in tst_fs_fill_hardlinks()
190 return tst_fs_fill_hardlinks_(cleanup, dir); in tst_fs_fill_hardlinks()
193 static inline int tst_fs_fill_subdirs(void (*cleanup)(void), const char *dir) in tst_fs_fill_subdirs()
195 return tst_fs_fill_subdirs_(cleanup, dir); in tst_fs_fill_subdirs()
198 static inline int tst_dir_is_empty(void (*cleanup)(void), const char *name, int verbose) in tst_dir_is_empty()
200 return tst_dir_is_empty_(cleanup, name, verbose); in tst_dir_is_empty()