Lines Matching refs:res
14 int res; in test_file_open() local
25 res = fs_open(filep, file_path, FS_O_CREATE | FS_O_RDWR); in test_file_open()
26 if (res) { in test_file_open()
27 TC_PRINT("Failed opening file [%d]\n", res); in test_file_open()
28 return res; in test_file_open()
33 return res; in test_file_open()
39 int res; in test_file_write() local
44 res = fs_seek(filep, 0, FS_SEEK_SET); in test_file_write()
45 if (res) { in test_file_write()
46 TC_PRINT("fs_seek failed [%d]\n", res); in test_file_write()
48 return res; in test_file_write()
70 return res; in test_file_write()
76 int res; in test_file_read() local
82 res = fs_seek(filep, 0, FS_SEEK_SET); in test_file_read()
83 if (res) { in test_file_read()
84 TC_PRINT("fs_seek failed [%d]\n", res); in test_file_read()
86 return res; in test_file_read()
109 return res; in test_file_read()
114 int res; in test_file_close() local
118 res = fs_close(filep); in test_file_close()
119 if (res) { in test_file_close()
120 TC_PRINT("Error closing file [%d]\n", res); in test_file_close()
121 return res; in test_file_close()
125 return res; in test_file_close()
130 int res; in test_file_delete() local
136 res = fs_unlink(file_path); in test_file_delete()
137 if (res) { in test_file_delete()
138 TC_PRINT("Error deleting file [%d]\n", res); in test_file_delete()
139 return res; in test_file_delete()
150 return res; in test_file_delete()