| /freebsd-12.1/contrib/llvm/tools/clang/lib/AST/ |
| H A D | CommentSema.cpp | 64 Command->setArgs(Args); in actOnBlockCommandArgs() 75 checkReturnsCommand(Command); in actOnBlockCommandFinish() 85 ParamCommandComment *Command = in actOnParamCommandStart() local 90 Diag(Command->getLocation(), in actOnParamCommandStart() 95 return Command; in actOnParamCommandStart() 296 return Command; in actOnTParamCommandStart() 330 PrevCommand = Command; in actOnTParamCommandParamNameArg() 571 DiagLoc = Command->getArgRange(Command->getNumArgs() - 1).getEnd(); in checkBlockCommandEmptyParagraph() 618 Diag(Command->getLocation(), in checkReturnsCommand() 630 BriefCommand = Command; in checkBlockCommandDuplicate() [all …]
|
| H A D | CommentCommandTraits.cpp | 59 auto ConsiderCorrection = [&](const CommandInfo *Command) { in getTypoCorrectCommandInfo() argument 60 StringRef Name = Command->Name; in getTypoCorrectCommandInfo() 70 BestCommand.push_back(Command); in getTypoCorrectCommandInfo() 74 for (const auto &Command : Commands) in getTypoCorrectCommandInfo() local 75 ConsiderCorrection(&Command); in getTypoCorrectCommandInfo() 77 for (const auto *Command : RegisteredCommands) in getTypoCorrectCommandInfo() local 78 if (!Command->IsUnknownCommand) in getTypoCorrectCommandInfo() 79 ConsiderCorrection(Command); in getTypoCorrectCommandInfo()
|
| /freebsd-12.1/sys/contrib/dev/acpica/components/debugger/ |
| H A D | dbhistry.c | 168 char *Command; member 208 if (AcpiGbl_HistoryBuffer[AcpiGbl_NextHistoryIndex].Command != NULL) in AcpiDbAddToHistory() 211 AcpiGbl_HistoryBuffer[AcpiGbl_NextHistoryIndex].Command); in AcpiDbAddToHistory() 216 Command); in AcpiDbAddToHistory() 217 AcpiGbl_HistoryBuffer[AcpiGbl_NextHistoryIndex].Command = in AcpiDbAddToHistory() 223 AcpiGbl_HistoryBuffer[AcpiGbl_NextHistoryIndex].Command = in AcpiDbAddToHistory() 227 strcpy (AcpiGbl_HistoryBuffer[AcpiGbl_NextHistoryIndex].Command, in AcpiDbAddToHistory() 285 if (AcpiGbl_HistoryBuffer[HistoryIndex].Command) in AcpiDbDisplayHistory() 289 AcpiGbl_HistoryBuffer[HistoryIndex].Command); in AcpiDbDisplayHistory() 365 return (AcpiGbl_HistoryBuffer[HistoryIndex].Command); in AcpiDbGetHistoryByIndex()
|
| H A D | dbinput.c | 176 const char *Command, 181 char *Command); 185 const char *Command, 479 const char *Command, in AcpiDbMatchCommandHelp() argument 500 while ((*Command) && (*Invocation) && (*Invocation != ' ')) in AcpiDbMatchCommandHelp() 508 Command++; in AcpiDbMatchCommandHelp() 541 const char *Command, in AcpiDbDisplayCommandInfo() argument 551 Matched = AcpiDbMatchCommandHelp (Command, Next); in AcpiDbDisplayCommandInfo() 578 char *Command) in AcpiDbDisplayHelp() argument 583 if (!Command) in AcpiDbDisplayHelp() [all …]
|
| /freebsd-12.1/contrib/compiler-rt/lib/fuzzer/ |
| H A D | FuzzerCommand.h | 26 class Command final { 35 Command() : CombinedOutAndErr(false) {} in Command() function 37 explicit Command(const Vector<std::string> &ArgsToAdd) in Command() function 40 explicit Command(const Command &Other) in Command() function 44 Command &operator=(const Command &Other) { 51 ~Command() {} in ~Command() 156 Command(Command &&Other) = delete; 157 Command &operator=(Command &&Other) = delete;
|
| H A D | FuzzerUtilWindows.cpp | 151 FILE *OpenProcessPipe(const char *Command, const char *Mode) { in OpenProcessPipe() argument 152 return _popen(Command, Mode); in OpenProcessPipe() 155 int ExecuteCommand(const Command &Cmd) { in ExecuteCommand() 184 if (ExecuteCommand(Command(command_vector)) == 0) in DisassembleCmd()
|
| H A D | FuzzerUtil.h | 60 int ExecuteCommand(const Command &Cmd); 62 FILE *OpenProcessPipe(const char *Command, const char *Mode);
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Driver/ |
| H A D | Job.h | 42 class Command { 90 Command(const Action &Source, const Tool &Creator, const char *Executable, 95 Command(const Command &) = default; 96 virtual ~Command() = default; 138 class FallbackCommand : public Command { 144 std::unique_ptr<Command> Fallback_); 153 std::unique_ptr<Command> Fallback; 157 class ForceSuccessCommand : public Command { 174 using list_type = SmallVector<std::unique_ptr<Command>, 4>; 187 void addJob(std::unique_ptr<Command> J) { Jobs.push_back(std::move(J)); } in addJob()
|
| H A D | Compilation.h | 206 void addCommand(std::unique_ptr<Command> C) { Jobs.addJob(std::move(C)); } in addCommand() 280 int ExecuteCommand(const Command &C, const Command *&FailingCommand) const; 288 SmallVectorImpl<std::pair<int, const Command *>> &FailingCommands) const;
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/ |
| H A D | CommentSema.h | 95 void actOnBlockCommandArgs(BlockCommandComment *Command, 98 void actOnBlockCommandFinish(BlockCommandComment *Command, 106 void actOnParamCommandDirectionArg(ParamCommandComment *Command, 111 void actOnParamCommandParamNameArg(ParamCommandComment *Command, 116 void actOnParamCommandFinish(ParamCommandComment *Command, 124 void actOnTParamCommandParamNameArg(TParamCommandComment *Command, 129 void actOnTParamCommandFinish(TParamCommandComment *Command, 185 void checkBlockCommandEmptyParagraph(BlockCommandComment *Command); 187 void checkReturnsCommand(const BlockCommandComment *Command); 191 void checkBlockCommandDuplicate(const BlockCommandComment *Command);
|
| H A D | CommentCommands.td | 5 class Command<string name> { 33 class InlineCommand<string name> : Command<name> { 37 class BlockCommand<string name> : Command<name> { 45 class VerbatimBlockCommand<string name> : Command<name> { 51 def Begin : Command<name> { 56 def End : Command<endCommandName> { 61 class VerbatimLineCommand<string name> : Command<name> {
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Driver/ |
| H A D | Job.cpp | 37 Command::Command(const Action &Source, const Tool &Creator, in Command() function in Command 102 void Command::printArg(raw_ostream &OS, StringRef Arg, bool Quote) { in printArg() 120 void Command::writeResponseFile(raw_ostream &OS) const { in writeResponseFile() 146 void Command::buildArgvForResponseFile( in buildArgvForResponseFile() 305 void Command::setResponseFile(const char *FileName) { in setResponseFile() 317 int Command::Execute(ArrayRef<llvm::Optional<StringRef>> Redirects, in Execute() 378 std::unique_ptr<Command> Fallback_) in FallbackCommand() 379 : Command(Source_, Creator_, Executable_, Arguments_, Inputs), in FallbackCommand() 384 Command::Print(OS, "", Quote, CrashInfo); in Print() 418 : Command(Source_, Creator_, Executable_, Arguments_, Inputs) {} in ForceSuccessCommand() [all …]
|
| H A D | Compilation.cpp | 152 int Compilation::ExecuteCommand(const Command &C, in ExecuteCommand() 153 const Command *&FailingCommand) const { in ExecuteCommand() 197 using FailingCommandList = SmallVectorImpl<std::pair<int, const Command *>>; 221 static bool InputsOk(const Command &C, in InputsOk() 235 const Command *FailingCommand = nullptr; in ExecuteJobs()
|
| /freebsd-12.1/contrib/llvm/tools/llvm-xray/ |
| H A D | xray-registry.cpp | 26 HandlerType Command) { in CommandRegistration() argument 29 assert(Command && "Attempting to register an empty std::function<Error()>"); in CommandRegistration() 30 (*Commands)[SC] = Command; in CommandRegistration()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Tooling/ |
| H A D | JSONCompilationDatabase.cpp | 304 llvm::Optional<std::vector<llvm::yaml::ScalarNode *>> Command; in parse() local 332 Command = std::vector<llvm::yaml::ScalarNode *>(); in parse() 339 Command->push_back(Scalar); in parse() 342 if (!Command) in parse() 343 Command = std::vector<llvm::yaml::ScalarNode *>(1, ValueString); in parse() 358 if (!Command) { in parse() 378 auto Cmd = CompileCommandRef(Directory, File, *Command, Output); in parse()
|
| H A D | CommonOptionsParser.cpp | 78 for (CompileCommand &Command : Commands) in adjustCommands() 80 Command.CommandLine = Adjuster(Command.CommandLine, Command.Filename); in adjustCommands()
|
| /freebsd-12.1/usr.sbin/pppctl/ |
| H A D | pppctl.c | 382 char Command[LINELEN]; in main() local 562 Command[sizeof(Command)-1] = '\0'; in main() 564 if (len && len < sizeof(Command)-1) in main() 565 strcpy(Command+len++, " "); in main() 566 strncpy(Command+len, argv[arg], sizeof(Command)-len-1); in main() 567 len += strlen(Command+len); in main() 645 start = Command; in main()
|
| /freebsd-12.1/lib/libfetch/ |
| H A D | ftp.errors | 10 200 OK Command okay 11 202 PROTO Command not implemented, superfluous at this site 37 502 PROTO Command not implemented 39 504 PROTO Command not implemented for that parameter
|
| /freebsd-12.1/sys/dev/hptmv/ |
| H A D | command.h | 40 UCHAR Command; /* IDE_COMMAND_READ, _WRITE, _VERIFY */ member 72 UCHAR Command; /* CTRL_CMD_XXX */ member 89 UCHAR Command; /* CTRL_CMD_XXX */ member 208 } Command; typedef
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Frontend/ |
| H A D | CreateInvocationFromCommandLine.cpp | 82 if (Jobs.size() == 0 || !isa<driver::Command>(*Jobs.begin()) || in createInvocationFromCommandLine() 91 const driver::Command &Cmd = cast<driver::Command>(*Jobs.begin()); in createInvocationFromCommandLine()
|
| /freebsd-12.1/sys/dev/aacraid/ |
| H A D | aacraid_reg.h | 78 u_int16_t Command; member 1173 u_int32_t Command; member 1212 u_int32_t Command; member 1228 u_int32_t Command; member 1236 u_int32_t Command; member 1266 u_int32_t Command; member 1360 u_int32_t Command; member 1383 u_int32_t Command; /* not FSACommand! */ member 1391 u_int32_t Command; member 1406 u_int32_t Command; /* not FSACommand! */ member [all …]
|
| /freebsd-12.1/sys/dev/ce/ |
| H A D | ceddk.c | 257 req->Command = TAU32_Rx_Data; in ce_on_receive() 389 rreq->Command = TAU32_Rx_Data; in ce_on_config_stop() 488 req->Command = TAU32_Configure_E1; in ce_init_board() 502 req->Command = TAU32_Configure_E1; in ce_init_board() 572 req->Command = TAU32_Rx_Data; in ce_start_chan() 637 req->Command = 0; in ce_stop_chan() 972 req->Command = TAU32_Configure_E1; in ce_set_baud() 999 req->Command = TAU32_Configure_E1; in ce_set_lloop() 1026 req->Command = TAU32_Configure_E1; in ce_set_rloop() 1053 req->Command = TAU32_Configure_E1; in ce_set_higain() [all …]
|
| /freebsd-12.1/sys/dev/aac/ |
| H A D | aacreg.h | 143 u_int16_t Command; member 1169 u_int32_t Command; member 1185 u_int32_t Command; member 1194 u_int32_t Command; member 1224 u_int32_t Command; member 1320 u_int32_t Command; /* not FSACommand! */ member 1328 u_int32_t Command; member 1343 u_int32_t Command; /* not FSACommand! */ member 1352 u_int32_t Command; /* not FSACommand! */ member 1381 u_int32_t Command; member
|
| /freebsd-12.1/crypto/heimdal/appl/telnet/telnet/ |
| H A D | commands.c | 53 } Command; typedef 1978 Command *c; in cmdrc() 2294 static Command cmdtab[] = { 2323 static Command cmdtab2[] = { 2349 static Command 2352 Command *cm; in getcmd() 2354 if ((cm = (Command *) genget(name, (char **) cmdtab, sizeof(Command)))) in getcmd() 2356 return (Command *) genget(name, (char **) cmdtab2, sizeof(Command)); in getcmd() 2362 Command *c; in command() 2435 Command *c; in help() [all …]
|
| /freebsd-12.1/contrib/gdb/gdb/doc/ |
| H A D | gdb.info-2 | 3944 * Command Files:: Command files 5218 GDB Command 5256 GDB Command 5297 GDB Command 5367 GDB Command 5401 GDB Command 5499 GDB Command 5570 GDB Command 5627 GDB Command 5798 GDB Command [all …]
|