Searched defs:cwd (Results 1 - 4 of 4) sorted by relevance

/bind-9.11.3/lib/isc/unix/
H A Dfile.c536 char *cwd; local
542 cwd = getcwd(dirname, length);
544 if (cwd == NULL) {
/bind-9.11.3/unit/atf-src/atf-c/detail/
H A Dfs.c773 char *cwd; local
776 cwd = getcwd(NULL, 0);
778 cwd = getcwd(NULL, MAXPATHLEN);
780 if (cwd == NULL) {
785 err = atf_fs_path_init_fmt(p, "%s", cwd);
786 free(cwd);
/bind-9.11.3/unit/atf-src/tools/
H A Dfs.cpp733 std::auto_ptr< char > cwd; local
735 cwd.reset(getcwd(NULL, 0));
737 cwd.reset(getcwd(NULL, MAXPATHLEN));
739 if (cwd.get() == NULL)
743 return path(cwd.get());
/bind-9.11.3/bin/named/
H A Dserver.c1058 char cwd[PATH_MAX]; local
1060 if (getcwd(cwd, sizeof(cwd)) == NULL) {
1069 if (!isc_file_isdirwritable(cwd)) {
1073 "is not writable", cwd);

Completed in 123 milliseconds