HomeSort by relevance Sort by last modified time
    Searched defs:Command (Results 201 - 225 of 273) sorted by null

1 2 3 4 5 6 7 891011

  /system/tpm/trunks/generator/
generator.py 244 default: LOG(WARNING) << "Unknown command code: " << command_code;
    [all...]
  /bootable/recovery/updater/
blockimg.cpp 391 // Parameters for transfer list command functions
779 fprintf(stderr, "missing id and/or src range fields in stash command\n");
803 // data later, this is an unrecoverable error. However, the command
954 // match the hashes, the return value is -1 and the command should be aborted.
956 // If the return value is 1, the command has already been completed according to
959 // If the return value is 0, source blocks have expected content and the command
995 // Target blocks already have expected content, command should be skipped
1021 // Source blocks have expected content, command can proceed
1027 // Overlapping source blocks were previously stashed, command can proceed.
1028 // We are recovering from an interrupted command, so we don't know if th
    [all...]
  /device/moto/shamu/camera/QCamera2/HAL/test/
qcamera_test.h 260 struct Command {
261 Command( Commands_e cmd, char *arg = NULL)
264 Command()
279 Command getCommand(sp<CameraContext> currentCamera);
296 Vector<Command> mCommands;
  /external/chromium-trace/catapult/third_party/gsutil/gslib/
command.py 90 command_name: Command name to create logger for.
156 # That maximum depth of the tree of recursive calls to command.Apply. This is
163 # Map from deprecated aliases to the current command and subcommands that
199 must be called, otherwise every command that calls Command.Apply will fail.
288 # Each subclass of Command must define a property named 'command_spec' that is
291 # Name of command.
295 # List of command name aliases.
297 # Min number of args required by this command.
299 # Max number of args required by this command, or NO_MAX
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/gslib/commands/
perfdiag.py 15 """Contains the perfdiag gsutil command."""
46 from gslib.command import Command
47 from gslib.command import DummyArgChecker
81 The perfdiag command runs a suite of diagnostic tests for a given Google
93 firewalls and other network elements. The perfdiag command is provided so
100 please use the following command, and email the output file (output.json)
203 -i Reads the JSON output file created using the -o command and prints
208 The perfdiag command ignores the boto num_retries configuration parameter.
220 The perfdiag command collects system information. It collects your IP address
    [all...]
  /external/clang/lib/AST/
CommentSema.cpp 62 void Sema::actOnBlockCommandArgs(BlockCommandComment *Command,
64 Command->setArgs(Args);
67 void Sema::actOnBlockCommandFinish(BlockCommandComment *Command,
69 Command->setParagraph(Paragraph);
70 checkBlockCommandEmptyParagraph(Command);
71 checkBlockCommandDuplicate(Command);
75 checkReturnsCommand(Command);
76 checkDeprecatedCommand(Command);
85 ParamCommandComment *Command =
90 Diag(Command->getLocation()
    [all...]
  /external/llvm/utils/TableGen/
AsmWriterEmitter.cpp 162 std::string Command;
166 Command = " " + Inst->Operands[0].getCode() + "\n";
168 // Check to see if we already have 'Command' in UniqueOperandCommands.
172 if (UniqueOperandCommands[idx] == Command) {
181 UniqueOperandCommands.push_back(Command);
184 // This command matches one operand so far.
190 // that uses it. If the next command of all instructions in the set are
191 // identical, fold it into the command.
202 // into this command.
208 // Otherwise, scan to see if all of the other instructions in this command
    [all...]
  /external/v8/src/full-codegen/
full-codegen.h 222 enum Command { kReturn, kThrow, kBreak, kContinue };
225 Command command; member in struct:v8::internal::FullCodeGenerator::DeferredCommands::DeferredCommand
    [all...]
  /frameworks/base/cmds/content/src/com/android/commands/content/
Content.java 42 * This class is a command line utility for manipulating content. A client
160 public Command parseCommand() {
396 private static abstract class Command {
400 public Command(Uri uri, int userId) {
449 private static class InsertCommand extends Command {
463 private static class DeleteCommand extends Command {
477 private static class CallCommand extends Command {
514 private static class ReadCommand extends Command {
621 Command command = parser.parseCommand() local
    [all...]
  /frameworks/base/media/mca/filterfw/java/android/filterfw/io/
TextGraphReader.java 41 private ArrayList<Command> mCommands = new ArrayList<Command>();
48 private interface Command {
52 private class ImportPackageCommand implements Command {
69 private class AddLibraryCommand implements Command {
82 private class AllocateFilterCommand implements Command {
105 private class InitFilterCommand implements Command {
124 private class ConnectCommand implements Command {
212 String curCommand = scanner.eat(commandPattern, "<command>");
228 throw new GraphIOException("Unknown command '" + curCommand + "'!")
    [all...]
  /frameworks/base/services/core/java/com/android/server/
NativeDaemonConnector.java 122 * Yell loudly if someone tries making future {@link #execute(Command)}
313 * Make command for daemon, escaping arguments as needed.
319 throw new IllegalArgumentException("Unexpected command: " + cmd);
322 throw new IllegalArgumentException("Arguments must be separate from command");
372 * Issue the given command to the native daemon and return a single expected
380 public NativeDaemonEvent execute(Command cmd) throws NativeDaemonConnectorException {
385 * Issue the given command to the native daemon and return a single expected
386 * response. Any arguments must be separated from base command so they can
410 * Issue the given command to the native daemon and return any
419 public NativeDaemonEvent[] executeForList(Command cmd) throws NativeDaemonConnectorException
    [all...]
  /hardware/qcom/camera/QCamera2/HAL/test/
qcamera_test.h 254 struct Command {
255 Command( Commands_e cmd_, char *arg_ = NULL)
258 Command()
273 Command getCommand(sp<CameraContext> currentCamera);
289 Vector<Command> mCommands;
  /hardware/qcom/camera/msmcobalt/QCamera2/HAL/test/
qcamera_test.h 254 struct Command {
255 Command( Commands_e cmd_, char *arg_ = NULL)
258 Command()
273 Command getCommand(sp<CameraContext> currentCamera);
289 Vector<Command> mCommands;
  /frameworks/base/tools/aapt/
Bundle.h 4 // State bundle. Used to pass around stuff like command-line args.
22 typedef enum Command {
33 } Command;
45 * Bundle of goodies, including everything specified on the command line.
75 * Set the command value. Returns "false" if it was previously set.
77 Command getCommand(void) const { return mCmd; }
78 void setCommand(Command cmd) { mCmd = cmd; }
81 * Command modifiers. Not all modifiers are appropriate for all
257 * the command line. If neither, it's not available since
281 Command mCmd
    [all...]
  /frameworks/native/services/inputflinger/
InputDispatcher.h 573 // A command entry captures state and behavior for an action to be performed in the
580 // the dispatcher lock at will. Initially when the command starts running, the
581 // dispatcher lock is held. However, if the command needs to call into the policy to
590 typedef void (InputDispatcher::*Command)(CommandEntry* commandEntry);
594 CommandEntry(Command command);
597 Command command; member in struct:android::InputDispatcher::CommandEntry
599 // parameters for the command (usage varies by command)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
poclass.h 235 } Command;
280 typedef NTSTATUS (*PPROCESSOR_PCC_RING_DOORBELL)(UCHAR Command, PPROCESSOR_PCC_DOORBELL_CALLBACK Callback, ULONG_PTR Context);
  /external/jcommander/src/test/java/com/beust/jcommander/
JCommanderTest.java 76 import com.beust.jcommander.command.CommandAdd;
77 import com.beust.jcommander.command.CommandCommit;
78 import com.beust.jcommander.command.CommandMain;
151 * Getting the description of a nonexistent command should throw an exception.
717 class Command {
718 @DynamicParameter(names = {"-P"}, description = "Additional command parameters")
722 Command c = new Command();
723 commander.addCommand("command", c);
724 commander.parse(new String[] { "command", "-Pparam='name=value'" })
    [all...]
  /external/v8/src/interpreter/
bytecode-generator.cc 109 enum Command { CMD_BREAK, CMD_CONTINUE, CMD_RETURN, CMD_RETHROW };
110 void PerformCommand(Command command, Statement* statement);
111 virtual bool Execute(Command command, Statement* statement) = 0;
138 // One recorded control-flow command.
140 Command command; // The command type being applied on this path. member in struct:v8::internal::interpreter::final::Entry
141 Statement* statement; // The target statement for the command or {nullptr}
    [all...]
  /frameworks/base/media/java/android/media/session/
MediaSession.java 517 * command from controllers and the system. This is only valid while in a request callback, such
619 private void postCommand(String command, Bundle args, ResultReceiver resultCb) {
620 Command cmd = new Command(command, args, resultCb);
735 * Called when a controller has sent a command to this session.
739 * @param command The command name.
740 * @param args Optional parameters for the command, may be null.
741 * @param cb A result receiver to which a result may be sent by the command, may be null
1254 public final String command; field in class:MediaSession.Command
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
strmini.h 226 SRB_COMMAND Command;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.commands_3.6.0.I20100512-1500.jar 
  /prebuilts/devtools/tools/lib/
org-eclipse-core-commands-3.6.0.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.core.commands_3.4.0.I20080509-2000.jar 
org.eclipse.core.commands_3.6.0.I20100512-1500.jar 
  /prebuilts/tools/common/m2/repository/com/android/external/eclipse/org-eclipse-core-commands/3.6.0/
org-eclipse-core-commands-3.6.0.jar 

Completed in 1752 milliseconds

1 2 3 4 5 6 7 891011