/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/command/ |
QuitCommandHandler.java | 16 package org.mockftpserver.fake.command;
18 import org.mockftpserver.core.command.Command;
19 import org.mockftpserver.core.command.ReplyCodes;
23 * CommandHandler for the QUIT command. Return a reply code of 221 and close the current session.
30 protected void handle(Command command, Session session) {
|
RestCommandHandler.java | 16 package org.mockftpserver.fake.command;
18 import org.mockftpserver.core.command.Command;
19 import org.mockftpserver.core.command.ReplyCodes;
23 * CommandHandler for the REST command. Handler logic:
34 protected void handle(Command command, Session session) {
|
SiteCommandHandler.java | 16 package org.mockftpserver.fake.command;
18 import org.mockftpserver.core.command.Command;
19 import org.mockftpserver.core.command.ReplyCodes;
23 * CommandHandler for the SITE command. Handler logic:
33 protected void handle(Command command, Session session) {
|
SmntCommandHandler.java | 16 package org.mockftpserver.fake.command;
18 import org.mockftpserver.core.command.Command;
19 import org.mockftpserver.core.command.ReplyCodes;
23 * CommandHandler for the SMNT command. Handler logic:
34 protected void handle(Command command, Session session) {
|
StouCommandHandler.java | 16 package org.mockftpserver.fake.command;
18 import org.mockftpserver.core.command.Command;
21 * CommandHandler for the STOU command. Handler logic:
49 protected String getOutputFile(Command command) {
50 String baseName = defaultIfNullOrEmpty(command.getOptionalString(0), "Temp");
|
StruCommandHandler.java | 16 package org.mockftpserver.fake.command;
18 import org.mockftpserver.core.command.Command;
19 import org.mockftpserver.core.command.ReplyCodes;
23 * CommandHandler for the STRU command. Handler logic:
34 protected void handle(Command command, Session session) {
|
ReinCommandHandler.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 REIN command. Handler logic:
35 protected void handle(Command command, Session session) {
|
StatCommandHandler.java | 16 package org.mockftpserver.fake.command;
18 import org.mockftpserver.core.command.Command;
19 import org.mockftpserver.core.command.ReplyCodes;
23 * CommandHandler for the STAT command. Handler logic:
36 protected void handle(Command command, Session session) {
|
SystCommandHandler.java | 16 package org.mockftpserver.fake.command;
18 import org.mockftpserver.core.command.Command;
19 import org.mockftpserver.core.command.ReplyCodes;
23 * CommandHandler for the SYST command. Handler logic:
38 protected void handle(Command command, Session session) {
|
/external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/stub/command/ |
ReinCommandHandlerTest.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
55 * @see org.mockftpserver.stub.command.AbstractCommandHandlerTest#setUp()
61 command1 = new Command(CommandNames.REIN, EMPTY); [all...] |
TypeCommandHandlerTest.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.TypeCommandHandler;
38 final Command COMMAND1 = new Command("TYPE", array("A"));
39 final Command COMMAND2 = new Command("TYPE", array("B")); [all...] |
/external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/stub/command/ |
TypeCommandHandlerTest.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;
38 final Command COMMAND1 = new Command("TYPE", array("A"));
39 final Command COMMAND2 = new Command("TYPE", array("B")); [all...] |
/external/libweave/src/ |
base_api_handler.h | 15 class Command; 31 void UpdateBaseConfiguration(const std::weak_ptr<Command>& command); 32 void UpdateDeviceInfo(const std::weak_ptr<Command>& command);
|
/external/vogar/src/vogar/android/ |
RunActivityTask.java | 21 import vogar.commands.Command; 29 @Override public Command createActionCommand(Action action, String skipPast, int monitorPort) { 34 return new Command(run.log,
|
/external/libweave/include/weave/ |
command.h | 15 class Command { 30 // Returns the full command ID. 33 // Returns the full name of the command. 36 // Returns the full path to the component this command is intended for. 39 // Returns the command state. 40 virtual Command::State GetState() const = 0; 42 // Returns the origin of the command. 43 virtual Command::Origin GetOrigin() const = 0; 45 // Returns the command parameters. 48 // Returns the command progress [all...] |
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/command/ |
CommandHandler.java | 16 package org.mockftpserver.core.command;
21 * Interface for classes that can handle an FTP command.
30 * Handle the specified command for the session. This method is declared to throw
35 * @param command - the Command to be handled
36 * @param session - the session on which the Command was submitted
40 public void handleCommand(Command command, Session session) throws Exception;
|
/external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/core/command/ |
CommandHandler.java | 16 package org.mockftpserver.core.command;
21 * Interface for classes that can handle an FTP command.
30 * Handle the specified command for the session. This method is declared to throw
35 * @param command - the Command to be handled
36 * @param session - the session on which the Command was submitted
40 public void handleCommand(Command command, Session session) throws Exception;
|
/system/extras/simpleperf/ |
cmd_dumprecord_test.cpp | 19 #include "command.h" 22 static std::unique_ptr<Command> DumpCmd() {
|
/external/clang/include/clang/Driver/ |
Job.h | 26 class Command; 41 /// Command - An executable path/name and argument vector to 43 class Command { 60 /// Response file name, if this command is set to use one, or nullptr 73 /// exclusive file, while others remains as regular command line arguments. 74 /// This functions fills a vector with the regular command line arguments, 85 Command(const Action &Source, const Tool &Creator, const char *Executable, 90 Command(const Command &) = default; 91 virtual ~Command() {} [all...] |
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/stub/command/ |
AppeCommandHandler.java | 16 package org.mockftpserver.stub.command;
18 import org.mockftpserver.core.command.Command;
19 import org.mockftpserver.core.command.InvocationRecord;
23 * CommandHandler for the APPE (Append) command. Send back two replies on the control connection: a
28 * <li>{@link #PATHNAME_KEY} ("pathname") - the pathname of the directory submitted on the invocation (the first command parameter)
38 * @see org.mockftpserver.stub.command.AbstractStubDataCommandHandler#beforeProcessData(org.mockftpserver.core.command.Command, org.mockftpserver.core.session.Session, org.mockftpserver.core.command.InvocationRecord) [all...] |
StorCommandHandler.java | 16 package org.mockftpserver.stub.command;
18 import org.mockftpserver.core.command.Command;
19 import org.mockftpserver.core.command.InvocationRecord;
23 * CommandHandler for the STOR (Store) command. Send back two replies on the control connection: a
28 * <li>{@link #PATHNAME_KEY} ("pathname") - the pathname of the directory submitted on the invocation (the first command parameter)
38 * @see org.mockftpserver.stub.command.AbstractStubDataCommandHandler#beforeProcessData(org.mockftpserver.core.command.Command, org.mockftpserver.core.session.Session, org.mockftpserver.core.command.InvocationRecord) [all...] |
/frameworks/av/services/audioflinger/ |
FastCaptureState.h | 40 // Extends FastThreadState::Command 41 static const Command 47 // never returns NULL; asserts if command is invalid 48 static const char *commandToString(Command command);
|
/external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/ |
AborCommandHandlerTest.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 45 Command createValidCommand() { 46 return new Command(CommandNames.ABOR, [])
|
AlloCommandHandlerTest.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 45 Command createValidCommand() { 46 return new Command(CommandNames.ALLO, [])
|
EpsvCommandHandlerTest.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 52 Command createValidCommand() { 53 return new Command(CommandNames.EPSV, [])
|