Lines Matching refs:path
56 * @path: path is the pathname of any file within the mounted file system
60 int tst_fs_has_free_(void (*cleanup)(void), const char *path, unsigned int size,
64 * Returns filesystem magick for a given path.
86 long tst_fs_type_(void (*cleanup)(void), const char *path);
137 * Search $PATH for prog_name and fills buf with absolute path if found.
163 * @path: path to file
168 int tst_fill_file(const char *path, char pattern, size_t bs, size_t bcount);
172 * @path: path to file
176 int tst_prealloc_file(const char *path, size_t bs, size_t bcount);
207 * Creates and writes to files on given path until write fails with ENOSPC
209 void tst_fill_fs(const char *path, int verbose, enum tst_fill_access_pattern pattern);
217 static inline long tst_fs_type(const char *path)
219 return tst_fs_type_(NULL, path);
222 static inline int tst_fs_has_free(const char *path, unsigned int size,
225 return tst_fs_has_free_(NULL, path, size, mult);
243 static inline long tst_fs_type(void (*cleanup)(void), const char *path)
245 return tst_fs_type_(cleanup, path);
248 static inline int tst_fs_has_free(void (*cleanup)(void), const char *path,
251 return tst_fs_has_free_(cleanup, path, size, mult);