Home
last modified time | relevance | path

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

12

/freebsd-11-stable/contrib/bmake/mk/
HDmeta2deps.sh247 ,C) CWD=$path cwd=$path ldir=$path
249 SB=`echo $CWD | sed 's,/obj.*,,'`
260 eval ldir=\${ldir_$pid:-$CWD} cwd=\${cwd_$pid:-$CWD}
273 test -d ${cwd:-/dev/null/no/such} || cwd=$CWD
340 $CWD) continue;; # ignore
/freebsd-11-stable/share/mk/
HDmeta2deps.sh248 ,C) CWD=$path cwd=$path ldir=$path
250 SB=`echo $CWD | sed 's,/obj.*,,'`
261 eval ldir=\${ldir_$pid:-$CWD} cwd=\${cwd_$pid:-$CWD}
274 test -d ${cwd:-/dev/null/no/such} || cwd=$CWD
339 $CWD) continue;; # ignore
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/
HDDependencyScanningWorker.cpp56 assert(!CWD.empty() && "empty CWD"); in getCurrentWorkingDirectory()
57 return CWD; in getCurrentWorkingDirectory()
61 CWD = Path.str(); in setCurrentWorkingDirectory()
66 std::string CWD; member in __anon600609e50111::ProxyFileSystemWithoutChdir
HDDependencyScanningTool.cpp31 const tooling::CompilationDatabase &Compilations, StringRef CWD) { in getDependencyFile() argument
154 Worker.computeDependencies(Input, CWD, Compilations, Consumer); in getDependencyFile()
163 Worker.computeDependencies(Input, CWD, Compilations, Consumer); in getDependencyFile()
/freebsd-11-stable/contrib/opie/
HDftpcmd.y174 ABOR DELE CWD LIST NLST SITE
386 | CWD check_login CRLF
391 | CWD check_login SP pathname CRLF
837 { "CWD", CWD, OSTR, 1, "[ <sp> directory-name ]" },
838 { "XCWD", CWD, OSTR, 1, "[ <sp> directory-name ]" },
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/
HDDependencyScanningTool.h36 StringRef CWD);
/freebsd-11-stable/crypto/heimdal/appl/ftp/ftpd/
HDftpcmd.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 ]" },
HDftpcmd.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-11-stable/contrib/llvm-project/llvm/tools/llvm-mc/
HDllvm-mc.cpp396 SmallString<128> CWD; in main() local
397 if (!sys::fs::current_path(CWD)) in main()
398 Ctx.setCompilationDir(CWD); in main()
/freebsd-11-stable/contrib/llvm-project/clang/tools/driver/
HDcc1as_main.cpp409 SmallString<128> CWD; in ExecuteAssembler() local
410 if (!sys::fs::current_path(CWD)) in ExecuteAssembler()
411 Ctx.setCompilationDir(CWD); in ExecuteAssembler()
/freebsd-11-stable/libexec/ftpd/
HDftpcmd.y107 ABOR DELE CWD LIST NLST SITE
510 | CWD check_login CRLF
516 | CWD check_login SP pathname CRLF
1100 { "CWD", CWD, OSTR, 1, "[ <sp> directory-name ]" },
1101 { "XCWD", CWD, OSTR, 1, "[ <sp> directory-name ]" },
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/
HDTooling.cpp482 if (auto CWD = OverlayFileSystem->getCurrentWorkingDirectory()) { in run() local
483 InitialWorkingDir = std::move(*CWD); in run()
486 << CWD.getError().message() << "\n"; in run()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
HDX86InstrExtension.td24 // FIXME: CWD/CDQ/CQO shouldn't Def the A register, but the fast register
27 def CWD : I<0x99, RawFrm, (outs), (ins),
HDX86InstructionSelector.cpp1581 {X86::IDIV16r, X86::CWD, Copy, X86::AX, S}, // SDiv in selectDivRem()
1582 {X86::IDIV16r, X86::CWD, Copy, X86::DX, S}, // SRem in selectDivRem()
HDX86ScheduleAtom.td594 def : InstRW<[AtomWrite01_4], (instrs CBW, CWD, CWDE, CDQ, CDQE, CQO,
HDX86SchedSandyBridge.td644 def: InstRW<[SBWriteResGroup15], (instrs CWD,
HDX86FastISel.cpp1888 { X86::IDIV16r, X86::CWD, Copy, X86::AX, S }, // SDiv in X86SelectDivRem()
1889 { X86::IDIV16r, X86::CWD, Copy, X86::DX, S }, // SRem in X86SelectDivRem()
HDX86SchedBroadwell.td737 def: InstRW<[BWWriteResGroup20], (instrs CWD,
HDX86SchedSkylakeClient.td732 def: InstRW<[SKLWriteResGroup23], (instrs CWD,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
HDVirtualFileSystem.cpp970 auto CWD = getCurrentWorkingDirectory(); in getRealPath() local
971 if (!CWD || CWD->empty()) in getRealPath()
/freebsd-11-stable/usr.sbin/cron/doc/
HDMAIL50 TERM, and the like; supply correct values for HOME, USER, CWD,
327 << delete TERM and TERMCAP; modify HOME, USER, and CWD; pass TZ and
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
HDClang.cpp624 } else if (llvm::ErrorOr<std::string> CWD = in addDebugCompDirArg() local
627 CmdArgs.push_back(Args.MakeArgString(*CWD)); in addDebugCompDirArg()
2192 auto CWD = D.getVFS().getCurrentWorkingDirectory(); in DumpCompilationDatabase() local
2193 if (!CWD) in DumpCompilationDatabase()
2194 CWD = "."; in DumpCompilationDatabase()
2195 CDB << "{ \"directory\": \"" << escape(*CWD) << "\""; in DumpCompilationDatabase()
/freebsd-11-stable/sys/cddl/dev/dtrace/x86/
HDdis_tables.c160 CWD, /* so data16 can be evaluated for cwd and variants */ enumerator
2220 /* [9,8] */ TNS("cXtX",CBW), TNS("cXtX",CWD), TNSx("lcall",SO), TNS("fwait",NORM),
3658 dp->it_adrmode != CWD && in dtrace_disx86()
4684 case CWD: in dtrace_disx86()
/freebsd-11-stable/usr.sbin/bsdconfig/share/media/
HDftp.subr693 # directory. First successful CWD wins.
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
HDCGDebugInfo.cpp506 SmallString<256> CWD; in getCurrentDirname() local
507 llvm::sys::fs::current_path(CWD); in getCurrentDirname()
508 return CWDName = internString(CWD); in getCurrentDirname()

12