/freebsd/tools/tools/zfsboottest/ |
H A D | zfsboottest.sh | 44 startdir="/boot" 61 if [ ! -d "${mountpoint}${startdir}" ]; then 62 echo "The \"${mountpoint}${startdir}\" directory doesn't exist." >&2 89 echo "zfsboottest.sh is reading all the files in ${mountpoint}${startdir} using" 96 "${zfsboottest}" ${vdevs} - `find "${mountpoint}${startdir}" -type f | sed "s@^${mountpoint}@@"` | … 97 find "${mountpoint}${startdir}" -type f | xargs md5 -r | sed "s@ ${mountpoint}@ @" | egrep '^[0-9a-…
|
/freebsd/contrib/lib9p/pytest/ |
H A D | p9conn.py | 1341 def _pathsplit(self, path, startdir, allow_empty=False): argument 1345 if path.startswith(b'/') or startdir is None: 1346 startdir = self.rootfid 1350 return components, startdir 1352 def uxlookup(self, path, startdir=None): argument 1358 components, startdir = self._pathsplit(path, startdir, allow_empty=True) 1359 return self.lookup_last(startdir, components) 1362 startdir=None, filetype=None): argument 1384 components, startdir = self._pathsplit(path, startdir, 1388 fid, qid = self.lookup_last(startdir, components) [all …]
|
H A D | client.py | 588 clnt.uxmkdir(b'd1', 0o777, tstate.gid, startdir=dirfid) 589 clnt.uxmkdir(b'd1/sub', 0o777, tstate.gid, startdir=dirfid) 595 0o666, startdir=subfid, gid=tstate.gid) 614 rofid, _, _, _ = clnt.uxopen(b'file', os.O_RDONLY, startdir=subfid)
|
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/ |
H A D | tst.corruptenv.ksh | 50 startdir="$PWD" 104 cd "$startdir"
|
/freebsd/crypto/openssh/contrib/aix/ |
H A D | buildbff.sh | 23 startdir=`pwd` 361 mv ../$PKGNAME-$VERSION.bff $startdir 362 cd $startdir
|
/freebsd/contrib/mandoc/ |
H A D | main.c | 147 int startdir; in main() local 657 startdir = open(".", O_RDONLY | O_DIRECTORY); in main() 659 process_onefile(mp, res + i, startdir, &outst, &conf); in main() 663 if (startdir != -1) { in main() 664 (void)fchdir(startdir); in main() 665 close(startdir); in main() 912 process_onefile(struct mparse *mp, struct manpage *resp, int startdir, in process_onefile() argument 924 else if (startdir != -1) in process_onefile() 925 (void)fchdir(startdir); in process_onefile()
|
H A D | mandocdb.c | 2307 static char startdir[PATH_MAX]; in set_basedir() local 2319 if (getcwd(startdir, sizeof(startdir)) == NULL) { in set_basedir() 2321 (void)strlcpy(startdir, strerror(errno), in set_basedir() 2322 sizeof(startdir)); in set_basedir() 2342 say("", "getcwd: %s", startdir); in set_basedir() 2345 if (chdir(startdir) == -1) { in set_basedir() 2347 say("", "&chdir %s", startdir); in set_basedir()
|
/freebsd/sys/sys/ |
H A D | namei.h | 243 #define NDINIT_ALL(ndp, op, flags, segflg, namep, dirfd, startdir, rightsp) \ argument 255 _ndp->ni_startdir = startdir; \
|
/freebsd/crypto/openssh/ |
H A D | sftp.c | 1552 const char *startdir, int err_abort, int echo_command) in parse_dispatch_command() argument 1645 path1 = xstrdup(startdir); in parse_dispatch_command() 2211 char *dir = NULL, *startdir = NULL; in interactive_loop() local 2254 startdir = xstrdup(remote_path); in interactive_loop() 2265 &remote_path, startdir, 1, 0) != 0) { in interactive_loop() 2267 free(startdir); in interactive_loop() 2279 &remote_path, startdir, 1, 0); in interactive_loop() 2281 free(startdir); in interactive_loop() 2344 startdir, batchmode, !interactive && el == NULL); in interactive_loop() 2350 free(startdir); in interactive_loop()
|