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

<<11121314151617181920>>

  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
VmMirror.java 52 * of corresponding JDWP command or TestErrorException if any other error
105 * @return ReplyPacket for corresponding command
118 * @return ReplyPacket for corresponding command
138 * @return ReplyPacket for corresponding command
181 "Command getLineTable returned error code: "
261 * @return ReplyPacket for corresponding command
265 // Create new command packet
268 // Set command. "2" - is ID of Clear command in EventRequest Command Se
1824 CommandPacket command = new CommandPacket( local
1875 CommandPacket command = new CommandPacket( local
1896 CommandPacket command = new CommandPacket( local
1941 CommandPacket command = new CommandPacket( local
1974 CommandPacket command = new CommandPacket( local
1990 CommandPacket command = new CommandPacket( local
2007 CommandPacket command = new CommandPacket( local
2025 CommandPacket command = new CommandPacket( local
2059 CommandPacket command = new CommandPacket( local
2093 CommandPacket command = new CommandPacket( local
2136 CommandPacket command = new CommandPacket( local
2154 CommandPacket command = new CommandPacket( local
2170 CommandPacket command = new CommandPacket( local
2186 CommandPacket command = new CommandPacket( local
2202 CommandPacket command = new CommandPacket( local
2242 CommandPacket command = new CommandPacket( local
2258 CommandPacket command = new CommandPacket( local
2404 CommandPacket command = new CommandPacket( local
2435 CommandPacket command = new CommandPacket( local
2461 CommandPacket command = new CommandPacket( local
2491 CommandPacket command = new CommandPacket( local
2512 CommandPacket command = new CommandPacket( local
2527 CommandPacket command = new CommandPacket( local
2554 CommandPacket command = new CommandPacket( local
2588 CommandPacket command = new CommandPacket( local
    [all...]
  /external/curl/docs/cmdline-opts/
quote.d 3 Help: Send command(s) to server before transfer
7 Send an arbitrary command to the remote FTP or SFTP server. Quote commands are
8 sent BEFORE the transfer takes place (just after the initial PWD command in an
11 has changed the working directory, just before the transfer command(s), prefix
12 the command with a '+' (this is only supported for FTP). You may specify any
20 the command with an asterisk (*) to make curl continue even if the command
29 The chgrp command sets the group ID of the file named by the file operand to
33 The chmod command modifies the file mode bits of the specified file. The
36 The chown command sets the owner of the file named by the file operand to th
    [all...]
ftp-pret.d 6 Tell curl to send a PRET command before PASV (and EPSV). Certain FTP servers,
7 mainly drftpd, require this non-standard command for directory listings as
  /frameworks/av/services/audiopolicy/service/
AudioPolicyService.cpp 51 static const char kCmdDeadlockedString[] = "AudioPolicyService command thread may be deadlocked\n";
77 // start output activity command thread
326 snprintf(buffer, SIZE, "Command Thread: %p\n", mAudioCommandThread.get());
424 // ------------------- Shell command implementation -------------------
672 sp<AudioCommand> command = mAudioCommands[0]; local
674 mLastCommand = command;
676 switch (command->mCommand) {
679 ToneData *data = (ToneData *)command->mParam.get();
698 VolumeData *data = (VolumeData *)command->mParam.get();
701 command->mStatus = AudioSystem::setStreamVolume(data->mStream
906 sp<AudioCommand> command = new AudioCommand(); local
918 sp<AudioCommand> command = new AudioCommand(); local
929 sp<AudioCommand> command = new AudioCommand(); local
946 sp<AudioCommand> command = new AudioCommand(); local
960 sp<AudioCommand> command = new AudioCommand(); local
974 sp<AudioCommand> command = new AudioCommand(); local
989 sp<AudioCommand> command = new AudioCommand(); local
1007 sp<AudioCommand> command = new AudioCommand(); local
1025 sp<AudioCommand> command = new AudioCommand(); local
1037 sp<AudioCommand> command = new AudioCommand(); local
1045 sp<AudioCommand>command = new AudioCommand(); local
1054 sp<AudioCommand> command = new AudioCommand(); local
1067 sp<AudioCommand> command = new AudioCommand(); local
1083 sp<AudioCommand>command = new AudioCommand(); local
    [all...]
  /system/core/logcat/tests/
logcat_test.cpp 42 #define logcat_popen(context, command) popen((command), "r")
44 #define logcat_system(command) system(command)
134 std::string command = android::base::StringPrintf( local
138 ASSERT_TRUE(NULL != (fp = logcat_popen(ctx, command.c_str())));
800 static testing::AssertionResult IsFalse(int ret, const char* command) {
802 << "ret=" << ret << " command=\"" << command << "\"")
814 char command[sizeof(buf) + sizeof(comm)] local
860 char command[sizeof(tmp_out_dir) + sizeof(logcat_cmd)]; local
919 char command[sizeof(tmp_out_dir) + sizeof(logcat_cmd) + sizeof(log_filename)]; local
1046 char command[sizeof(tmp_out_dir) + sizeof(logcat_cmd) + local
1118 char command[strlen(tmp_out_dir) + strlen(logcat_cmd) + local
1186 char command[strlen(cleanup_cmd) + strlen(tmp_out_dir_form)]; local
1193 static const char command[] = logcat_executable local
    [all...]
  /bootable/recovery/
common.h 25 // Not using the command-line defined macro here because this header could be included by
47 bool reboot(const std::string& command);
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
AppOpsUtils.java 72 String command = "appops set " + packageName + " " + opStr + " " + modeStr; local
73 return runCommand(command);
110 private static String runCommand(String command) throws IOException {
111 return SystemUtil.runShellCommand(InstrumentationRegistry.getInstrumentation(), command);
  /cts/suite/audio_quality/lib/src/
Adb.h 26 /// if device string is empty, adb command will be called without -s option.
33 int executeCommand(const android::String8& command);
  /cts/tests/autofillservice/src/android/autofillservice/cts/common/
ShellHelper.java 28 * Provides Shell-based utilities such as running a command.
35 * Runs a Shell command, returning a trimmed response.
39 final String command = String.format(template, args); local
40 Log.d(TAG, "runShellCommand(): " + command);
43 .runShellCommand(InstrumentationRegistry.getInstrumentation(), command);
46 throw new RuntimeException("Command '" + command + "' failed: ", e);
  /developers/samples/android/input/autofill/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/util/
AppExecutors.java 70 public void execute(@NonNull Runnable command) {
71 mainThreadHandler.post(command);
87 public void execute(@NonNull Runnable command) {
88 mDiskIO.execute(command);
  /external/jcommander/src/test/java/com/beust/jcommander/command/
CommandAdd.java 19 package com.beust.jcommander.command;
CommandHidden.java 1 package com.beust.jcommander.command;
8 @Parameters(commandNames = "add", commandDescription = "Hidden command to add file contents to the index", hidden = true)
NamedCommandAdd.java 1 package com.beust.jcommander.command;
  /external/libcups/cups/
sidechannel.c 45 * 'cupsSideChannelDoRequest()' - Send a side-channel command to a backend and wait for a response.
51 * do not support the specified side-channel command.
60 cups_sc_status_t /* O - Status of command */
62 cups_sc_command_t command, /* I - Command to send */
67 cups_sc_status_t status; /* Status of command */
68 cups_sc_command_t rcommand; /* Response command */
71 if (cupsSideChannelWrite(command, CUPS_SC_STATUS_NONE, NULL, 0, timeout))
77 if (rcommand != command)
101 cups_sc_command_t *command, /* O - Command code *
    [all...]
  /external/ltp/include/
safe_stdio_fn.h 33 const char *command, const char *type);
  /external/ltp/lib/
safe_stdio.c 74 const char *command, const char *type)
80 stream = popen(command, type);
86 file, lineno, command, type);
90 file, lineno, command, type);
  /external/mesa3d/src/gallium/drivers/svga/include/
svga_escape.h 37 * Namespace IDs for the escape command
48 * minor command number, respectively.
50 * Major command number allocation:
82 uint32 command; member in struct:__anon30042
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/command/
SimpleCompositeCommandHandler.java 16 package org.mockftpserver.core.command;
34 * The first invocation of the CWD command will fail (reply code 500). The seconds will succeed.
82 * the CommandHandler instance to which the Nth {@link #handleCommand(Command, Session)} has been or will
96 * @see org.mockftpserver.core.command.CommandHandler#handleCommand(org.mockftpserver.core.command.Command, org.mockftpserver.core.session.Session)
98 public void handleCommand(Command command, Session session) throws Exception {
99 Assert.notNull(command, "command");
    [all...]
  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/stub/
RunStubFtpServer.groovy 20 import org.mockftpserver.stub.command.PwdCommandHandler
21 import org.mockftpserver.core.command.CommandNames
  /external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/core/command/
SimpleCompositeCommandHandler.java 16 package org.mockftpserver.core.command;
34 * The first invocation of the CWD command will fail (reply code 500). The seconds will succeed.
82 * the CommandHandler instance to which the Nth {@link #handleCommand(Command, Session)} has been or will
96 * @see org.mockftpserver.core.command.CommandHandler#handleCommand(org.mockftpserver.core.command.Command, org.mockftpserver.core.session.Session)
98 public void handleCommand(Command command, Session session) throws Exception {
99 Assert.notNull(command, "command");
    [all...]
  /external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/stub/command/
AcctCommandHandlerTest.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;
35 private Command command1;
36 private Command command2;
66 * @see org.mockftpserver.stub.command.AbstractCommandHandlerTest#setUp()
72 command1 = new Command(CommandNames.ACCT, array(ACCOUNT1));
73 command2 = new Command(CommandNames.ACCT, array(ACCOUNT2));
    [all...]
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...]
SiteCommandHandlerTest.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;
35 private Command command1;
36 private Command command2;
39 * Test the handleCommand(Command,Session) method
65 * @see org.mockftpserver.stub.command.AbstractCommandHandlerTest#setUp()
71 command1 = new Command(CommandNames.SITE, array(PARAMETERS1));
    [all...]
SmntCommandHandlerTest.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;
32 private Command command1;
33 private Command command2;
36 * Test the handleCommand(Command,Session) method
62 * @see org.mockftpserver.stub.command.AbstractCommandHandlerTest#setUp()
68 command1 = new Command(CommandNames.SMNT, array(DIR1));
    [all...]
  /external/parameter-framework/upstream/parameter/
CommandHandlerWrapper.h 41 bool process(const std::string &command, const std::vector<std::string> &arguments,

Completed in 459 milliseconds

<<11121314151617181920>>