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

123456

/freebsd-current/sys/contrib/dev/acpica/components/debugger/
H A Ddbhistry.c168 char *Command; member in struct:HistoryInfo
184 * PARAMETERS: CommandLine - Command to add
207 if (AcpiGbl_HistoryBuffer[AcpiGbl_NextHistoryIndex].Command != NULL)
210 AcpiGbl_HistoryBuffer[AcpiGbl_NextHistoryIndex].Command);
215 Command);
216 AcpiGbl_HistoryBuffer[AcpiGbl_NextHistoryIndex].Command =
222 AcpiGbl_HistoryBuffer[AcpiGbl_NextHistoryIndex].Command =
226 strcpy (AcpiGbl_HistoryBuffer[AcpiGbl_NextHistoryIndex].Command,
284 if (AcpiGbl_HistoryBuffer[HistoryIndex].Command)
288 AcpiGbl_HistoryBuffer[HistoryIndex].Command);
[all...]
H A Ddbinput.c176 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,
509 while ((*Command) && (*Invocation) && (*Invocation != ' '))
511 if (tolower ((int) *Command) != tolower ((int) *Invocation))
517 Command
487 AcpiDbMatchCommandHelp( const char *Command, const ACPI_DB_COMMAND_HELP *Help) argument
549 AcpiDbDisplayCommandInfo( const char *Command, BOOLEAN DisplayAll) argument
586 AcpiDbDisplayHelp( char *Command) argument
[all...]
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dxray-registry.cpp27 HandlerType Command) {
30 assert(Command && "Attempting to register an empty std::function<Error()>");
31 getCommands()[SC] = Command;
26 CommandRegistration(cl::SubCommand *SC, HandlerType Command) argument
H A Dxray-registry.h31 CommandRegistration(cl::SubCommand *SC, std::function<Error()> Command);
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-remarkutil/
H A DRemarkUtilRegistry.cpp26 HandlerType Command) {
29 assert(Command && "Attempting to register an empty std::function<Error()>");
30 getCommands()[SC] = Command;
25 CommandRegistration(cl::SubCommand *SC, HandlerType Command) argument
H A DRemarkUtilRegistry.h31 CommandRegistration(cl::SubCommand *SC, std::function<Error()> Command);
/freebsd-current/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerCommand.h26 class Command final {
35 Command() : CombinedOutAndErr(false) {} function in class:fuzzer::final
37 explicit Command(const std::vector<std::string> &ArgsToAdd) function in class:fuzzer::final
40 explicit Command(const Command &Other) function in class:fuzzer::final
44 Command &operator=(const Command &Other) {
51 ~Command() {}
156 Command(Command
[all...]
H A DFuzzerUtilLinux.cpp25 int ExecuteCommand(const Command &Cmd) {
/freebsd-current/contrib/llvm-project/clang/lib/AST/
H A DCommentCommandTraits.cpp59 auto ConsiderCorrection = [&](const CommandInfo *Command) {
60 StringRef Name = Command->Name;
70 BestCommand.push_back(Command);
74 for (const auto &Command : Commands)
75 ConsiderCorrection(&Command);
77 for (const auto *Command : RegisteredCommands)
78 if (!Command->IsUnknownCommand)
79 ConsiderCorrection(Command);
H A DCommentSema.cpp62 void Sema::actOnBlockCommandArgs(BlockCommandComment *Command, argument
64 Command->setArgs(Args);
67 void Sema::actOnBlockCommandFinish(BlockCommandComment *Command, argument
69 Command->setParagraph(Paragraph);
70 checkBlockCommandEmptyParagraph(Command);
71 checkBlockCommandDuplicate(Command);
75 checkReturnsCommand(Command);
76 checkDeprecatedCommand(Command);
85 ParamCommandComment *Command = local
90 Diag(Command
230 actOnParamCommandDirectionArg(ParamCommandComment *Command, SourceLocation ArgLocBegin, SourceLocation ArgLocEnd, StringRef Arg) argument
257 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
355 actOnTParamCommandFinish(TParamCommandComment *Command, ParagraphComment *Paragraph) argument
536 checkBlockCommandEmptyParagraph(BlockCommandComment *Command) argument
554 checkReturnsCommand(const BlockCommandComment *Command) argument
600 checkBlockCommandDuplicate(const BlockCommandComment *Command) argument
638 checkDeprecatedCommand(const BlockCommandComment *Command) argument
[all...]
/freebsd-current/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,
179 void checkBlockCommandEmptyParagraph(BlockCommandComment *Command);
181 void checkReturnsCommand(const BlockCommandComment *Command);
185 void checkBlockCommandDuplicate(const BlockCommandComment *Command);
[all...]
/freebsd-current/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/
H A DDependencyScanningTool.h64 std::vector<Command> Commands;
106 getP1689ModuleDependencyFile(const clang::tooling::CompileCommand &Command,
110 getP1689ModuleDependencyFile(const clang::tooling::CompileCommand &Command, argument
115 return getP1689ModuleDependencyFile(Command, CWD, MakeformatOutput,
156 void handleBuildCommand(Command Cmd) override {
190 std::vector<Command> Commands;
H A DDependencyScanningWorker.h35 struct Command { struct in namespace:clang::tooling::dependencies
48 virtual void handleBuildCommand(Command Cmd) {}
/freebsd-current/contrib/llvm-project/clang/include/clang/Driver/
H A DJob.h104 /// Command - An executable path/name and argument vector to
106 class Command { class in namespace:clang::driver
144 /// See Command::setEnvironment
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>
[all...]
H A DCompilation.h123 /// class Command and the exit status of the corresponding child process.
124 std::function<void(const Command &, int)> PostCallback;
220 void addCommand(std::unique_ptr<Command> C) { Jobs.addJob(std::move(C)); }
233 /// of class Command and the exit status of the child process executed that
235 void setPostCallback(const std::function<void(const Command &, int)> &CB) {
309 /// Command which failed, if any.
313 int ExecuteCommand(const Command &C, const Command *&FailingCommand,
324 SmallVectorImpl<std::pair<int, const Command *>> &FailingCommands,
/freebsd-current/contrib/llvm-project/clang/lib/Driver/
H A DJob.cpp1 //===- Job.cpp - Command to Execute ---------------------------------------===//
39 Command::Command(const Action &Source, const Tool &Creator, function in class:Command
108 void Command::writeResponseFile(raw_ostream &OS) const {
134 void Command::buildArgvForResponseFile(
207 void Command::Print(raw_ostream &OS, const char *Terminator, bool Quote,
301 void Command::setResponseFile(const char *FileName) {
307 void Command::setEnvironment(llvm::ArrayRef<const char *> NewEnvironment) {
313 void Command::setRedirectFiles(
318 void Command
[all...]
/freebsd-current/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/
H A DDependencyScanningTool.cpp26 void handleBuildCommand(Command) override {}
87 const CompileCommand &Command, StringRef CWD, std::string &MakeformatOutput,
93 const CompileCommand &Command)
94 : Filename(Command.Filename), Rule(Rule) {
95 Rule.PrimaryOutput = Command.Output;
128 P1689ModuleDependencyPrinterConsumer Consumer(Rule, Command);
130 auto Result = Worker.computeDependencies(CWD, Command.CommandLine, Consumer,
86 getP1689ModuleDependencyFile( const CompileCommand &Command, StringRef CWD, std::string &MakeformatOutput, std::string &MakeformatOutputPath) argument
92 P1689ModuleDependencyPrinterConsumer(P1689Rule &Rule, const CompileCommand &Command) argument
/freebsd-current/sys/dev/aacraid/
H A Daacraid_endian.c48 TOH(ptr->Command, 16);
128 TOH(ptr->Command, 32);
200 TOLE(ptr->Command, 16);
213 TOLE(ptr->Command, 32);
231 TOLE(ptr->Command, 32);
269 TOLE(ptr->Command, 32);
277 TOLE(ptr->Command, 32);
288 TOLE(ptr->Command, 32);
348 TOLE(ptr->Command, 32);
357 TOLE(ptr->Command, 3
[all...]
/freebsd-current/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.cpp352 std::optional<std::vector<llvm::yaml::ScalarNode *>> Command; local
375 Command = std::vector<llvm::yaml::ScalarNode *>();
382 Command->push_back(Scalar);
392 if (!Command)
393 Command = std::vector<llvm::yaml::ScalarNode *>(1, ValueString);
409 if (!Command) {
429 auto Cmd = CompileCommandRef(Directory, File, *Command, Output);
/freebsd-current/sys/dev/mpi3mr/mpi/
H A Dmpi30_pci.h66 U32 Command[MPI3_NVME_ENCAP_CMD_MAX]; /* 0x20 */ /* variable length */ member in struct:_MPI3_NVME_ENCAPSULATED_REQUEST
/freebsd-current/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-current/libexec/kgdb/
H A Dacttrace.py35 class acttrace(gdb.Command):
/freebsd-current/crypto/openssl/Configurations/
H A D50-win-onecore.conf17 my $SDKver = `powershell -Command \"& {\$(Get-Item \\\"hklm:\\SOFTWARE\\WOW6432Node\\Microsoft\\Microsoft SDKs\\Windows\\\").GetValue(\\\"CurrentVersion\\\")}\"`;
53 # there are no "ARM Tool Command Prompt"s on Start menu, you have
/freebsd-current/contrib/llvm-project/lldb/utils/TableGen/
H A DLLDBOptionDefEmitter.cpp148 static void emitOptions(std::string Command, std::vector<Record *> Records, argument
154 std::string ID = Command;
162 OS << "// Options for " << Command << "\n"; local
170 OS << "#endif // " << Command << " command\n\n"; local
177 for (auto &CommandRecordPair : getRecordsByName(Options, "Command")) {

Completed in 321 milliseconds

123456