HomeSort by relevance Sort by last modified time
    Searched defs:Command (Results 1 - 25 of 150) sorted by null

1 2 3 4 5 6

  /device/generic/goldfish/network/netmgr/commands/
command.h 23 // on the incoming command string or arguments. It will have to be registered
24 // multiple times, once for each command though.
25 class Command {
27 virtual ~Command() = default;
29 // Work to perform when a command is received. The result will be used to
34 virtual Result onCommand(const char* command, const char* args) = 0;
  /device/linaro/bootloader/edk2/SecurityPkg/Library/Tpm12CommandLib/
Tpm12SelfTest.c 22 Send TPM_ContinueSelfTest command to TPM.
36 TPM_RQU_COMMAND_HDR Command;
41 // send Tpm command TPM_ORD_ContinueSelfTest
43 Command.tag = SwapBytes16 (TPM_TAG_RQU_COMMAND);
44 Command.paramSize = SwapBytes32 (sizeof (Command));
45 Command.ordinal = SwapBytes32 (TPM_ORD_ContinueSelfTest);
47 return Tpm12SubmitCommand (sizeof (Command), (UINT8 *)&Command, &Length, (UINT8 *)&Response);
Tpm12Ownership.c 2 Implement TPM1.2 Ownership related command.
21 Send ForceClear command to TPM1.2.
33 TPM_RQU_COMMAND_HDR Command;
38 // send Tpm command TPM_ORD_ForceClear
40 Command.tag = SwapBytes16 (TPM_TAG_RQU_COMMAND);
41 Command.paramSize = SwapBytes32 (sizeof (Command));
42 Command.ordinal = SwapBytes32 (TPM_ORD_ForceClear);
45 Status = Tpm12SubmitCommand (sizeof (Command), (UINT8 *)&Command, &Length, (UINT8 *)&Response);
    [all...]
Tpm12Pcr.c 59 TPM_CMD_EXTEND Command;
64 // send Tpm command TPM_ORD_Extend
66 Command.Hdr.tag = SwapBytes16 (TPM_TAG_RQU_COMMAND);
67 Command.Hdr.paramSize = SwapBytes32 (sizeof (Command));
68 Command.Hdr.ordinal = SwapBytes32 (TPM_ORD_Extend);
69 Command.PcrIndex = SwapBytes32 (PcrIndex);
70 CopyMem (&Command.TpmDigest, DigestToExtend, sizeof (Command.TpmDigest));
72 Status = Tpm12SubmitCommand (sizeof (Command), (UINT8 *)&Command, &Length, (UINT8 *)&Response);
    [all...]
Tpm12PhysicalPresence.c 2 Implement TPM1.2 Physical Presence related command.
31 Send TSC_PhysicalPresence command to TPM.
48 TPM_CMD_PHYSICAL_PRESENCE Command;
53 // send Tpm command TSC_ORD_PhysicalPresence
55 Command.Hdr.tag = SwapBytes16 (TPM_TAG_RQU_COMMAND);
56 Command.Hdr.paramSize = SwapBytes32 (sizeof (Command));
57 Command.Hdr.ordinal = SwapBytes32 (TSC_ORD_PhysicalPresence);
58 Command.PhysicalPresence = SwapBytes16 (PhysicalPresence);
61 Status = Tpm12SubmitCommand (sizeof (Command), (UINT8 *)&Command, &Length, (UINT8 *)&Response);
    [all...]
Tpm12Startup.c 2 Implement TPM1.2 Startup related command.
32 Send Startup command to TPM1.2.
46 TPM_CMD_START_UP Command;
51 // send Tpm command TPM_ORD_Startup
53 Command.Hdr.tag = SwapBytes16 (TPM_TAG_RQU_COMMAND);
54 Command.Hdr.paramSize = SwapBytes32 (sizeof (Command));
55 Command.Hdr.ordinal = SwapBytes32 (TPM_ORD_Startup);
56 Command.TpmSt = SwapBytes16 (TpmSt);
58 Status = Tpm12SubmitCommand (sizeof (Command), (UINT8 *)&Command, &Length, (UINT8 *)&Response);
    [all...]
Tpm12GetCapability.c 63 TPM_CMD_GET_CAPABILITY Command;
68 // send Tpm command TPM_ORD_GetCapability
70 Command.Hdr.tag = SwapBytes16 (TPM_TAG_RQU_COMMAND);
71 Command.Hdr.paramSize = SwapBytes32 (sizeof (Command));
72 Command.Hdr.ordinal = SwapBytes32 (TPM_ORD_GetCapability);
73 Command.Capability = SwapBytes32 (TPM_CAP_FLAG);
74 Command.CapabilityFlagSize = SwapBytes32 (sizeof (TPM_CAP_FLAG_PERMANENT));
75 Command.CapabilityFlag = SwapBytes32 (TPM_CAP_FLAG_PERMANENT);
77 Status = Tpm12SubmitCommand (sizeof (Command), (UINT8 *)&Command, &Length, (UINT8 *)&Response);
    [all...]
  /external/clang/test/CodeGenCXX/
2005-02-19-BitfieldStructCrash.cpp 5 struct Command {
6 Command(QChar c) : c(c) {}
11 Command X(QChar('c'));
  /external/llvm/utils/lit/lit/
ShCommands.py 1 class Command:
7 return 'Command(%r, %r)' % (self.args, self.redirects)
10 if not isinstance(other, Command):
  /external/swiftshader/third_party/LLVM/utils/lit/lit/
ShCommands.py 1 class Command:
7 return 'Command(%r, %r)' % (self.args, self.redirects)
10 if not isinstance(other, Command):
  /build/kati/
command.h 27 struct Command {
28 explicit Command(Symbol o) : output(o), echo(true), ignore_error(false) {}
38 void Eval(DepNode* n, vector<Command*>* commands);
  /external/autotest/server/cros/
remote_command.py 13 """Make a thread to run the command in."""
31 @returns string result of running our command if the command has
38 class Command(object):
40 Encapsulates a command run on a remote machine.
43 exec' to the command and parsing the output).
48 Run a command on a remote host in the background.
51 @param cmd String command to run on the remote machine.
67 Kills the remote command and waits until it dies. Takes an optional
82 # Ignore status because the command may have exited alread
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/lit/lit/
ShCommands.py 1 class Command:
7 return 'Command(%r, %r)' % (self.args, self.redirects)
10 if not isinstance(other, Command):
46 if not isinstance(other, Command):
  /build/soong/ui/build/
exec.go 35 func Command(ctx Context, config Config, name string, executable string, args ...string) *Cmd {
126 // RunAndPrintOrFatal will run the command, then after finishing
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/UhciDxe/
UhciReg.c 181 // ensure the HC is in halt status after send the stop command
270 UINT16 Command;
272 Command = 0;
279 &Command
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLevel3CommandsLib/
Alias.c 33 CONST CHAR16 *Command;
56 Command = gEfiShellProtocol->GetAlias(Alias, &Volatile);
60 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_ALIAS_OUTPUT), gShellLevel3HiiHandle, !Volatile?L' ':L'*', Alias, Command);
75 Function for 'alias' command.
111 // parse the command line
187 // free the command line package
  /external/smali/util/src/main/java/org/jf/util/jcommander/
Command.java 42 public abstract class Command {
47 public Command(@Nonnull List<JCommander> commandAncestors) {
  /frameworks/av/media/libmedia/include/media/
IStreamSource.h 50 enum Command {
58 Command cmd, bool synchronous, const sp<AMessage> &msg = NULL) = 0;
  /frameworks/av/services/audioflinger/
FastThreadState.h 33 typedef uint32_t Command;
34 static const Command
41 Command mCommand; // current command
49 // returns NULL if command belongs to a subclass
50 static const char *commandToString(Command command);
  /external/clang/include/clang/Driver/
Job.h 26 class Command;
41 /// Command - An executable path/name and argument vector to
43 class Command {
60 /// Response file name, if this command is set to use one, or nullptr
73 /// exclusive file, while others remains as regular command line arguments.
74 /// This functions fills a vector with the regular command line arguments,
85 Command(const Action &Source, const Tool &Creator, const char *Executable,
90 Command(const Command &) = default;
91 virtual ~Command() {}
    [all...]
  /external/icu/icu4c/source/test/perf/utrie2perf/
utrie2perf.cpp 97 class Command : public UPerfFunction {
99 Command(const UTrie2PerfTest &testcase) : testcase(testcase) {}
102 virtual ~Command() {}
117 class CheckFCD : public Command {
119 CheckFCD(const UTrie2PerfTest &testcase) : Command(testcase) {}
137 class CheckFCDAlwaysGet : public Command {
139 CheckFCDAlwaysGet(const UTrie2PerfTest &testcase) : Command(testcase) {}
158 class CheckFCDUTF8 : public Command {
160 CheckFCDUTF8(const UTrie2PerfTest &testcase) : Command(testcase) {}
175 class ToNFC : public Command {
    [all...]
  /external/perf_data_converter/src/
intervalmap_test.cc 22 class Command {
24 virtual ~Command() {}
28 class SetCommand : public Command {
43 class NumIntervalsCommand : public Command {
55 class LookupCommand : public Command {
77 class FailLookupCommand : public Command {
93 class FindNextCommand : public Command {
128 class FailFindNextCommand : public Command {
148 std::shared_ptr<Command> Set(uint64 start, uint64 limit, const char* value) {
152 std::shared_ptr<Command> NumIntervals(uint64 size)
    [all...]
  /device/google/cuttlefish_common/common/libs/utils/
subprocess.h 50 // Whether the command started successfully. It only says whether the call to
52 // completion of the command, that's what Wait is for.
69 // An executable command. Multiple subprocesses can be started from the same
70 // command object. This class owns any file descriptors that the subprocess
72 class Command {
88 Command(const std::string& executable) {
91 Command(Command&&) = default;
95 Command(const Command&) = delete
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Include/Protocol/
EblAddCommand.h 43 EBL_COMMMAND Command;
48 Add a single command table entry.
50 @param EntryArray Pointer EBL_COMMAND_TABLE of the command that is being added
61 Add a multiple command table entry.
105 This routine is used prevent command output data from scrolling off the end
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/PlatformInitPei/
Dimm.c 213 EFI_SMBUS_DEVICE_COMMAND Command;
249 Command = Offset + Index1;
254 Command,
270 Command = Index + Offset;
276 Command,
287 Command = Index + Offset;
293 Command,

Completed in 2473 milliseconds

1 2 3 4 5 6