Searched refs:Command (Results 1 - 25 of 131) sorted by relevance

123456

/freebsd-11-stable/sys/contrib/dev/acpica/components/debugger/
H A Ddbhistry.c168 char *Command; member in struct:HistoryInfo
185 * PARAMETERS: CommandLine - Command to add
208 if (AcpiGbl_HistoryBuffer[AcpiGbl_NextHistoryIndex].Command != NULL)
211 AcpiGbl_HistoryBuffer[AcpiGbl_NextHistoryIndex].Command);
216 Command);
217 AcpiGbl_HistoryBuffer[AcpiGbl_NextHistoryIndex].Command =
223 AcpiGbl_HistoryBuffer[AcpiGbl_NextHistoryIndex].Command =
227 strcpy (AcpiGbl_HistoryBuffer[AcpiGbl_NextHistoryIndex].Command,
285 if (AcpiGbl_HistoryBuffer[HistoryIndex].Command)
289 AcpiGbl_HistoryBuffer[HistoryIndex].Command);
[all...]
H A Ddbinput.c176 const char *Command,
181 char *Command);
185 const char *Command,
397 {1, " Help [Command]", "This help screen or individual command\n"},
467 * PARAMETERS: Command - Command string to match
479 const char *Command,
500 while ((*Command) && (*Invocation) && (*Invocation != ' '))
502 if (tolower ((int) *Command) != tolower ((int) *Invocation))
508 Command
478 AcpiDbMatchCommandHelp( const char *Command, const ACPI_DB_COMMAND_HELP *Help) argument
540 AcpiDbDisplayCommandInfo( const char *Command, BOOLEAN DisplayAll) argument
577 AcpiDbDisplayHelp( char *Command) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dxray-registry.cpp25 HandlerType Command) {
28 assert(Command && "Attempting to register an empty std::function<Error()>");
29 (*Commands)[SC] = Command;
24 CommandRegistration(cl::SubCommand *SC, HandlerType Command) argument
H A Dxray-registry.h31 CommandRegistration(cl::SubCommand *SC, std::function<Error()> Command);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerCommand.h25 class Command final {
34 Command() : CombinedOutAndErr(false) {} function in class:fuzzer::final
36 explicit Command(const Vector<std::string> &ArgsToAdd) function in class:fuzzer::final
39 explicit Command(const Command &Other) function in class:fuzzer::final
43 Command &operator=(const Command &Other) {
50 ~Command() {}
155 Command(Command
[all...]
H A DFuzzerUtilLinux.cpp23 int ExecuteCommand(const Command &Cmd) {
H A DFuzzerUtilWindows.cpp151 FILE *OpenProcessPipe(const char *Command, const char *Mode) { argument
152 return _popen(Command, Mode);
155 int ExecuteCommand(const Command &Cmd) {
184 if (ExecuteCommand(Command(command_vector)) == 0)
H A DFuzzerUtil.h59 int ExecuteCommand(const Command &Cmd);
61 FILE *OpenProcessPipe(const char *Command, const char *Mode);
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DCommentCommandTraits.cpp58 auto ConsiderCorrection = [&](const CommandInfo *Command) {
59 StringRef Name = Command->Name;
69 BestCommand.push_back(Command);
73 for (const auto &Command : Commands)
74 ConsiderCorrection(&Command);
76 for (const auto *Command : RegisteredCommands)
77 if (!Command->IsUnknownCommand)
78 ConsiderCorrection(Command);
H A DCommentSema.cpp61 void Sema::actOnBlockCommandArgs(BlockCommandComment *Command, argument
63 Command->setArgs(Args);
66 void Sema::actOnBlockCommandFinish(BlockCommandComment *Command, argument
68 Command->setParagraph(Paragraph);
69 checkBlockCommandEmptyParagraph(Command);
70 checkBlockCommandDuplicate(Command);
74 checkReturnsCommand(Command);
75 checkDeprecatedCommand(Command);
84 ParamCommandComment *Command = local
89 Diag(Command
227 actOnParamCommandDirectionArg(ParamCommandComment *Command, SourceLocation ArgLocBegin, SourceLocation ArgLocEnd, StringRef Arg) argument
256 actOnParamCommandParamNameArg(ParamCommandComment *Command, SourceLocation ArgLocBegin, SourceLocation ArgLocEnd, StringRef Arg) argument
274 actOnParamCommandFinish(ParamCommandComment *Command, ParagraphComment *Paragraph) argument
285 TParamCommandComment *Command = local
298 actOnTParamCommandParamNameArg(TParamCommandComment *Command, SourceLocation ArgLocBegin, SourceLocation ArgLocEnd, StringRef Arg) argument
357 actOnTParamCommandFinish(TParamCommandComment *Command, ParagraphComment *Paragraph) argument
562 checkBlockCommandEmptyParagraph(BlockCommandComment *Command) argument
580 checkReturnsCommand(const BlockCommandComment *Command) argument
626 checkBlockCommandDuplicate(const BlockCommandComment *Command) argument
664 checkDeprecatedCommand(const BlockCommandComment *Command) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Driver/
H A DJob.h39 /// Command - An executable path/name and argument vector to
41 class Command { class in namespace:clang::driver
70 /// See Command::setEnvironment
92 Command(const Action &Source, const Tool &Creator, const char *Executable,
97 Command(const Command &) = default;
98 virtual ~Command() = default;
140 class CC1Command : public Command {
155 /// Like Command, but with a fallback which is executed in case
157 class FallbackCommand : public Command {
[all...]
H A DCompilation.h205 void addCommand(std::unique_ptr<Command> C) { Jobs.addJob(std::move(C)); }
277 /// Command which failed, if any.
279 int ExecuteCommand(const Command &C, const Command *&FailingCommand) const;
287 SmallVectorImpl<std::pair<int, const Command *>> &FailingCommands) const;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/
H A DJob.cpp1 //===- Job.cpp - Command to Execute ---------------------------------------===//
38 Command::Command(const Action &Source, const Tool &Creator, function in class:Command
103 void Command::printArg(raw_ostream &OS, StringRef Arg, bool Quote) {
121 void Command::writeResponseFile(raw_ostream &OS) const {
147 void Command::buildArgvForResponseFile(
216 void Command::Print(raw_ostream &OS, const char *Terminator, bool Quote,
306 void Command::setResponseFile(const char *FileName) {
312 void Command::setEnvironment(llvm::ArrayRef<const char *> NewEnvironment) {
318 void Command
[all...]
H A DCompilation.cpp151 int Compilation::ExecuteCommand(const Command &C,
152 const Command *&FailingCommand) const {
194 using FailingCommandList = SmallVectorImpl<std::pair<int, const Command *>>;
218 static bool InputsOk(const Command &C,
232 const Command *FailingCommand = nullptr;
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DCommentSema.h94 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,
184 void checkBlockCommandEmptyParagraph(BlockCommandComment *Command);
186 void checkReturnsCommand(const BlockCommandComment *Command);
190 void checkBlockCommandDuplicate(const BlockCommandComment *Command);
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/
H A DCreateInvocationFromCommandLine.cpp77 if (Jobs.size() == 0 || !isa<driver::Command>(*Jobs.begin()) ||
86 const driver::Command &Cmd = cast<driver::Command>(*Jobs.begin());
/freebsd-11-stable/sys/dev/hptmv/
H A Dcommand.h32 * Description: Command
38 UCHAR Command; /* IDE_COMMAND_READ, _WRITE, _VERIFY */ member in struct:_AtaCommand
70 UCHAR Command; /* CTRL_CMD_XXX */ member in struct:_R5ControlCmd
87 UCHAR Command; /* CTRL_CMD_XXX */ member in struct:_R1ControlCmd
100 /* Ide Command */
103 /* Atapi Command */
206 } Command; typedef in typeref:struct:_Command
/freebsd-11-stable/contrib/llvm-project/lldb/utils/TableGen/
H A DLLDBOptionDefEmitter.cpp153 static void emitOptions(std::string Command, std::vector<Record *> Records, argument
159 std::string ID = Command;
167 OS << "// Options for " << Command << "\n"; local
175 OS << "#endif // " << Command << " command\n\n"; local
182 for (auto &CommandRecordPair : getRecordsByName(Options, "Command")) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/
H A DCommonOptionsParser.cpp77 for (CompileCommand &Command : Commands)
79 Command.CommandLine = Adjuster(Command.CommandLine, Command.Filename);
H A DJSONCompilationDatabase.cpp354 llvm::Optional<std::vector<llvm::yaml::ScalarNode *>> Command; local
382 Command = std::vector<llvm::yaml::ScalarNode *>();
389 Command->push_back(Scalar);
392 if (!Command)
393 Command = std::vector<llvm::yaml::ScalarNode *>(1, ValueString);
408 if (!Command) {
429 auto Cmd = CompileCommandRef(Directory, File, *Command, Output);
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-symbolizer/
H A Dllvm-symbolizer.cpp180 enum class Command { class
186 static bool parseCommand(StringRef InputString, Command &Cmd,
191 Cmd = Command::Code;
193 Cmd = Command::Data;
195 Cmd = Command::Frame;
198 Cmd = Command::Code;
228 Command Cmd;
243 if (Cmd == Command::Data) {
247 } else if (Cmd == Command::Frame) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DMinix.cpp39 C.addCommand(std::make_unique<Command>(JA, *this, Exec, CmdArgs, Inputs));
91 C.addCommand(std::make_unique<Command>(JA, *this, Exec, CmdArgs, Inputs));
H A DInterfaceStubs.cpp57 C.addCommand(std::make_unique<Command>(JA, *this, Args.MakeArgString(Merger),
H A DAIX.cpp76 C.addCommand(std::make_unique<Command>(JA, *this, Exec, CmdArgs, Inputs));
148 C.addCommand(std::make_unique<Command>(JA, *this, Exec, CmdArgs, Inputs));
/freebsd-11-stable/usr.sbin/pppctl/
H A Dpppctl.c380 char Command[LINELEN]; local
560 Command[sizeof(Command)-1] = '\0';
562 if (len && len < sizeof(Command)-1)
563 strcpy(Command+len++, " ");
564 strncpy(Command+len, argv[arg], sizeof(Command)-len-1);
565 len += strlen(Command+len);
643 start = Command;

Completed in 140 milliseconds

123456