Home | History | Annotate | Download | only in c063

Lines Matching refs:abs_path

184 	char abs_path[MAXPATHLEN * 2];
191 snprintf(abs_path, sizeof(abs_path), "%s/%s", cwd, FILE);
192 ATF_REQUIRE(faccessat(-1, abs_path, W_OK, 0) == 0);
206 char abs_path[MAXPATHLEN * 2];
213 snprintf(abs_path, sizeof(abs_path), "%s/%s", cwd, DIR);
214 ATF_REQUIRE(faccessat(dfd, abs_path, W_OK, 0) == 0);
227 char abs_path[MAXPATHLEN * 2];
232 snprintf(abs_path, sizeof(abs_path), "%s/%s", cwd, DIR);
233 ATF_REQUIRE(faccessat(AT_FDCWD, abs_path, W_OK, 0) == 0);