HomeSort by relevance Sort by last modified time
    Searched refs:command (Results 426 - 450 of 4245) sorted by null

<<11121314151617181920>>

  /tools/tradefederation/core/remote/src/com/android/tradefed/command/remote/
CloseOp.java 16 package com.android.tradefed.command.remote;
HandoverCompleteOp.java 16 package com.android.tradefed.command.remote;
HandoverInitCompleteOp.java 16 package com.android.tradefed.command.remote;
ICommandResultHandler.java 16 package com.android.tradefed.command.remote;
RemoteException.java 16 package com.android.tradefed.command.remote;
  /tools/tradefederation/core/src/com/android/tradefed/device/
IDeviceMonitor.java 19 import com.android.tradefed.command.remote.DeviceDescriptor;
  /tools/tradefederation/core/tests/src/com/android/tradefed/command/remote/
RemoteOperationTest.java 16 package com.android.tradefed.command.remote;
  /cts/hostsidetests/devicepolicy/app/ManagedProfile/src/com/android/cts/managedprofile/
SetPolicyActivity.java 37 private static final String EXTRA_COMMAND = "extra-command";
68 String command = intent.getStringExtra(EXTRA_COMMAND); local
69 Log.i(TAG, "Command: \"" + command);
71 if (ADD_RESTRICTION_COMMAND.equals(command)) {
76 } else if (CLEAR_RESTRICTION_COMMAND.equals(command)) {
82 } else if (ADD_CROSS_PROFILE_WIDGET_COMMAND.equals(command)) {
88 } else if (REMOVE_CROSS_PROFILE_WIDGET_COMMAND.equals(command)) {
95 Log.e(TAG, "Invalid command: " + command);
    [all...]
  /external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/stub/command/
FileRetrCommandHandlerTest.java 16 package org.mockftpserver.stub.command;
23 import org.mockftpserver.core.command.Command;
24 import org.mockftpserver.core.command.CommandNames;
25 import org.mockftpserver.core.command.ReplyCodes;
27 import org.mockftpserver.stub.command.FileRetrCommandHandler;
71 * Test the handleCommand(Command,Session) method. Create a temporary (binary) file, and
121 Command command = new Command(CommandNames.RETR, array(FILENAME1)); local
    [all...]
StatCommandHandlerTest.java 16 package org.mockftpserver.stub.command;
18 import org.mockftpserver.core.command.Command;
19 import org.mockftpserver.core.command.CommandNames;
20 import org.mockftpserver.core.command.ReplyCodes;
21 import org.mockftpserver.stub.command.StatCommandHandler;
45 final Command COMMAND = new Command(CommandNames.STAT, EMPTY);
47 commandHandler.handleCommand(COMMAND, session);
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
MessageInviteView.java 65 Integer command = null; local
76 command = UIProvider.MessageOperations.RESPOND_ACCEPT;
78 command = UIProvider.MessageOperations.RESPOND_TENTATIVE;
80 command = UIProvider.MessageOperations.RESPOND_DECLINE;
83 if (command != null) {
85 LogUtils.w("UnifiedEmail", "SENDING INVITE COMMAND, VALUE=%s", command);
86 params.put(UIProvider.MessageOperations.RESPOND_COLUMN, command);
  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
CwdCommandHandlerTest.groovy 16 package org.mockftpserver.fake.command
18 import org.mockftpserver.core.command.Command
19 import org.mockftpserver.core.command.CommandHandler
20 import org.mockftpserver.core.command.CommandNames
21 import org.mockftpserver.core.command.ReplyCodes
85 Command createValidCommand() {
86 return new Command(CommandNames.CWD, [DIR])
DeleCommandHandlerTest.groovy 16 package org.mockftpserver.fake.command
18 import org.mockftpserver.core.command.Command
19 import org.mockftpserver.core.command.CommandHandler
20 import org.mockftpserver.core.command.CommandNames
21 import org.mockftpserver.core.command.ReplyCodes
93 Command createValidCommand() {
94 return new Command(CommandNames.DELE, [FILE])
NlstCommandHandlerTest.groovy 16 package org.mockftpserver.fake.command
18 import org.mockftpserver.core.command.Command
19 import org.mockftpserver.core.command.CommandHandler
20 import org.mockftpserver.core.command.CommandNames
21 import org.mockftpserver.core.command.ReplyCodes
102 Command createValidCommand() {
103 return new Command(CommandNames.NLST, [DIR])
RnfrCommandHandlerTest.groovy 16 package org.mockftpserver.fake.command
18 import org.mockftpserver.core.command.Command
19 import org.mockftpserver.core.command.CommandHandler
20 import org.mockftpserver.core.command.CommandNames
21 import org.mockftpserver.core.command.ReplyCodes
84 Command createValidCommand() {
85 return new Command(CommandNames.RNFR, [FILE])
UserCommandHandlerTest.groovy 16 package org.mockftpserver.fake.command
18 import org.mockftpserver.core.command.Command
19 import org.mockftpserver.core.command.CommandHandler
20 import org.mockftpserver.core.command.CommandNames
21 import org.mockftpserver.core.command.ReplyCodes
106 Command createValidCommand() {
107 return new Command(CommandNames.USER, [USERNAME])
  /external/tcpdump/
print-ipx.c 152 int command, i; local
155 command = EXTRACT_16BITS(ipx);
159 switch (command) {
162 if (command == 1)
173 if (command == 2)
193 ND_PRINT((ndo, "ipx-sap-?%x", command));
204 int command, i; local
207 command = EXTRACT_16BITS(ipx);
211 switch (command) {
232 ND_PRINT((ndo, "ipx-rip-?%x", command));
    [all...]
  /frameworks/base/tools/bit/
command.cpp 17 #include "command.h"
32 Command::Command(const string& prog)
37 Command::~Command()
42 Command::AddArg(const string& arg)
48 Command::AddEnv(const string& name, const string& value)
54 Command::GetProg() const
60 Command::GetArgv() const
73 Command::GetEnv() cons
    [all...]
  /cts/tests/tests/security/src/android/security/cts/
AudioSecurityTest.java 146 byte command[] = new byte[8];
147 Arrays.fill(command, (byte)1);
151 "command", int.class, byte[].class, byte[].class).invoke(
152 audioEffect, EFFECT_CMD_OFFLOAD, command, reply);
157 byte command[] = new byte[30];
158 Arrays.fill(command, (byte)0xDD);
162 "command", int.class, byte[].class, byte[].class).invoke(
163 audioEffect, EFFECT_CMD_GET_PARAM, command, reply);
175 Log.w(TAG, "AudioEffect.command() does not exist (ignoring)"); // OK
189 byte command[] = new byte[8]
    [all...]
  /dalvik/dx/src/com/android/dx/command/
Main.java 17 package com.android.dx.command;
95 com.android.dx.command.dexer.Main.main(without(args, i));
98 com.android.dx.command.dump.Main.main(without(args, i));
101 com.android.dx.command.annotool.Main.main(
105 com.android.dx.command.findusages.Main.main(without(args, i));
138 System.err.println("error: no command specified");
  /development/ide/emacs/
android-common.el 160 (defun android-adb-command (command &optional product)
161 "Execute 'adb COMMAND'.
168 (shell-command (concat (android-adb) " -p " (android-product-path)
169 " " command)
171 (shell-command (concat (android-adb) " " command)
174 (defun android-adb-shell-command (command)
175 "Execute 'adb shell COMMAND'.
    [all...]
  /external/autotest/frontend/client/src/autotest/common/ui/
ContextMenu.java 4 import com.google.gwt.user.client.Command;
17 private class CommandWrapper implements Command {
18 private Command command; field in class:ContextMenu.CommandWrapper
20 CommandWrapper(Command command) {
21 this.command = command;
26 command.execute();
35 public MenuItem addItem(String text, Command cmd)
    [all...]
  /external/jacoco/org.jacoco.cli/src/org/jacoco/cli/internal/
XmlDocumentation.java 25 * Internal utility to dump all command descriptions as XML.
32 private static void writeCommand(final Command command,
34 final CommandParser parser = new CommandParser(command);
35 final XMLElement element = parent.element("command");
36 element.attr("name", command.name());
37 element.element("usage").text(command.usage(parser));
38 element.element("description").text(command.description());
71 for (final Command c : AllCommands.get()) {
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/aware/
WifiAwareShellCommand.java 37 * Register an delegated command interpreter for the specified 'command'. Each class can
40 public void register(String command, DelegatedShellCommand shellCommand) {
41 if (mDelegatedCommands.containsKey(command)) {
42 Log.e(TAG, "register: overwriting existing command -- '" + command + "'");
45 mDelegatedCommands.put(command, shellCommand);
102 * Interface that delegated command targets must implement. They are passed the parent shell
103 * command (the real command interpreter) from which they can obtain arguments
    [all...]
  /art/tools/dexfuzz/src/dexfuzz/executors/
Device.java 109 pb.command("adb", "devices");
160 * Get the command prefix for this device if we want to use adb shell.
184 public ExecutionResult executeCommand(String command, boolean captureOutput) {
186 return executeCommand(command, captureOutput, null, null);
189 public ExecutionResult executeCommand(String command, boolean captureOutput,
194 Log.info("Executing: " + command);
197 ProcessBuilder processBuilder = new ProcessBuilder(splitCommand(command));
241 * Splits command respecting single quotes.
243 private List<String> splitCommand(String command) {
245 Matcher m = Pattern.compile("(\'[^\']+\'| *[^ ]+ *)").matcher(command);
275 String command = getExecutionPrefixWithAdb("shell") + "rm -f " + getCacheLocation(architecture) local
283 String command = getExecutionPrefixWithAdb("push") + programName + " " + testLocation; local
    [all...]

Completed in 354 milliseconds

<<11121314151617181920>>