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

<<11121314151617181920>>

  /art/tools/dexfuzz/src/dexfuzz/executors/
Executor.java 76 protected ExecutionResult executeCommandWithTimeout(String command, boolean captureOutput) {
78 return device.executeCommand(timeoutString + device.getExecutionShellPrefix() + command,
178 String command = ""; local
181 command = "PATH=" + androidRoot + "/bin ";
182 command += "ANDROID_ROOT=" + androidRoot + " ";
183 command += "LD_LIBRARY_PATH="+ androidRoot + "/lib:" + androidRoot + "/lib64 ";
185 command += constructCommand(programName);
186 executionResult = executeCommandWithTimeout(command, true);
  /build/kati/
exec.cc 28 #include "command.h"
98 vector<Command*> commands;
100 for (Command* command : commands) {
102 if (command->echo) {
103 printf("%s\n", command->cmd.c_str());
108 int result = RunCommand(shell_, shellflag_, command->cmd.c_str(),
112 if (command->ignore_error) {
114 command->output.c_str(), WEXITSTATUS(result));
116 fprintf(stderr, "*** [%s] Error %d\n", command->output.c_str()
    [all...]
  /cts/hostsidetests/devicepolicy/app/DeviceOwner/src/com/android/cts/deviceowner/
BaseDeviceOwnerTest.java 59 protected String executeShellCommand(String... command) throws Exception {
60 return mDevice.executeShellCommand(String.join(" ", command));
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_symbolizer_mac.cc 54 // Put the string command line argument in the object so that it outlives
138 char command[32]; local
139 internal_snprintf(command, sizeof(command), "0x%zx\n", addr);
140 const char *buf = process_->SendCommand(command);
154 char command[32]; local
155 internal_snprintf(command, sizeof(command), "0x%zx\n", addr);
156 const char *buf = process_->SendCommand(command);
  /external/curl/docs/cmdline-opts/
disable.d 5 If used as the first parameter on the command line, the \fIcurlrc\fP config
  /external/doclava/src/com/google/doclava/
AttrTagInfo.java 66 String command = m.group(1); local
69 if (REF_COMMAND.equals(command)) {
80 mCommand = command;
82 } else if (NAME_COMMAND.equals(command)) {
88 mCommand = command;
90 } else if (DESCRIPTION_COMMAND.equals(command)) {
91 mCommand = command;
94 Errors.error(Errors.BAD_ATTR_TAG, position, "Bad @attr command: " + command);
  /external/emma/core/java12/
emma.java 10 import com.vladium.emma.Command;
39 final Command command = Command.create (commandName, "emma ".concat (commandName), commandArgs); local
40 command.run ();
53 "emma usage: emma <command> [command options]," + EOL +
54 " where <command> is one of:" + EOL +
61 " {use '<command> -h' to see usage help for a given command}" + EOL
    [all...]
  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/
FakeFtpServerTest.groovy 18 import org.mockftpserver.core.command.Command
19 import org.mockftpserver.core.command.CommandHandler
20 import org.mockftpserver.core.command.ReplyTextBundleAware
129 public void handleCommand(Command command, Session session) {
  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
AbstractStoreFileCommandHandlerTestCase.groovy 16 package org.mockftpserver.fake.command
18 import org.mockftpserver.core.command.Command
19 import org.mockftpserver.core.command.CommandNames
20 import org.mockftpserver.core.command.ReplyCodes
100 Command createValidCommand() {
101 return new Command(CommandNames.APPE, [FILE])
  /external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/stub/example/
FtpWorkingDirectoryTest.java 18 import org.mockftpserver.core.command.CommandNames;
20 import org.mockftpserver.stub.command.PwdCommandHandler;
  /external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/stub/command/
AbstractStubCommandHandler.java 16 package org.mockftpserver.stub.command;
18 import org.mockftpserver.core.command.AbstractCommandHandler;
81 * Send the reply using the replyCode and message key/text configured for this command handler.
91 * Send the reply using the replyCode and message key/text configured for this command handler.
  /external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/stub/example/
FtpWorkingDirectoryTest.java 18 import org.mockftpserver.core.command.CommandNames;
20 import org.mockftpserver.stub.command.PwdCommandHandler;
  /external/syslinux/gpxe/src/hci/commands/
gdbstub_cmd.c 21 #include <gpxe/command.h>
26 * GDB stub command
31 * "gdbstub" command syntax message
46 * The "gdbstub" command
100 struct command gdbstub_commands[] __command = {
iwmgmt_cmd.c 23 #include <gpxe/command.h>
27 /* "iwstat" command */
43 /* "iwlist" command */
60 struct command iwmgmt_commands[] __command = {
sanboot_cmd.c 4 #include <gpxe/command.h>
10 * "sanboot" command syntax message
23 * The "sanboot" command
67 struct command sanboot_command __command = {
  /external/valgrind/gdbserver_tests/
nlsigvgdb.stderrB.exp 5 monitor command request to kill this process
  /packages/apps/Camera2/src/com/android/camera/one/v2/commands/
ResettingRunnableCameraCommand.java 29 * restarts the command if it was already running.
39 * The future corresponding to any currently-executing command.
44 public ResettingRunnableCameraCommand(CameraCommandExecutor executor, CameraCommand command) {
46 mCommand = command;
54 // Cancel, via interruption, the already-running command, one has
  /packages/apps/Dialer/java/com/android/dialer/commandline/
CommandSupplier.java 25 public abstract class CommandSupplier implements Supplier<ImmutableMap<String, Command>> {
31 public abstract ImmutableMap<String, Command> commands();
34 public ImmutableMap<String, Command> get() {
42 abstract ImmutableMap.Builder<String, Command> commandsBuilder();
44 public Builder addCommand(String key, Command command) {
45 commandsBuilder().put(key, command);
  /packages/services/Car/obd2-lib/src/com/android/car/obd2/
Obd2FreezeFrameGenerator.java 131 FreezeFrameCommand<Integer> command = local
134 Optional<Integer> result = command.run(mConnection);
137 jsonWriter.name("id").value(command.getPid());
146 command.getPid(), e));
153 FreezeFrameCommand<Float> command = local
156 Optional<Float> result = command.run(mConnection);
159 jsonWriter.name("id").value(command.getPid());
168 command.getPid(), e));
  /platform_testing/libraries/aupt-lib/src/android/support/test/aupt/
FilesystemUtil.java 41 public static void saveProcessOutput(Instrumentation instr, String command, File file)
43 Log.d(TAG, String.format("Saving command \"%s\" output into file %s",
44 command, file.getAbsolutePath()));
47 saveProcessOutput(instr, command, out);
52 public static void saveProcessOutput(Instrumentation instr, String command, OutputStream out)
56 ParcelFileDescriptor pfd = instr.getUiAutomation().executeShellCommand(command);
61 Process process = Runtime.getRuntime().exec(command);
68 throw new IOException("Thread interrupted waiting for command: " + command);
73 throw new IOException("Failed to save output of command: " + command)
    [all...]
  /system/extras/simpleperf/
cmd_help.cpp 23 #include "command.h"
25 class HelpCommand : public Command {
28 : Command("help", "print help information for simpleperf",
40 void PrintLongHelpForOneCommand(const Command& cmd);
47 std::unique_ptr<Command> cmd = CreateCommandInstance(args[0]);
49 LOG(ERROR) << "malformed command line: can't find help string for "
50 "unknown command "
75 std::unique_ptr<Command> cmd = CreateCommandInstance(cmd_name);
80 void HelpCommand::PrintLongHelpForOneCommand(const Command& command) {
    [all...]
  /system/tpm/trunks/
trunks_dbus_proxy.h 45 void SendCommand(const std::string& command,
47 std::string SendCommandAndWait(const std::string& command) override;
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/cris/
rd-v10_32o-1.d 5 # Check that different command-line options result in different
rd-v32o-1.d 5 # Check that different command-line options result in different
rd-vao-1.d 5 # Check that different command-line options result in different

Completed in 208 milliseconds

<<11121314151617181920>>