Lines Matching refs:name
98 execute_function(char *name, int (*callback) (const char *), char *buffer,
105 fprintf(temp, "TEST: %s fails with ENAMETOOLONG\n", name);
113 tst_resm(TFAIL, "%s callback did not work correctly", name);
120 name, expected, result);
125 tst_resm(TFAIL, "%s failed: errno should be %i but is %i", name,
133 test_long_file_name(char *name, int (*callback) (const char *), int expected)
149 execute_function(name, callback, buffer, expected);
154 test_long_component_name(char *name, int (*callback) (const char *),
171 execute_function(name, callback, buffer, expected);
176 test_ENAMETOOLONG_path(char *name, int (*callback) (const char *), int expected)
234 execute_function(name, callback, path, expected);
239 test_ENAMETOOLONG_name(char *name, int (*callback) (const char *), int expected)
241 test_long_file_name(name, callback, expected);
242 test_long_component_name(name, callback, expected);
245 void test_ENOENT_empty(char *name, int (*callback) (const char *), int expected)
262 name, ENOENT, errno);
269 name, expected, s2);
275 void test_ENOTDIR(char *name, int (*callback) (const char *), int expected)
312 name, ENOTDIR, errno);
319 name, expected, s2);
327 test_ENOENT_nofile(char *name, int (*callback) (const char *), int expected)
341 name, ENOENT, errno);
348 name, expected, s2);