HomeSort by: relevance | last modified time | path
    Searched defs:abs_path (Results 1 - 3 of 3) sorted by relevancy

  /src/tests/lib/libc/c063/
t_faccessat.c 184 char abs_path[MAXPATHLEN * 2]; local
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]; local
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]; local
232 snprintf(abs_path, sizeof(abs_path), "%s/%s", cwd, DIR)
    [all...]
  /src/usr.sbin/inetd/
parse.c 1345 char *abs_path = realpath(glob_path, NULL); local
1347 if (abs_path == NULL) {
1353 DPRINTCONF("Absolute path '%s'", abs_path);
1356 if (strcmp(cur->abs, abs_path) == 0) {
1359 free(abs_path);
1363 free(abs_path);
  /src/external/bsd/atf/dist/tools/
fs.cpp 252 const impl::path& abs_path = in_path.is_absolute() ? local
257 if (unmount(abs_path.c_str(), 0) == -1) {

Completed in 105 milliseconds