HomeSort by relevance Sort by last modified time
    Searched full:command (Results 301 - 325 of 12564) sorted by null

<<11121314151617181920>>

  /external/valgrind/docs/xml/
manual-intro.xml 23 <para><command>Memcheck</command> is a memory error detector. It helps
29 <para><command>Cachegrind</command> is a cache and branch-prediction
34 <para><command>Callgrind</command> is a call-graph generating cache
40 <para><command>Helgrind</command> is a thread error detector.
46 <para><command>DRD</command> is also a thread error detector. It i
    [all...]
  /cts/hostsidetests/devicepolicy/src/com/android/cts/devicepolicy/
BaseDevicePolicyTest.java 107 String command = "am start-user " + userId; local
108 CLog.logAndDisplay(LogLevel.INFO, "Starting command " + command);
109 String commandOutput = getDevice().executeShellCommand(command);
110 CLog.logAndDisplay(LogLevel.INFO, "Output for command " + command + ": " + commandOutput);
117 String command = "pm get-max-users"; local
118 String commandOutput = getDevice().executeShellCommand(command);
119 CLog.i("Output for command " + command + ": " + commandOutput)
130 String command = "pm list users"; local
240 String command = "am instrument --user " + userId + " " + params + " -w -r " local
265 String command = "pm list features"; local
289 String command ="pm create-user TestUser_"+ System.currentTimeMillis(); local
302 String command = local
337 String command = "dpm set-profile-owner --user " + userId + " '" + componentName + "'"; local
352 String command = "dpm set-active-admin '" + componentName + "'"; local
360 String command = "dpm set-device-owner '" + componentName + "'"; local
368 String command = "settings --user " + userId + " get " + namespace + " " + name; local
376 String command = "settings --user " + userId + " put " + namespace + " " + name local
    [all...]
  /external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/stub/command/
NlstCommandHandlerTest.java 16 package org.mockftpserver.stub.command;
19 import org.mockftpserver.core.command.Command;
20 import org.mockftpserver.core.command.CommandNames;
21 import org.mockftpserver.core.command.ReplyCodes;
53 Command command1 = new Command(CommandNames.LIST, array(DIR1));
54 Command command2 = new Command(CommandNames.LIST, EMPTY);
66 * @see org.mockftpserver.stub.command.AbstractCommandHandlerTest#setUp()
    [all...]
AlloCommandHandlerTest.java 16 package org.mockftpserver.stub.command;
19 import org.mockftpserver.core.command.Command;
20 import org.mockftpserver.core.command.CommandNames;
21 import org.mockftpserver.core.command.ReplyCodes;
39 private Command command1;
40 private Command command2;
75 commandHandler.handleCommand(new Command(CommandNames.ALLO, array("123 R ")), session);
89 commandHandler.handleCommand(new Command(CommandNames.ALLO, array("xx")), session);
102 commandHandler.handleCommand(new Command(CommandNames.ALLO, array("123 R xx")), session);
    [all...]
  /packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
Compress.java 38 static public class Compressor extends Dicttool.Command {
39 public static final String COMMAND = "compress";
46 return COMMAND + " <src_filename> <dst_filename>: "
53 throw new RuntimeException("Too many arguments for command " + COMMAND);
67 static public class Uncompressor extends Dicttool.Command {
68 public static final String COMMAND = "uncompress";
75 return COMMAND + " <src_filename> <dst_filename>: "
82 throw new RuntimeException("Too many arguments for command " + COMMAND);
    [all...]
Package.java 33 static public class Packager extends Dicttool.Command {
34 public static final String COMMAND = "package";
43 return COMMAND + " <src_filename> <dst_filename>: Package a file for distribution";
49 throw new RuntimeException("Too many/too few arguments for command " + COMMAND);
65 static public class Unpackager extends Dicttool.Command {
66 public static final String COMMAND = "unpackage";
73 return COMMAND + " <src_filename> <dst_filename>: Detects how a file is packaged and\n"
80 throw new RuntimeException("Too many/too few arguments for command " + COMMAND);
    [all...]
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeySourceNetwork.java 57 * command was sucessful or not.
97 * Translate the command line into a sequence of MonkeyEvents.
99 * @param command the command line.
100 * @param queue the command queue.
103 MonkeyCommandReturn translateCommand(List<String> command, CommandQueue queue);
107 * Command to simulate closing and opening the keyboard.
112 public MonkeyCommandReturn translateCommand(List<String> command,
114 if (command.size() > 1) {
115 String direction = command.get(1)
658 MonkeyCommand command = COMMAND_MAP.get(parts.get(0)); local
716 String command = input.readLine(); local
    [all...]
  /external/parameter-framework/test/functional-tests/PfwTestCase/Domains/
tDomain_Rules.py 95 log.I("command [createDomain]")
98 assert err == None, "ERROR : command [createDomain] - Error while creating domain %s" % (self.domain_name)
99 log.I("command [createDomain] correctly executed")
104 log.I("command [createConfiguration]")
107 assert err == None, "ERROR : command [createConfiguration] - Error while creating configuration %s" % (self.conf_1)
108 log.I("command [createConfiguration] correctly executed")
111 log.I("command [createConfiguration]")
114 assert err == None, "ERROR : command [createConfiguration] - Error while creating configuration %s" % (self.conf_2)
115 log.I("command [createConfiguration] correctly executed")
120 log.I("command [setRule]"
    [all...]
tDomain_Configuration.py 90 log.I("command [createDomain]")
93 assert err == None, "ERROR : command [createDomain] - Error while creating domain %s" % (self.domain_name)
94 log.I("command [createDomain] correctly executed")
101 log.I("command [createConfiguration]")
104 assert err == None, "ERROR : command [createConfiguration] - Error while creating configuration %s" % (new_conf_name)
105 log.I("command [createConfiguration] correctly executed")
110 log.I("command [listConfigurations]")
112 assert err == None, "ERROR : command [listConfigurations] - Error while listing configurations for domain %s" % (self.domain_name)
113 log.I("command [listConfigurations] correctly executed")
124 log.I("command [createConfiguration]"
    [all...]
  /external/llvm/cmake/platforms/
iOS.cmake 18 execute_process(COMMAND xcodebuild -version -sdk iphoneos Path
23 execute_process(COMMAND xcodebuild -version -sdk $ENV{SDKROOT} Path
36 execute_process(COMMAND xcrun -sdk ${SDKROOT} -find clang
44 execute_process(COMMAND xcrun -sdk ${SDKROOT} -find clang++
52 execute_process(COMMAND xcrun -sdk ${SDKROOT} -find ar
61 execute_process(COMMAND xcrun -sdk ${SDKROOT} -find ranlib
70 execute_process(COMMAND xcodebuild -sdk ${SDKROOT} -version SDKVersion
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/command/
CdupCommandHandler.java 16 package org.mockftpserver.fake.command;
18 import org.mockftpserver.core.command.Command;
19 import org.mockftpserver.core.command.ReplyCodes;
24 * CommandHandler for the CDUP command. Handler logic:
37 protected void handle(Command command, Session session) {
EpsvCommandHandler.java 16 package org.mockftpserver.fake.command;
18 import org.mockftpserver.core.command.Command;
19 import org.mockftpserver.core.command.ReplyCodes;
25 * CommandHandler for the EPSV command. Handler logic:
39 protected void handle(Command command, Session session) {
  /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/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/command/
InvocationRecord.java 16 package org.mockftpserver.core.command;
29 * Represents information about a single FTP Command invocation. Manages and provides access to
30 * the Command, the host address (<code>InetAddress</code>) of the client that submitted the
31 * Command and the timestamp of the Command submission.
45 private Command command; field in class:InvocationRecord
54 * @param command - the Command
57 public InvocationRecord(Command command, InetAddress clientHost) {
    [all...]
  /external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/core/command/
InvocationRecord.java 16 package org.mockftpserver.core.command;
29 * Represents information about a single FTP Command invocation. Manages and provides access to
30 * the Command, the host address (<code>InetAddress</code>) of the client that submitted the
31 * Command and the timestamp of the Command submission.
46 private Command command; field in class:InvocationRecord
54 * @param command - the Command
57 public InvocationRecord(Command command, InetAddress clientHost) {
    [all...]
  /external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/stub/command/
PortCommandHandler.java 16 package org.mockftpserver.stub.command;
23 import org.mockftpserver.core.command.Command;
24 import org.mockftpserver.core.command.CommandHandler;
25 import org.mockftpserver.core.command.InvocationRecord;
26 import org.mockftpserver.core.command.ReplyCodes;
32 * CommandHandler for the PORT command. Send back a reply code of 200.
60 * @see org.mockftpserver.core.command.CommandHandler#handleCommand(Command, Session, InvocationRecord)
62 public void handleCommand(Command command, Session session, InvocationRecord invocationRecord) throws UnknownHostException {
    [all...]
  /frameworks/base/core/java/com/android/internal/os/
WrapperInit.java 54 * @param args The command-line arguments.
90 * Executes a runtime application with a wrapper command.
93 * @param invokeWith The wrapper command.
102 StringBuilder command = new StringBuilder(invokeWith); local
110 command.append(' ');
111 command.append(appProcess);
113 command.append(" /system/bin --application");
115 command.append(" '--nice-name=").append(niceName).append("'");
117 command.append(" com.android.internal.os.WrapperInit ");
118 command.append(pipeFd != null ? pipeFd.getInt$() : 0)
136 StringBuilder command = new StringBuilder(invokeWith); local
    [all...]
  /external/chromium-trace/trace-viewer/tracing/tracing/ui/
timeline_view_help_overlay.html 39 .command {
75 <div class='command'>w/s</div>
80 <div class='command'>a/d</div>
85 <div class='command'>&rarr;/shift-TAB</div>
90 <div class='command'>&larr;/TAB</div>
96 <div class='command'>click</div>
100 <div class='command'>alt-mousewheel</div>
109 <div class='command'>drag</div>
114 <div class='command'>double click</div>
123 <div class='command'>drag</div
    [all...]
  /external/lldb/source/Commands/
CommandObjectHelp.cpp 57 { LLDB_OPT_SET_ALL, false, "show-aliases", 'a', no_argument, NULL, 0, eArgTypeNone, "Show aliases in the command list."},
63 CommandObjectHelp::DoExecute (Args& command, CommandReturnObject &result)
67 const size_t argc = command.GetArgumentCount ();
69 // 'help' doesn't take any arguments, other than command names. If argc is 0, we show the user
70 // all commands (aliases and user commands if asked for). Otherwise every argument must be the name of a command or a sub-command.
84 // Get command object for the first command argument. Only search built-in command dictionary.
86 cmd_obj = m_interpreter.GetCommandObject (command.GetArgumentAtIndex (0), &matches)
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/
InvokeMethodWithSuspensionTest.java 30 * JDWP unit test for ObjectReference.InvokeCommand command with a thread suspension.
50 CommandPacket command = new CommandPacket( local
53 command.setNextValueAsThreadID(receiverId);
54 command.setNextValueAsThreadID(threadId);
55 command.setNextValueAsClassID(classID);
56 command.setNextValueAsMethodID(methodId);
57 command.setNextValueAsInt(0);
58 command.setNextValueAsInt(invoke_options);
59 return command;
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_cmdbuf.h 25 * Every function writing to the command buffer needs to declare this
32 * Prepare writing n dwords to the command buffer,
43 * Write one dword to the command buffer.
51 * Write a relocated dword to the command buffer.
67 * Write n dwords from ptr to the command buffer.
75 * Finish writing dwords to the command buffer.
86 * the command buffer now is okay.
93 /** Single register write to command buffer; requires 2 dwords. */
98 /** Continuous register range write to command buffer; requires 1 dword,
  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
HelpCommandHandlerTest.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
56 // Reply text includes the message text and the passed-in command as a message parameter
68 Command createValidCommand() {
69 return new Command(CommandNames.HELP, [])
  /frameworks/base/core/java/android/hardware/hdmi/
HdmiClient.java 59 * Sends vendor-specific command.
62 * @param params vendor-specific parameter. For &lt;Vendor Command With ID&gt; do not
64 * @param hasVendorId {@code true} if the command type will be &lt;Vendor Command With ID&gt;.
65 * {@code false} if the command will be &lt;Vendor Command&gt;
71 Log.e(TAG, "failed to send vendor command: ", e);
76 * Sets a listener used to receive incoming vendor-specific command.
92 Log.e(TAG, "failed to set vendor command listener: ", e);
  /frameworks/base/core/tests/bluetoothtests/src/android/bluetooth/
BluetoothInstrumentation.java 62 String command = mArgs.getString("command"); local
63 if ("enable".equals(command)) {
65 } else if ("disable".equals(command)) {
67 } else if ("unpairAll".equals(command)) {
69 } else if ("getName".equals(command)) {
71 } else if ("getAddress".equals(command)) {
73 } else if ("getBondedDevices".equals(command)) {
75 } else if ("enableBtSnoop".equals(command)) {
  /development/testrunner/
run_command.py 32 """Sets behavior of RunCommand to throw AbortError if command process returns
39 """Spawn and retry a subprocess to run the given shell command.
42 cmd: shell command to run
43 timeout_time: time in seconds to wait for command to run before aborting.
44 retry_count: number of times to retry command
45 return_output: if True return output of command as string. Otherwise,
46 direct output of command to stdout.
49 output of command
66 """Spawns a subprocess to run the given shell command.
69 cmd: shell command to ru
    [all...]

Completed in 863 milliseconds

<<11121314151617181920>>