Lines Matching refs:pathname

173 #define assertChmod(pathname, mode)				\
174 assertion_chmod(__FILE__, __LINE__, pathname, mode)
199 #define assertEmptyFile(pathname) \
200 assertion_empty_file(__FILE__, __LINE__, (pathname))
202 #define assertNonEmptyFile(pathname) \
203 assertion_non_empty_file(__FILE__, __LINE__, (pathname))
204 #define assertFileAtime(pathname, sec, nsec) \
205 assertion_file_atime(__FILE__, __LINE__, pathname, sec, nsec)
206 #define assertFileAtimeRecent(pathname) \
207 assertion_file_atime_recent(__FILE__, __LINE__, pathname)
208 #define assertFileBirthtime(pathname, sec, nsec) \
209 assertion_file_birthtime(__FILE__, __LINE__, pathname, sec, nsec)
210 #define assertFileBirthtimeRecent(pathname) \
211 assertion_file_birthtime_recent(__FILE__, __LINE__, pathname)
213 #define assertFileExists(pathname) \
214 assertion_file_exists(__FILE__, __LINE__, pathname)
216 #define assertFileNotExists(pathname) \
217 assertion_file_not_exists(__FILE__, __LINE__, pathname)
219 #define assertFileContents(data, data_size, pathname) \
220 assertion_file_contents(__FILE__, __LINE__, data, data_size, pathname)
222 #define assertFileContainsNoInvalidStrings(pathname, strings) \
223 assertion_file_contains_no_invalid_strings(__FILE__, __LINE__, pathname, strings)
224 #define assertFileMtime(pathname, sec, nsec) \
225 assertion_file_mtime(__FILE__, __LINE__, pathname, sec, nsec)
226 #define assertFileMtimeRecent(pathname) \
227 assertion_file_mtime_recent(__FILE__, __LINE__, pathname)
228 #define assertFileNLinks(pathname, nlinks) \
229 assertion_file_nlinks(__FILE__, __LINE__, pathname, nlinks)
230 #define assertFileSize(pathname, size) \
231 assertion_file_size(__FILE__, __LINE__, pathname, size)
232 #define assertFileMode(pathname, mode) \
233 assertion_file_mode(__FILE__, __LINE__, pathname, mode)
234 #define assertTextFileContents(text, pathname) \
235 assertion_text_file_contents(__FILE__, __LINE__, text, pathname)
236 #define assertFileContainsLinesAnyOrder(pathname, lines) \
237 assertion_file_contains_lines_any_order(__FILE__, __LINE__, pathname, lines)
238 #define assertIsDir(pathname, mode) \
239 assertion_is_dir(__FILE__, __LINE__, pathname, mode)
244 #define assertIsReg(pathname, mode) \
245 assertion_is_reg(__FILE__, __LINE__, pathname, mode)
246 #define assertIsSymlink(pathname, contents, isdir) \
247 assertion_is_symlink(__FILE__, __LINE__, pathname, contents, isdir)
266 #define assertUtimes(pathname, atime, atime_nsec, mtime, mtime_nsec) \
267 assertion_utimes(__FILE__, __LINE__, pathname, atime, atime_nsec, mtime, mtime_nsec)