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

1 2 3 4 5 6 7 891011>>

  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
TypeCommandHandlerTest.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
58 Command createValidCommand() {
59 return new Command(CommandNames.TYPE, ['A'])
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/euicc/apdu/
TransmitApduLogicalChannelInvocation.java 30 * String, Message)}. This takes an APDU command as the input and return the response. The status of
48 protected void sendRequestMessage(ApduCommand command, Message msg) {
49 Rlog.v(LOG_TAG, "Send: " + command);
50 mCi.iccTransmitApduLogicalChannel(command.channel, command.cla | command.channel,
51 command.ins, command.p1, command.p2, command.p3, command.cmdHex, msg)
    [all...]
  /device/google/accessory/arduino/USB_Host_Shield/
Max_LCD.cpp 139 command(LCD_FUNCTIONSET | _displayfunction);
151 command(LCD_ENTRYMODESET | _displaymode);
157 command(LCD_CLEARDISPLAY); // clear display, set cursor position to zero
158 delayMicroseconds(2000); // this command takes a long time!
163 command(LCD_RETURNHOME); // set cursor position to zero
164 delayMicroseconds(2000); // this command takes a long time!
174 command(LCD_SETDDRAMADDR | (col + row_offsets[row]));
180 command(LCD_DISPLAYCONTROL | _displaycontrol);
184 command(LCD_DISPLAYCONTROL | _displaycontrol);
190 command(LCD_DISPLAYCONTROL | _displaycontrol)
252 inline void Max_LCD::command(uint8_t value) { function in class:Max_LCD
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/
InvokeMethodAfterMultipleThreadSuspensionTest.java 30 * JDWP unit test for ClassType.InvokeCommand command with thread suspended more than once before
42 CommandPacket command = new CommandPacket( local
45 command.setNextValueAsClassID(classID);
46 command.setNextValueAsThreadID(threadId);
47 command.setNextValueAsMethodID(methodId);
48 command.setNextValueAsInt(0);
49 command.setNextValueAsInt(invoke_options);
50 return command;
InvokeMethodWithSuspensionTest.java 30 * JDWP unit test for ClassType.InvokeCommand command with a thread suspension.
40 CommandPacket command = new CommandPacket( local
43 command.setNextValueAsClassID(classID);
44 command.setNextValueAsThreadID(threadId);
45 command.setNextValueAsMethodID(methodId);
46 command.setNextValueAsInt(0);
47 command.setNextValueAsInt(invoke_options);
48 return command;
NewInstanceAfterMultipleThreadSuspensionTest.java 29 * JDWP unit test for ClassType.NewInstance command with thread suspended more than once before the
41 CommandPacket command = new CommandPacket( local
44 command.setNextValueAsClassID(classID);
45 command.setNextValueAsThreadID(threadId);
46 command.setNextValueAsMethodID(methodId);
47 command.setNextValueAsInt(0);
48 command.setNextValueAsInt(invoke_options);
49 return command;
NewInstanceWithSuspensionTest.java 29 * JDWP unit test for ClassType.NewInstance command with a thread suspension.
39 CommandPacket command = new CommandPacket( local
42 command.setNextValueAsClassID(classID);
43 command.setNextValueAsThreadID(threadId);
44 command.setNextValueAsMethodID(methodId);
45 command.setNextValueAsInt(0);
46 command.setNextValueAsInt(invoke_options);
47 return 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/MockFtpServer/src/main/java/org/mockftpserver/stub/command/
AlloCommandHandler.java 16 package org.mockftpserver.stub.command;
18 import org.mockftpserver.core.command.Command;
19 import org.mockftpserver.core.command.CommandHandler;
20 import org.mockftpserver.core.command.InvocationRecord;
21 import org.mockftpserver.core.command.ReplyCodes;
28 * CommandHandler for the ALLO (Allocate) command. Send back a reply code of 200.
33 * on the invocation (the first command parameter)
35 * on the invocation (the second command parameter)
55 * @see org.mockftpserver.core.command.CommandHandler#handleCommand(org.mockftpserver.core.command.Command, org.mockftpserver.core.sessio (…)
    [all...]
EprtCommandHandler.java 16 package org.mockftpserver.stub.command;
18 import org.mockftpserver.core.command.Command;
19 import org.mockftpserver.core.command.CommandHandler;
20 import org.mockftpserver.core.command.InvocationRecord;
21 import org.mockftpserver.core.command.ReplyCodes;
29 * CommandHandler for the EPRT command. Send back a reply code of 200.
54 * Handle the command
57 * @see org.mockftpserver.core.command.CommandHandler#handleCommand(org.mockftpserver.core.command.Command, org.mockftpserver.core.session.Session)
    [all...]
FileRetrCommandHandler.java 16 package org.mockftpserver.stub.command;
19 import org.mockftpserver.core.command.Command;
20 import org.mockftpserver.core.command.CommandHandler;
21 import org.mockftpserver.core.command.InvocationRecord;
30 * CommandHandler for the RETR command. Returns the contents of the specified file on the
35 * be returned from this command. The file path is relative to the CLASSPATH (using the
43 * <li>{@link #PATHNAME_KEY} ("pathname") - the pathname of the file submitted on the invocation (the first command parameter)
73 * @see org.mockftpserver.stub.command.AbstractStubDataCommandHandler#beforeProcessData(org.mockftpserver.core.command.Command, org.mockftpserver.core.session.Session, org.mockftpserver.core.command.InvocationRecord)
    [all...]
PortCommandHandler.java 16 package org.mockftpserver.stub.command;
18 import org.mockftpserver.core.command.Command;
19 import org.mockftpserver.core.command.CommandHandler;
20 import org.mockftpserver.core.command.InvocationRecord;
21 import org.mockftpserver.core.command.ReplyCodes;
29 * CommandHandler for the PORT command. Send back a reply code of 200.
53 * Handle the command
56 * @see org.mockftpserver.core.command.CommandHandler#handleCommand(org.mockftpserver.core.command.Command, org.mockftpserver.core.session.Session)
    [all...]
RetrCommandHandler.java 16 package org.mockftpserver.stub.command;
18 import org.mockftpserver.core.command.Command;
19 import org.mockftpserver.core.command.CommandHandler;
20 import org.mockftpserver.core.command.InvocationRecord;
25 * CommandHandler for the RETR (Retrieve) command. Return the configured file contents on the data
33 * <li>{@link #PATHNAME_KEY} ("pathname") - the pathname of the file submitted on the invocation (the first command parameter)
74 * @see org.mockftpserver.stub.command.AbstractStubDataCommandHandler#beforeProcessData(org.mockftpserver.core.command.Command, org.mockftpserver.core.session.Session, org.mockftpserver.core.command.InvocationRecord)
    [all...]
  /external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/stub/command/
StouCommandHandlerTest.java 16 package org.mockftpserver.stub.command;
18 import org.mockftpserver.core.command.AbstractCommandHandlerTestCase;
19 import org.mockftpserver.core.command.Command;
20 import org.mockftpserver.core.command.CommandNames;
21 import org.mockftpserver.core.command.ReplyCodes;
36 * @see org.mockftpserver.core.command.AbstractCommandHandlerTestCase#setUp()
59 Command command = new Command(CommandNames.STOU, array(FILENAME1)); local
    [all...]
AborCommandHandlerTest.java 16 package org.mockftpserver.stub.command;
18 import org.mockftpserver.core.command.*;
19 import org.mockftpserver.core.command.AbstractCommandHandlerTestCase;
36 final Command COMMAND = new Command(CommandNames.ABOR, EMPTY);
41 commandHandler.handleCommand(COMMAND, session);
51 * @see org.mockftpserver.core.command.AbstractCommandHandlerTestCase#setUp()
  /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/
AlloCommandHandler.java 16 package org.mockftpserver.stub.command;
20 import org.mockftpserver.core.command.Command;
21 import org.mockftpserver.core.command.CommandHandler;
22 import org.mockftpserver.core.command.InvocationRecord;
23 import org.mockftpserver.core.command.ReplyCodes;
28 * CommandHandler for the ALLO (Allocate) command. Send back a reply code of 200.
33 * on the invocation (the first command parameter)
35 * on the invocation (the second command parameter)
56 * @see org.mockftpserver.core.command.CommandHandler#handleCommand(Command, Session, InvocationRecord)
    [all...]
FileRetrCommandHandler.java 16 package org.mockftpserver.stub.command;
24 import org.mockftpserver.core.command.Command;
25 import org.mockftpserver.core.command.CommandHandler;
26 import org.mockftpserver.core.command.InvocationRecord;
32 * CommandHandler for the RETR command. Returns the contents of the specified file on the
37 * be returned from this command. The file path is relative to the CLASSPATH (using the
45 * <li>{@link #PATHNAME_KEY} ("pathname") - the pathname of the file submitted on the invocation (the first command parameter)
76 * @see org.mockftpserver.stub.command.AbstractStubDataCommandHandler#beforeProcessData(org.mockftpserver.core.command.Command, org.mockftpserver.core.session.Session, org.mockftpserver.core.command.InvocationRecord)
    [all...]
RetrCommandHandler.java 16 package org.mockftpserver.stub.command;
19 import org.mockftpserver.core.command.Command;
20 import org.mockftpserver.core.command.CommandHandler;
21 import org.mockftpserver.core.command.InvocationRecord;
26 * CommandHandler for the RETR (Retrieve) command. Return the configured file contents on the data
34 * <li>{@link #PATHNAME_KEY} ("pathname") - the pathname of the file submitted on the invocation (the first command parameter)
73 * @see org.mockftpserver.stub.command.AbstractStubDataCommandHandler#beforeProcessData(org.mockftpserver.core.command.Command, org.mockftpserver.core.session.Session, org.mockftpserver.core.command.InvocationRecord)
    [all...]
  /external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/stub/command/
AppeCommandHandlerTest.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.AppeCommandHandler;
37 * @see org.mockftpserver.stub.command.AbstractCommandHandlerTest#setUp()
59 Command command = new Command(CommandNames.APPE, array(FILENAME1)); local
    [all...]
StorCommandHandlerTest.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.StorCommandHandler;
37 * @see org.mockftpserver.stub.command.AbstractCommandHandlerTest#setUp()
59 Command command = new Command(CommandNames.STOR, array(FILENAME1)); local
    [all...]
StouCommandHandlerTest.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.StouCommandHandler;
37 * @see org.mockftpserver.stub.command.AbstractCommandHandlerTest#setUp()
60 Command command = new Command(CommandNames.STOU, array(FILENAME1)); local
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/
jsilver.sablecc 63 command, // ClearSilver command: "<?cs var:".
64 args, // Args to command: "some.variable=3 ?>"
86 {command} var = 'var';
87 {command} lvar = 'lvar';
88 {command} evar = 'evar';
89 {command} uvar = 'uvar';
90 {command} set = 'set';
91 {command} if = 'if';
92 {command} else_if = ('elif' | 'elseif')
    [all...]
  /system/tpm/trunks/
tpm_handle.cc 60 void TpmHandle::SendCommand(const std::string& command,
62 callback.Run(SendCommandAndWait(command));
65 std::string TpmHandle::SendCommandAndWait(const std::string& command) {
67 TPM_RC result = SendCommandInternal(command, &response);
74 TPM_RC TpmHandle::SendCommandInternal(const std::string& command,
77 int result = HANDLE_EINTR(write(fd_, command.data(), command.length()));
82 if (static_cast<size_t>(result) != command.length()) {
84 << command.length();
  /external/libmojo/mojo/edk/system/
data_pipe_control_message.cc 16 DataPipeCommand command,
24 data->command = command;

Completed in 226 milliseconds

1 2 3 4 5 6 7 891011>>