/external/brotli/c/enc/ |
block_splitter.c | 16 #include "./command.h" 40 static size_t CountLiterals(const Command* cmds, const size_t num_commands) { 50 static void CopyLiteralsToByteArray(const Command* cmds, 96 #define FN(X) X ## Command 123 const Command* cmds, 157 /* Create the block split on the array of command prefixes. */ 175 const Command* cmd = &cmds[i];
|
cluster.c | 44 #define FN(X) X ## Command
|
/external/lzma/CPP/7zip/UI/Console/ |
PercentPrinter.cpp | 21 Command.Empty();
102 if (_printedState.Command == st.Command
134 if (!Command.IsEmpty())
137 _s += Command;
|
/external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/core/command/ |
_AbstractTrackingCommandHandlerTest.java | 16 package org.mockftpserver.core.command;
41 private static final Command COMMAND = new Command(COMMAND_NAME, EMPTY);
42 private static final Command COMMAND_WITH_ARGS = new Command(COMMAND_NAME, EMPTY);
57 * Test the handleCommand(Command,Session) method
61 commandHandler.handleCommand(COMMAND, session);
67 * Test the handleCommand(Command,Session) method, passing in a null Command
[all...] |
/external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/core/command/ |
InvocationRecordTest.java | 16 package org.mockftpserver.core.command;
24 import org.mockftpserver.core.command.Command;
25 import org.mockftpserver.core.command.InvocationRecord;
39 private static final Command COMMAND = new Command("command", EMPTY);
51 final Command COMMAND = new Command("ABC", EMPTY); [all...] |
/external/oj-libjdwp/make/data/jdwp/ |
jdwp.spec | 28 (Command Version=1 44 (Command ClassesBySignature=2 71 (Command AllClasses=3 93 (Command AllThreads=4 112 (Command TopLevelThreadGroups=5 113 "Returns all thread groups that do not have a parent. This command " 127 (Command Dispose=6 136 "<a href=\"#JDWP_ThreadReference_Resume\">resume</a> command " 138 "<a href=\"#JDWP_VirtualMachine_Resume\">resume</a> command " 158 (Command IDSizes= [all...] |
/build/soong/ui/status/ |
log.go | 50 cmd := result.Command 100 cmd := result.Command 115 if result.Command != "" { 116 fmt.Fprintf(e.w, "Command: %s\n", result.Command)
|
/external/icu/icu4c/source/test/perf/unisetperf/ |
unisetperf.cpp | 28 // Command-line options specific to unisetperf. 29 // Options do not have abbreviations: Force readable command lines. 136 class Command : public UPerfFunction { 138 Command(const UnicodeSetPerformanceTest &testcase) : testcase(testcase) {} 141 virtual ~Command() {} 158 class Contains : public Command { 160 Contains(const UnicodeSetPerformanceTest &testcase) : Command(testcase) { 208 class SpanUTF16 : public Command { 210 SpanUTF16(const UnicodeSetPerformanceTest &testcase) : Command(testcase) { 259 class SpanBackUTF16 : public Command { [all...] |
/device/google/cuttlefish_common/common/libs/utils/ |
subprocess.cpp | 63 const char* const* command, 95 rval = execv(command[0], const_cast<char* const*>(command)); 97 rval = execve(command[0], 98 const_cast<char* const*>(command), 102 LOG(ERROR) << "exec of " << command[0] << " failed (" << strerror(errno) 109 LOG(INFO) << "Started (pid: " << pid << "): " << command[0]; local 111 while (command[i]) { 112 LOG(INFO) << command[i++]; 191 Command::~Command() [all...] |
/external/icu/icu4c/source/test/perf/utfperf/ |
utfperf.cpp | 46 // Command-line options specific to utfperf. 47 // Options do not have abbreviations: Force readable command lines. 123 class Command : public UPerfFunction { 125 Command(const UtfPerformanceTest &testcase) 136 virtual ~Command(){ 154 class Roundtrip : public Command { 156 Roundtrip(const UtfPerformanceTest &testcase) : Command(testcase) {} 221 class FromUnicode : public Command { 223 FromUnicode(const UtfPerformanceTest &testcase) : Command(testcase) {} 266 class FromUTF8 : public Command { [all...] |
/external/swiftshader/third_party/LLVM/utils/lit/lit/ |
TclUtil.py | 3 from ShCommands import Command, Pipeline 123 raise NotImplementedError, ('Command substitution is ' 202 commands = [Command([],[])] 208 commands.append(Command([],[])) 213 commands.append(Command([],[])) 301 Pipeline([Command(['echo', 'hello'], [])], 305 Pipeline([Command(['echo', 'hello'], []), 306 Command(['grep', 'hello'], [])], 312 Pipeline([Command(['echo', 'hello'], 318 Command(['e'], [])] [all...] |
/device/linaro/bootloader/edk2/SecurityPkg/Tcg/Opal/OpalPasswordSmm/ |
OpalNvmeMode.c | 537 DEBUG ((DEBUG_INFO, "Invalid Command Opcode\n"));
540 DEBUG ((DEBUG_INFO, "Invalid Field in Command\n"));
543 DEBUG ((DEBUG_INFO, "Command ID Conflict\n"));
555 DEBUG ((DEBUG_INFO, "Command Abort Requested\n"));
558 DEBUG ((DEBUG_INFO, "Command Aborted due to SQ Deletion\n"));
561 DEBUG ((DEBUG_INFO, "Command Aborted due to Failed Fused Command\n"));
564 DEBUG ((DEBUG_INFO, "Command Aborted due to Missing Fused Command\n"));
570 DEBUG ((DEBUG_INFO, "Command Sequence Error\n")); [all...] |
/external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/stub/command/ |
FileRetrCommandHandlerTest.java | 16 package org.mockftpserver.stub.command;
21 import org.mockftpserver.core.command.*;
22 import org.mockftpserver.core.command.AbstractCommandHandlerTestCase;
68 * Test the handleCommand(Command,Session) method. Create a temporary (binary) file, and
120 Command command = new Command(CommandNames.RETR, array(FILENAME1));
local 121 commandHandler.handleCommand(command, session);
141 commandHandler.handleCommand(new Command(CommandNames.RETR, EMPTY), session);
152 * @see org.mockftpserver.core.command.AbstractCommandHandlerTestCase#setUp() [all...] |
/external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/stub/command/ |
PortCommandHandlerTest.java | 16 package org.mockftpserver.stub.command;
22 import org.mockftpserver.core.command.Command;
23 import org.mockftpserver.core.command.CommandNames;
24 import org.mockftpserver.core.command.ReplyCodes;
26 import org.mockftpserver.stub.command.PortCommandHandler;
49 final Command COMMAND = new Command(CommandNames.PORT, PARAMETERS);
56 commandHandler.handleCommand(COMMAND, session); [all...] |
/external/swiftshader/third_party/LLVM/test/MC/ARM/ |
darwin-Thumb-reloc.s | 32 @ CHECK: # Load Command 0 33 @ CHECK: (('command', 1) 88 @ CHECK: # Load Command 1 89 @ CHECK: (('command', 2) 115 @ CHECK: # Load Command 2 116 @ CHECK: (('command', 11)
|
/external/vogar/src/vogar/android/ |
DeviceFilesystem.java | 28 import vogar.commands.Command; 72 List<String> rawResult = new Command.Builder(log) 88 List<String> rawResult = new Command.Builder(log)
|
/external/vogar/test/vogar/android/ |
HostRuntimeLocalTargetTest.java | 36 import vogar.commands.Command; 67 Command command = builder.build(run.target); local 68 List<String> args = command.getArgs(); 126 Command command = builder.build(run.target); local 127 List<String> args = command.getArgs();
|
/device/generic/goldfish/network/netmgr/commands/ |
wifi_command.h | 19 #include "command.h" 27 class WifiCommand : public Command { 32 Result onCommand(const char* command, const char* args) override;
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Protocol/UsbAtapi/ |
UsbAtapi.h | 35 // SubClass Code (defines command set)
57 IN VOID *Command,
|
/device/linaro/bootloader/edk2/EmbeddedPkg/Include/Protocol/ |
AndroidFastbootPlatform.h | 112 React to an OEM-specific command.
124 @param[in] Command Null-terminated command string.
126 @retval EFI_SUCCESS The command executed successfully.
127 @retval EFI_NOT_FOUND The command wasn't recognised.
128 @retval EFI_DEVICE_ERROR There was an error executing the command.
133 IN CHAR8 *Command
|
/device/linaro/bootloader/edk2/MdeModulePkg/Include/Guid/ |
SmmLockBox.h | 34 UINT32 Command;
|
/device/linaro/bootloader/edk2/MdeModulePkg/Include/Protocol/ |
IpmiProtocol.h | 35 @param[in] NetFunction Net function of the command.
36 @param[in] Command IPMI Command.
37 @param[in] RequestData Command Request Data.
38 @param[in] RequestDataSize Size of Command Request Data.
39 @param[out] ResponseData Command Response Data. The completion code is the first byte of response data.
40 @param[in, out] ResponseDataSize Size of Command Response Data.
42 @retval EFI_SUCCESS The command byte stream was successfully submit to the device and a response was successfully received.
43 @retval EFI_NOT_FOUND The command was not successfully sent to the device or a response was not successfully received from the device.
44 @retval EFI_NOT_READY Ipmi Device is not ready for Ipmi command access. [all...] |
/device/linaro/bootloader/edk2/OvmfPkg/AcpiPlatformDxe/ |
QemuLoader.h | 2 Command structures for the QEMU FwCfg table loader interface.
82 } Command;
|
/external/clang/include/clang/Driver/ |
Compilation.h | 169 void addCommand(std::unique_ptr<Command> C) { Jobs.addJob(std::move(C)); } 233 /// ExecuteCommand - Execute an actual command. 236 /// Command which failed, if any. 238 int ExecuteCommand(const Command &C, const Command *&FailingCommand) const; 246 SmallVectorImpl<std::pair<int, const Command *>> &FailingCommands) const;
|
/external/clang/utils/analyzer/ |
SATestBuild.py | 81 def which(command, paths = None): 82 """which(command, [paths]) - Look up the given command in the paths string 89 if os.path.exists(command): 90 return command 106 p = os.path.join(path, command + ext) 298 for Command in SBCommandFile: 299 Command = Command.strip() 300 if len(Command) == 0 [all...] |