| /freebsd-src/contrib/llvm-project/clang/lib/AST/ |
| H A D | CommentSema.cpp | 62 void Sema::actOnBlockCommandArgs(BlockCommandComment *Command, in actOnBlockCommandArgs() argument 64 Command->setArgs(Args); in actOnBlockCommandArgs() 67 void Sema::actOnBlockCommandFinish(BlockCommandComment *Command, in actOnBlockCommandFinish() argument 69 Command->setParagraph(Paragraph); in actOnBlockCommandFinish() 70 checkBlockCommandEmptyParagraph(Command); in actOnBlockCommandFinish() 71 checkBlockCommandDuplicate(Command); in actOnBlockCommandFinish() 75 checkReturnsCommand(Command); in actOnBlockCommandFinish() 76 checkDeprecatedCommand(Command); in actOnBlockCommandFinish() 85 ParamCommandComment *Command = in actOnParamCommandStart() local 90 Diag(Command->getLocation(), in actOnParamCommandStart() [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-src/sys/contrib/dev/acpica/components/debugger/ |
| H A D | dbhistry.c | 168 char *Command; member 184 * PARAMETERS: CommandLine - Command to add 207 if (AcpiGbl_HistoryBuffer[AcpiGbl_NextHistoryIndex].Command != NULL) in AcpiDbAddToHistory() 210 AcpiGbl_HistoryBuffer[AcpiGbl_NextHistoryIndex].Command); in AcpiDbAddToHistory() 215 Command); in AcpiDbAddToHistory() 216 AcpiGbl_HistoryBuffer[AcpiGbl_NextHistoryIndex].Command = in AcpiDbAddToHistory() 222 AcpiGbl_HistoryBuffer[AcpiGbl_NextHistoryIndex].Command = in AcpiDbAddToHistory() 226 strcpy (AcpiGbl_HistoryBuffer[AcpiGbl_NextHistoryIndex].Command, in AcpiDbAddToHistory() 284 if (AcpiGbl_HistoryBuffer[HistoryIndex].Command) in AcpiDbDisplayHistory() 288 AcpiGbl_HistoryBuffer[HistoryIndex].Command); in AcpiDbDisplayHistory() [all...] |
| H A D | dbinput.c | 176 const char *Command, 181 char *Command); 185 const char *Command, 405 {1, " Help [Command]", "This help screen or individual command\n"}, 476 * PARAMETERS: Command - Command string to match 488 const char *Command, in AcpiDbMatchCommandHelp() argument 509 while ((*Command) && (*Invocation) && (*Invocation != ' ')) in AcpiDbMatchCommandHelp() 511 if (tolower ((int) *Command) != tolower ((int) *Invocation)) in AcpiDbMatchCommandHelp() 517 Command in AcpiDbMatchCommandHelp() 550 AcpiDbDisplayCommandInfo(const char * Command,BOOLEAN DisplayAll) AcpiDbDisplayCommandInfo() argument 587 AcpiDbDisplayHelp(char * Command) AcpiDbDisplayHelp() argument [all...] |
| /freebsd-src/contrib/llvm-project/compiler-rt/lib/fuzzer/ |
| H A D | FuzzerCommand.h | 26 class Command final { 35 Command() : CombinedOutAndErr(false) {} in Command() function 37 explicit Command(const std::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 | 164 FILE *OpenProcessPipe(const char *Command, const char *Mode) { in CloseProcessPipe() 165 return _popen(Command, Mode); in CloseProcessPipe() 172 int ExecuteCommand(const Command &Cmd) { in ExecuteCommand() 177 bool ExecuteCommand(const Command &Cmd, std::string *CmdOutput) { in ExecuteCommand() 214 if (ExecuteCommand(Command(command_vector)) == 0) 159 OpenProcessPipe(const char * Command,const char * Mode) OpenProcessPipe() argument
|
| /freebsd-src/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | CommentSema.h | 94 void actOnBlockCommandArgs(BlockCommandComment *Command, 97 void actOnBlockCommandFinish(BlockCommandComment *Command, 105 void actOnParamCommandDirectionArg(ParamCommandComment *Command, 110 void actOnParamCommandParamNameArg(ParamCommandComment *Command, 115 void actOnParamCommandFinish(ParamCommandComment *Command, 123 void actOnTParamCommandParamNameArg(TParamCommandComment *Command, 128 void actOnTParamCommandFinish(TParamCommandComment *Command, 179 void checkBlockCommandEmptyParagraph(BlockCommandComment *Command); 181 void checkReturnsCommand(const BlockCommandComment *Command); 185 void checkBlockCommandDuplicate(const BlockCommandComment *Command);
|
| /freebsd-src/contrib/llvm-project/clang/include/clang/Driver/ |
| H A D | Job.h | 106 class Command { 172 Command(const Action &Source, const Tool &Creator, 179 Command(const Command &) = default; 180 virtual ~Command() = default; 243 class CC1Command : public Command { 264 using list_type = SmallVector<std::unique_ptr<Command>, 4>; 277 void addJob(std::unique_ptr<Command> J) { Jobs.push_back(std::move(J)); } in addJob()
|
| H A D | Compilation.h | 124 std::function<void(const Command &, int)> PostCallback; 220 void addCommand(std::unique_ptr<Command> C) { Jobs.addJob(std::move(C)); } in addCommand() 235 void setPostCallback(const std::function<void(const Command &, int)> &CB) { in setPostCallback() argument 313 int ExecuteCommand(const Command &C, const Command *&FailingCommand, 324 SmallVectorImpl<std::pair<int, const Command *>> &FailingCommands,
|
| /freebsd-src/contrib/llvm-project/clang/lib/Driver/ |
| H A D | Job.cpp | 39 Command::Command(const Action &Source, const Tool &Creator, in Command() function in Command 108 void Command::writeResponseFile(raw_ostream &OS) const { in writeResponseFile() 134 void Command::buildArgvForResponseFile( in buildArgvForResponseFile() 207 void Command::Print(raw_ostream &OS, const char *Terminator, bool Quote, in Print() 301 void Command::setResponseFile(const char *FileName) { in setResponseFile() 307 void Command::setEnvironment(llvm::ArrayRef<const char *> NewEnvironment) { in setEnvironment() 313 void Command::setRedirectFiles( in setRedirectFiles() 318 void Command::PrintFileNames() const { in PrintFileNames() 326 int Command::Execute(ArrayRef<std::optional<StringRef>> Redirects, in Execute() 398 : Command(Source, Creator, ResponseSupport, Executable, Arguments, Inputs, in CC1Command() [all …]
|
| H A D | Compilation.cpp | 163 int Compilation::ExecuteCommand(const Command &C, in ExecuteCommand() 164 const Command *&FailingCommand, in ExecuteCommand() 213 using FailingCommandList = SmallVectorImpl<std::pair<int, const Command *>>; 237 static bool InputsOk(const Command &C, in InputsOk() 252 const Command *FailingCommand = nullptr; in ExecuteJobs()
|
| /freebsd-src/sys/dev/aacraid/ |
| H A D | aacraid_endian.c | 48 TOH(ptr->Command, 16); in aac_fib_header_toh() 128 TOH(ptr->Command, 32); in aac_cnt_config_toh() 200 TOLE(ptr->Command, 16); in aac_fib_header_tole() 213 TOLE(ptr->Command, 32); in aac_mntinfo_tole() 231 TOLE(ptr->Command, 32); in aac_cnt_config_tole() 269 TOLE(ptr->Command, 32); in aac_ctcfg_tole() 277 TOLE(ptr->Command, 32); in aac_vmioctl_tole() 288 TOLE(ptr->Command, 32); in aac_pause_command_tole() 348 TOLE(ptr->Command, 32); in aac_blockread_tole() 357 TOLE(ptr->Command, 32); in aac_blockwrite_tole() [all …]
|
| H A D | aacraid_reg.h | 76 u_int16_t Command; member 1171 u_int32_t Command; member 1210 u_int32_t Command; member 1226 u_int32_t Command; member 1234 u_int32_t Command; member 1264 u_int32_t Command; member 1357 u_int32_t Command; member 1380 u_int32_t Command; /* not FSACommand! */ member 1388 u_int32_t Command; member 1403 u_int32_t Command; /* not FSACommand! */ member [all …]
|
| /freebsd-src/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/ |
| H A D | DependencyScanningTool.h | 64 std::vector<Command> Commands; 106 getP1689ModuleDependencyFile(const clang::tooling::CompileCommand &Command, 110 getP1689ModuleDependencyFile(const clang::tooling::CompileCommand &Command, in getP1689ModuleDependencyFile() argument 115 return getP1689ModuleDependencyFile(Command, CWD, MakeformatOutput, in getP1689ModuleDependencyFile() 156 void handleBuildCommand(Command Cmd) override { in handleBuildCommand() 190 std::vector<Command> Commands;
|
| /freebsd-src/contrib/llvm-project/lldb/source/Commands/ |
| H A D | Options.td | 3 let Command = "target modules dump symtab" in { 11 let Command = "target modules dump separate debug info" in { 18 let Command = "help" in { 27 let Command = "settings set" in { 37 let Command = "settings write" in { 45 let Command = "settings read" in { 51 let Command = "settings clear" in { 56 let Command = "breakpoint list" in { 73 let Command = "breakpoint modify" in { 103 Arg<"Command">, [all...] |
| /freebsd-src/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/ |
| H A D | DependencyScanningTool.cpp | 26 void handleBuildCommand(Command) override {} in handleBuildCommand() argument 87 const CompileCommand &Command, StringRef CWD, std::string &MakeformatOutput, in getP1689ModuleDependencyFile() argument 93 const CompileCommand &Command) in getP1689ModuleDependencyFile() argument 94 : Filename(Command.Filename), Rule(Rule) { in getP1689ModuleDependencyFile() 95 Rule.PrimaryOutput = Command.Output; in getP1689ModuleDependencyFile() 128 P1689ModuleDependencyPrinterConsumer Consumer(Rule, Command); in getP1689ModuleDependencyFile() 130 auto Result = Worker.computeDependencies(CWD, Command.CommandLine, Consumer, in getP1689ModuleDependencyFile()
|
| /freebsd-src/contrib/llvm-project/llvm/tools/llvm-remarkutil/ |
| H A D | RemarkUtilRegistry.cpp | 26 HandlerType Command) { in CommandRegistration() argument 29 assert(Command && "Attempting to register an empty std::function<Error()>"); in CommandRegistration() 30 getCommands()[SC] = Command; in CommandRegistration()
|
| /freebsd-src/contrib/llvm-project/llvm/tools/llvm-xray/ |
| H A D | xray-registry.cpp | 27 HandlerType Command) { in CommandRegistration() argument 30 assert(Command && "Attempting to register an empty std::function<Error()>"); in CommandRegistration() 31 getCommands()[SC] = Command; in CommandRegistration()
|
| /freebsd-src/sys/contrib/device-tree/Bindings/reserved-memory/ |
| H A D | qcom,cmd-db.txt | 1 Command DB 4 Command DB is a database that provides a mapping between resource key and the 13 The bindings for Command DB is specified in the reserved-memory section in 26 the Command DB in memory.
|
| /freebsd-src/usr.sbin/pppctl/ |
| H A D | pppctl.c | 379 char Command[LINELEN]; in main() local 559 Command[sizeof(Command)-1] = '\0'; in main() 561 if (len && len < sizeof(Command)-1) in main() 562 strcpy(Command+len++, " "); in main() 563 strncpy(Command+len, argv[arg], sizeof(Command)-len-1); in main() 564 len += strlen(Command+len); in main() 642 start = Command; in main()
|
| /freebsd-src/lib/libfetch/ |
| H A D | ftp.errors | 9 200 OK Command okay 10 202 PROTO Command not implemented, superfluous at this site 36 502 PROTO Command not implemented 38 504 PROTO Command not implemented for that parameter
|
| /freebsd-src/contrib/llvm-project/clang/lib/Tooling/ |
| H A D | JSONCompilationDatabase.cpp | 351 std::optional<std::vector<llvm::yaml::ScalarNode *>> Command; in parse() 374 Command = std::vector<llvm::yaml::ScalarNode *>(); in parse() 381 Command->push_back(Scalar); in parse() 391 if (!Command) in parse() 392 Command = std::vector<llvm::yaml::ScalarNode *>(1, ValueString); in parse() 408 if (!Command) { in parse() 428 auto Cmd = CompileCommandRef(Directory, File, *Command, Output); in parse() 352 std::optional<std::vector<llvm::yaml::ScalarNode *>> Command; parse() local
|
| H A D | CommonOptionsParser.cpp | 77 for (CompileCommand &Command : Commands) in adjustCommands() 79 Command.CommandLine = Adjuster(Command.CommandLine, Command.Filename); in adjustCommands()
|
| /freebsd-src/contrib/llvm-project/lldb/utils/TableGen/ |
| H A D | LLDBOptionDefEmitter.cpp | 148 static void emitOptions(std::string Command, std::vector<Record *> Records, in emitOptions() argument 154 std::string ID = Command; in emitOptions() 162 OS << "// Options for " << Command << "\n"; in emitOptions() 170 OS << "#endif // " << Command << " command\n\n"; in emitOptions()
|
| /freebsd-src/sys/dev/hptmv/ |
| H A D | command.h | 38 UCHAR Command; /* IDE_COMMAND_READ, _WRITE, _VERIFY */ member 70 UCHAR Command; /* CTRL_CMD_XXX */ member 87 UCHAR Command; /* CTRL_CMD_XXX */ member 206 } Command; typedef
|