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

1 2 3 4 5 67 8 91011>>

  /platform_testing/libraries/system-helpers/commands-helper/src/android/system/helpers/
CommandsHelper.java 71 * Executes a shell command on device, and return the standard output in string.
72 * @param command the command to run
73 * @return the standard output of the command, or empty string if
76 public String executeShellCommand(String command) {
78 return UiDevice.getInstance(mInstrumentation).executeShellCommand(command);
81 Log.e(TAG, String.format("The shell command failed to run: %s exception: %s",
82 command, e.getMessage()));
88 * Executes a shell command on device, and split the multi-line output into collection
89 * @param command the command to ru
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/asm/
ist.h 24 __u32 command; member in struct:ist_info
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/asm/
ist.h 24 __u32 command; member in struct:ist_info
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/tic6x/
dummy.s 1 # Dummy input file for tests of command-line options.
  /external/oj-libjdwp/src/share/back/
eventHelper.c 33 * Event helper thread command commandKinds
41 * Event helper thread command singleKinds
133 commandSize(HelperCommand *command)
136 if (command->commandKind == COMMAND_REPORT_EVENT_COMPOSITE) {
138 * One event is accounted for in the Helper Command. If there are
143 (command->u.reportEventComposite.eventCount - 1));
149 freeCommand(HelperCommand *command)
151 if ( command == NULL )
153 jvmtiDeallocate(command);
157 enqueueCommand(HelperCommand *command,
221 HelperCommand *command = NULL; local
696 HelperCommand *command = dequeueCommand(); local
889 CommandSingle *command = cv; local
924 CommandSingle *command = cv; local
960 HelperCommand *command; local
1000 CommandSingle *command = bagAdd(eventBag); local
1020 CommandSingle *command = bagAdd(eventBag); local
1039 CommandSingle *command = bagAdd(eventBag); local
1080 HelperCommand *command = jvmtiAllocate(sizeof(*command)); local
1098 HelperCommand *command = jvmtiAllocate(sizeof(*command)); local
1114 HelperCommand *command = jvmtiAllocate(sizeof(*command)); local
    [all...]
  /external/guice/core/test/com/google/inject/spi/
ElementsTest.java 87 @Override public Void visit(Message command) {
88 assertEquals("Message A 5 C", command.getMessage());
89 assertNull(command.getCause());
90 assertContains(command.getSources().toString(),
93 assertContains(command.getSource(), getDeclaringSourcePart(ElementsTest.class));
109 @Override public Void visit(Message command) {
110 assertEquals("A", command.getCause().getMessage());
111 assertEquals(command.getMessage(),
113 assertContains(command.getSource(), getDeclaringSourcePart(ElementsTest.class));
135 @Override public Void visit(Message command) {
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/util/
IRunUtil.java 19 import com.android.tradefed.command.CommandScheduler;
80 * Helper method to execute a system command, and aborting if it takes longer than a specified
84 * @param command the specified system command and optionally arguments to exec
85 * @return a {@link CommandResult} containing result from command run
87 public CommandResult runTimedCmd(final long timeout, final String... command);
90 * Helper method to execute a system command, abort if it takes longer than a specified time,
97 * @param command the specified system command and optionally arguments to exec
98 * @return a {@link CommandResult} containing result from command ru
    [all...]
  /external/toybox/scripts/
mkflags.c 2 // command name, option string with current config, option string from
18 char *command; member in struct:flag
77 // Break down a command string into struct flag list.
92 new->command = ++string;
95 if (list && list->command) {
126 new->command = string++;
137 char command[256], flags[1023], allflags[1024]; local
153 *command = *flags = *allflags = 0;
155 command, flags, allflags);
158 fprintf(stderr, "command=%s, flags=%s, allflags=%s\n"
    [all...]
  /external/emma/core/java12/
emmarun.java 9 import com.vladium.emma.Command;
26 final Command command = Command.create ("run", emmarun.class.getName (), args); local
27 command.run ();
  /external/guice/core/src/com/google/inject/internal/
ModuleAnnotatedMethodScannerProcessor.java 32 @Override public Boolean visit(ModuleAnnotatedMethodScannerBinding command) {
33 injector.state.addScanner(command);
  /external/libmojo/mojo/edk/system/
data_pipe_control_message.h 31 DataPipeCommand command; variable
37 DataPipeCommand command,
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/command/
ConnectCommandHandler.java 16 package org.mockftpserver.core.command;
25 * client, rather than an explicit FTP command.
42 * @see AbstractTrackingCommandHandler#handleCommand(Command, org.mockftpserver.core.session.Session, InvocationRecord)
44 public void handleCommand(Command command, Session session, InvocationRecord invocationRecord) {
  /external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/stub/command/
UserCommandHandler.java 16 package org.mockftpserver.stub.command;
21 import org.mockftpserver.core.command.Command;
22 import org.mockftpserver.core.command.CommandHandler;
23 import org.mockftpserver.core.command.InvocationRecord;
24 import org.mockftpserver.core.command.ReplyCodes;
28 * CommandHandler for the USER command. The <code>passwordRequired</code> property defaults to true,
29 * indicating that a password is required following the user name. If true, this command handler
34 * <li>{@link #USERNAME_KEY} ("username") - the user name submitted on the invocation (the first command parameter)
56 * @see org.mockftpserver.core.command.CommandHandler#handleCommand(Command, Session, InvocationRecord)
    [all...]
  /external/syslinux/gpxe/src/hci/commands/
autoboot_cmd.c 2 #include <gpxe/command.h>
24 struct command autoboot_command __command = {
login_cmd.c 3 #include <gpxe/command.h>
26 struct command login_command __command = {
  /external/volley/src/test/java/com/android/volley/utils/
ImmediateResponseDelivery.java 32 public void execute(Runnable command) {
33 command.run();
  /frameworks/av/services/audioflinger/
FastThreadState.cpp 33 const char *FastThreadState::commandToString(FastThreadState::Command command)
35 switch (command) {
  /frameworks/base/core/java/android/se/omapi/
ISecureElementChannel.aidl 50 * Returns the data as received from the application select command
58 * Transmits the specified command APDU and returns the response APDU.
62 byte[] transmit(in byte[] command);
  /packages/apps/Camera2/src/com/android/camera/one/v2/commands/
RunnableCameraCommand.java 27 public RunnableCameraCommand(CameraCommandExecutor executor, CameraCommand command) {
29 mCommand = command;
  /packages/apps/Dialer/java/com/android/incallui/async/
PausableExecutorImpl.java 37 public void execute(Runnable command) {
38 Executors.newSingleThreadExecutor().execute(command);
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/testing/
TestImmediateExecutor.java 24 * An {@link Executor} that executes command in place.
28 public void execute(Runnable command) {
29 command.run();
  /system/tpm/trunks/
command_transceiver.h 34 // Sends a TPM |command| asynchronously. When a |response| is received,
38 virtual void SendCommand(const std::string& command,
41 // Sends a TPM |command| synchronously (i.e. waits for a response) and returns
44 virtual std::string SendCommandAndWait(const std::string& command) = 0;
tpm_simulator_handle.h 29 // Sends command requests to an in-process software TPM. All commands are
31 // until a response is received and the callback has been called. Command and
37 // std::string response = handle.SendCommandAndWait(command);
48 void SendCommand(const std::string& command,
50 std::string SendCommandAndWait(const std::string& command) override;
  /test/suite_harness/common/host-side/util/src/com/android/compatibility/common/util/
ShellCommandUtil.java 26 public static void execute(ITestDevice device, String command)
28 device.executeShellCommand(command);
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arm/
cmdline-bad-arch.d 1 # name: Bad -march command line

Completed in 729 milliseconds

1 2 3 4 5 67 8 91011>>