Home
last modified time | relevance | path

Searched refs:CWD (Results 1 – 25 of 50) sorted by relevance

12

/freebsd/tests/sys/cddl/zfs/tests/snapshot/
H A Dsnapshot_002_pos.ksh61 if [[ -d $CWD ]]; then
62 cd $CWD || log_fail "Could not cd $CWD"
99 CWD=$PWD
102 cd $CWD || log_fail "Could not cd $CWD"
111 CWD=$PWD
114 cd $CWD || log_fail "Could not cd $CWD"
119 CWD=$PWD
126 cd $CWD || log_fail "Could not cd $CWD"
H A Dsnapshot_006_pos.ksh60 if [[ -d $CWD ]]; then
61 cd $CWD || log_fail "Could not cd $CWD"
97 CWD=$PWD
100 cd $CWD || log_fail "Could not cd $CWD"
109 CWD=$PWD
112 cd $CWD || log_fail "Could not cd $CWD"
117 CWD=$PWD
124 cd $CWD || log_fail "Could not cd $CWD"
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/snapshot/
H A Dsnapshot_006_pos.ksh53 if [[ -d $CWD ]]; then
54 log_must cd $CWD
93 CWD=$PWD
96 log_must cd $CWD
105 CWD=$PWD
108 log_must cd $CWD
112 CWD=$PWD
119 log_must cd $CWD
H A Dsnapshot_002_pos.ksh54 [ -d $CWD ] && log_must cd $CWD
84 CWD=$PWD
87 log_must cd $CWD
96 CWD=$PWD
99 log_must cd $CWD
103 CWD=$PWD
110 log_must cd $CWD
/freebsd/contrib/bmake/mk/
H A Dmeta2deps.sh13 # To do this, we extract the 'CWD' record as well as all the
22 # CWD "cwd"
38 # To simplify the logic the 'CWD' line is made to look like a
251 sed -e 's,^CWD,C C,;/^[#CREFLMVX] /!d' -e "s,',,g" |
257 # CWD is bmake's cwd
259 ,C) CWD=$path cwd=$path ldir=$path
261 SB=`echo $CWD | sed 's,/obj.*,,'`
283 eval ldir=\${ldir_$pid:-$CWD} cwd=\${cwd_$pid:-$CWD}
298 test -d ${cwd:-/dev/null/no/such} || cwd=$CWD
[all...]
/freebsd/share/mk/
H A Dmeta2deps.sh13 # To do this, we extract the 'CWD' record as well as all the
22 # CWD "cwd"
38 # To simplify the logic the 'CWD' line is made to look like a
251 sed -e 's,^CWD,C C,;/^[#CREFLMVX] /!d' -e "s,',,g" |
257 # CWD is bmake's cwd
259 ,C) CWD=$path cwd=$path ldir=$path
261 SB=`echo $CWD | sed 's,/obj.*,,'`
283 eval ldir=\${ldir_$pid:-$CWD} cwd=\${cwd_$pid:-$CWD}
298 test -d ${cwd:-/dev/null/no/such} || cwd=$CWD
[all...]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_import/
H A Dzpool_import_missing_002_pos.ksh110 cd $CWD || log_fail "Unable change directory to $CWD"
123 CWD=$PWD
H A Dzpool_import_missing_003_pos.ksh138 log_must cd $CWD
146 CWD=$PWD
H A Dzpool_import_missing_001_pos.ksh111 CWD=$PWD
/freebsd/tests/sys/cddl/zfs/tests/cli_root/zpool_import/
H A Dzpool_import_missing_003_pos.ksh136 cd $CWD || log_fail "Unable change directory to $CWD"
144 CWD=$PWD
H A Dzpool_import_missing_001_pos.ksh114 CWD=$PWD
/freebsd/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/
H A DDependencyScanningFilesystem.cpp430 llvm::ErrorOr<std::string> CWD = in updateWorkingDirForCacheLookup() local
432 if (!CWD) { in updateWorkingDirForCacheLookup()
433 WorkingDirForCacheLookup = CWD.getError(); in updateWorkingDirForCacheLookup()
434 } else if (!llvm::sys::path::is_absolute_gnu(*CWD)) { in updateWorkingDirForCacheLookup()
437 WorkingDirForCacheLookup = *CWD; in updateWorkingDirForCacheLookup()
H A DModuleDepCollector.cpp400 llvm::ErrorOr<std::string> CWD = VFS.getCurrentWorkingDirectory(); in getModuleContextHash() local
401 if (CWD) in getModuleContextHash()
402 HashBuilder.add(*CWD); in getModuleContextHash()
/freebsd/crypto/heimdal/appl/ftp/ftpd/
H A Dftpcmd.y101 ABOR DELE CWD LIST NLST SITE
364 | CWD CRLF check_login
373 | CWD SP pathname CRLF check_login
962 { "CWD", CWD, OSTR, 1, "[ <sp> directory-name ]" },
963 { "XCWD", CWD, OSTR, 1, "[ <sp> directory-name ]" },
H A Dftpcmd.c110 CWD = 299, enumerator
195 #define CWD 299 macro
3015 { "CWD", CWD, OSTR, 1, "[ <sp> directory-name ]" },
3016 { "XCWD", CWD, OSTR, 1, "[ <sp> directory-name ]" },
/freebsd/contrib/llvm-project/llvm/tools/llvm-mc/
H A Dllvm-mc.cpp472 SmallString<128> CWD; in main() local
473 if (!sys::fs::current_path(CWD)) in main()
474 Ctx.setCompilationDir(CWD); in main()
/freebsd/libexec/ftpd/
H A Dftpcmd.y98 ABOR DELE CWD LIST NLST SITE
501 | CWD check_login CRLF
507 | CWD check_login SP pathname CRLF
1091 { "CWD", CWD, OSTR, 1, "[ <sp> directory-name ]" },
1092 { "XCWD", CWD, OSTR, 1, "[ <sp> directory-name ]" },
/freebsd/contrib/llvm-project/clang/tools/driver/
H A Dcc1as_main.cpp508 SmallString<128> CWD; in ExecuteAssemblerImpl() local
509 if (!sys::fs::current_path(CWD)) in ExecuteAssemblerImpl()
510 Ctx.setCompilationDir(CWD); in ExecuteAssemblerImpl()
/freebsd/contrib/llvm-project/clang/lib/Tooling/
H A DTooling.cpp550 if (auto CWD = OverlayFileSystem->getCurrentWorkingDirectory()) { in run() local
551 InitialWorkingDir = std::move(*CWD); in run()
554 << CWD.getError().message() << "\n"; in run()
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/Coverage/
H A DCoverageMappingReader.cpp165 StringRef CWD; in readUncompressed() local
166 if (auto Err = readString(CWD)) in readUncompressed()
168 Filenames.push_back(CWD.str()); in readUncompressed()
181 P.assign(CWD); in readUncompressed()
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DFrontendAction.cpp841 SmallVector<std::pair<OptionalFileEntryRef, DirectoryEntryRef>, 1> CWD; in BeginSourceFile() local
842 CWD.push_back({std::nullopt, *Dir}); in BeginSourceFile()
847 nullptr, nullptr, CWD, nullptr, nullptr, nullptr, in BeginSourceFile()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstrExtension.td24 // FIXME: CWD/CDQ/CQO shouldn't Def the A register, but the fast register
27 def CWD : I<0x99, RawFrm, (outs), (ins),
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DVirtualFileSystem.h788 CWD, enumerator
1016 RootRelativeKind RootRelative = RootRelativeKind::CWD;
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DVirtualFileSystem.cpp1180 auto CWD = getCurrentWorkingDirectory(); in getRealPath() local
1181 if (!CWD || CWD->empty()) in getRealPath()
1680 return RedirectingFileSystem::RootRelativeKind::CWD; in parseRootRelativeKind()
H A DCommandLine.cpp1260 if (auto CWD = FS->getCurrentWorkingDirectory()) { in expandResponseFiles() local
1261 CurrDir = *CWD; in expandResponseFiles()
1264 CWD.getError(), Twine("cannot get absolute path for: ") + FName); in expandResponseFiles()

12