Lines Matching refs:file_path
12 int test_file_open(struct fs_file_t *filep, const char *file_path) in test_file_open() argument
18 if (check_file_dir_exists(file_path)) { in test_file_open()
19 TC_PRINT("Opening existing file %s\n", file_path); in test_file_open()
21 TC_PRINT("Creating new file %s\n", file_path); in test_file_open()
25 res = fs_open(filep, file_path, FS_O_CREATE | FS_O_RDWR); in test_file_open()
31 TC_PRINT("Opened file %s\n", file_path); in test_file_open()
128 int test_file_delete(const char *file_path) in test_file_delete() argument
136 res = fs_unlink(file_path); in test_file_delete()
143 if (check_file_dir_exists(file_path)) { in test_file_delete()
144 TC_PRINT("Failed deleting %s\n", file_path); in test_file_delete()
148 TC_PRINT("File (%s) deleted successfully!\n", file_path); in test_file_delete()