Searched refs:Cmd (Results 1 - 25 of 34) sorted by path

12

/freebsd-11-stable/crypto/openssl/util/
H A Dpod2man.pl847 ($Cmd, $_) = split(' ', $_, 2);
850 if ($Cmd eq 'head1') {
853 elsif ($Cmd eq 'head2') {
856 elsif ($Cmd eq 'item') {
867 if ($Cmd eq 'cut') {
870 elsif ($Cmd eq 'head1') {
876 elsif ($Cmd eq 'head2') {
880 elsif ($Cmd eq 'over') {
884 elsif ($Cmd eq 'back') {
889 elsif ($Cmd e
[all...]
/freebsd-11-stable/sys/contrib/dev/acpica/os_specific/service_layers/
H A Dosgendbg.c192 char *Cmd = Ptr; local
217 AcpiUtSafeStrncpy (AcpiGbl_DbLineBuf, Cmd, ACPI_DB_LINE_BUFFER_SIZE);
219 Cmd = Ptr;
/freebsd-11-stable/sys/dev/hptmv/
H A Datapi.h379 #define mIssueCommand(IOPort,Cmd) OutPort(&IOPort->Command, (UCHAR)(Cmd))
H A Dentry.c1056 fDeReadWrite(PDevice pDev, ULONG Lba, UCHAR Cmd, void *tmpBuffer) argument
1058 return mvReadWrite(pDev->mv, Lba, Cmd, tmpBuffer);
H A Dglobal.h186 int HPTLIBAPI fDeReadWrite(PDevice pDev, ULONG Lba, UCHAR Cmd, void *tmpBuffer);
H A DmvStorageDev.h213 MV_BOOLEAN HPTLIBAPI mvReadWrite(MV_SATA_CHANNEL *pSataChannel, LBA_T Lba, UCHAR Cmd, void *tmpBuffer);
/freebsd-11-stable/sys/dev/mwl/
H A Dmwlhal.c100 pCmd->CmdHdr.Cmd = htole16(cmd); \
2324 retval = mwlExecuteCmd(mh, le16toh(pCmd->Cmd));
2752 device_printf(mh->mh_dev, "Cmd %s Length %d SeqNum %d MacId %d",
2753 mwlcmdname(le16toh(h->Cmd) &~ 0x8000), len, h->SeqNum, h->MacId);
2755 device_printf(mh->mh_dev, "Cmd %s Length %d SeqNum %d",
2756 mwlcmdname(le16toh(h->Cmd) &~ 0x8000), len, le16toh(h->SeqNum));
H A Dmwlreg.h430 uint16_t Cmd; member in struct:__anon11060
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Driver/
H A DDriver.h277 void setUpResponseFiles(Compilation &C, Command &Cmd);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/
H A DDriver.cpp1279 Command Cmd = FailingCommand; local
1410 Cmd.Print(ScriptOS, "\n", /*Quote=*/true);
1411 Cmd.Print(ScriptOS, "\n", /*Quote=*/true, &CrashInfo);
1446 void Driver::setUpResponseFiles(Compilation &C, Command &Cmd) { argument
1451 if (Cmd.getCreator().getResponseFilesSupport() == Tool::RF_None ||
1452 llvm::sys::commandLineFitsWithinSystemLimits(Cmd.getExecutable(),
1453 Cmd.getArguments()))
1457 Cmd.setResponseFile(C.addTempFile(C.getArgs().MakeArgString(TmpName)));
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DDarwin.cpp659 std::unique_ptr<Command> Cmd = local
661 Cmd->setInputFileList(std::move(InputFileList));
662 C.addCommand(std::move(Cmd));
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/
H A DCreateInvocationFromCommandLine.cpp86 const driver::Command &Cmd = cast<driver::Command>(*Jobs.begin()); local
87 if (StringRef(Cmd.getCreator().getName()) != "clang") {
92 const ArgStringList &CCArgs = Cmd.getArguments();
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/
H A DCompilationDatabase.cpp309 for (const auto &Cmd : Jobs) {
313 if (Cmd.getSource().getKind() == driver::Action::AssembleJobClass ||
314 Cmd.getSource().getKind() == driver::Action::BackendJobClass ||
315 Cmd.getSource().getKind() == driver::Action::CompileJobClass) {
316 CompileAnalyzer.run(&Cmd.getSource());
H A DExpandResponseFilesCompilationDatabase.cpp50 for (auto &Cmd : Cmds) {
53 Argv.reserve(Cmd.CommandLine.size());
54 for (auto &Arg : Cmd.CommandLine) {
63 llvm::StringRef(Cmd.Directory));
66 Cmd.CommandLine = std::move(ExpandedArgv);
H A DGuessTargetAndModeCompilationDatabase.cpp40 for (auto &Cmd : Cmds) {
41 if (Cmd.CommandLine.empty())
43 addTargetAndModeForProgramName(Cmd.CommandLine, Cmd.CommandLine.front());
H A DInterpolatingCompilationDatabase.cpp125 CompileCommand Cmd; member in struct:clang::tooling::__anon926::TransferableCommand
134 : Cmd(std::move(C)), Type(guessType(Cmd.Filename)),
135 ClangCLMode(checkIsCLMode(Cmd.CommandLine)) {
136 std::vector<std::string> OldArgs = std::move(Cmd.CommandLine);
137 Cmd.CommandLine.clear();
154 Cmd.CommandLine.emplace_back(OldArgs.front());
190 Cmd.CommandLine.insert(Cmd.CommandLine.end(),
205 CompileCommand Result = Cmd;
[all...]
H A DJSONCompilationDatabase.cpp429 auto Cmd = CompileCommandRef(Directory, File, *Command, Output); local
430 IndexByFile[NativeFilePath].push_back(Cmd);
431 AllCommands.push_back(Cmd);
H A DTooling.cpp131 const auto &Cmd = cast<driver::Command>(*Jobs.begin()); local
132 if (StringRef(Cmd.getCreator().getName()) != "clang") {
137 return &Cmd.getArguments();
/freebsd-11-stable/contrib/llvm-project/clang/tools/driver/
H A Dcc1gen_reproducer_main.cpp127 if (const Command *Cmd = dyn_cast<Command>(&J)) {
130 *C, *Cmd, generateReproducerMetaInfo(Info), &Report);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerDataFlowTrace.cpp263 Command Cmd;
264 Cmd.addArgument(DFTBinary);
265 Cmd.addArgument(F.File);
266 Cmd.addArgument(OutPath);
267 Printf("CMD: %s\n", Cmd.toString().c_str());
268 ExecuteCommand(Cmd);
273 Command Cmd;
274 Cmd.addArgument(DFTBinary);
275 Cmd.setOutputFile(FunctionsTxtPath);
276 ExecuteCommand(Cmd);
[all...]
H A DFuzzerDriver.cpp228 Command Cmd(BaseCmd);
229 Cmd.setOutputFile(Log);
230 Cmd.combineOutAndErr();
232 std::string CommandLine = Cmd.toString();
235 int ExitCode = ExecuteCommand(Cmd);
247 std::string Cmd; local
251 Cmd += S + " ";
253 return Cmd;
260 Command Cmd(Args);
261 Cmd
[all...]
H A DFuzzerFork.cpp66 Command Cmd; member in struct:fuzzer::FuzzJob
118 Command Cmd(Args);
119 Cmd.removeFlag("fork");
120 Cmd.removeFlag("runs");
121 Cmd.removeFlag("collect_data_flow");
123 Cmd.removeArgument(C);
124 Cmd.addFlag("reload", "0"); // working in an isolated dir, no reload.
125 Cmd.addFlag("print_final_stats", "1");
126 Cmd.addFlag("print_funcs", "0"); // no need to spend time symbolizing.
127 Cmd
[all...]
H A DFuzzerMerge.cpp369 Command Cmd(BaseCmd);
370 Cmd.addFlag("merge_control_file", CFPath);
371 Cmd.addFlag("merge_inner", "1");
373 Cmd.setOutputFile(getDevNull());
374 Cmd.combineOutAndErr();
376 auto ExitCode = ExecuteCommand(Cmd);
H A DFuzzerUtil.h59 int ExecuteCommand(const Command &Cmd);
H A DFuzzerUtilDarwin.cpp41 int ExecuteCommand(const Command &Cmd) { argument
42 std::string CmdLine = Cmd.toString();

Completed in 489 milliseconds

12