/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/command/ |
NlstCommandHandler.java | 16 package org.mockftpserver.fake.command;
18 import org.mockftpserver.core.command.Command;
19 import org.mockftpserver.core.command.ReplyCodes;
26 * CommandHandler for the NLST command. Handler logic:
47 protected void handle(Command command, Session session) {
50 String path = getRealPath(session, command.getParameter(0));
|
RntoCommandHandler.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 RNTO command. Handler logic:
27 * <li>If this command was not preceded by a valid RNFR command, then reply with 503</li>
32 * <li>Otherwise, rename the file, remove the FROM path stored in the session by the RNFR command, and reply with 250</li>
41 protected void handle(Command command, Session session) { [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...] |
PasvCommandHandler.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;
30 * CommandHandler for the PASV (Passove Mode) command. Request the Session to switch to passive
53 * @see org.mockftpserver.core.command.CommandHandler#handleCommand(org.mockftpserver.core.command.Command, org.mockftpserver.core.session.Session) [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...] |
/external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/core/command/ |
StaticReplyCommandHandlerTest.java | 16 package org.mockftpserver.core.command;
34 private static final Command COMMAND = new Command("ANY", EMPTY);
88 commandHandler.handleCommand(COMMAND, session);
106 commandHandler.handleCommand(COMMAND, session);
120 commandHandler.handleCommand(COMMAND, session);
|
/external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/stub/command/ |
AppeCommandHandlerTest.java | 16 package org.mockftpserver.stub.command;
18 import org.mockftpserver.core.command.*;
19 import org.mockftpserver.core.command.AbstractCommandHandlerTestCase;
34 * @see org.mockftpserver.core.command.AbstractCommandHandlerTestCase#setUp()
56 Command command = new Command(CommandNames.APPE, array(FILENAME1));
local 57 commandHandler.handleCommand(command, session);
|
StorCommandHandlerTest.java | 16 package org.mockftpserver.stub.command;
18 import org.mockftpserver.core.command.*;
19 import org.mockftpserver.core.command.AbstractCommandHandlerTestCase;
34 * @see org.mockftpserver.core.command.AbstractCommandHandlerTestCase#setUp()
56 Command command = new Command(CommandNames.STOR, array(FILENAME1));
local 57 commandHandler.handleCommand(command, session);
|
SystCommandHandlerTest.java | 16 package org.mockftpserver.stub.command;
20 import org.mockftpserver.core.command.*;
21 import org.mockftpserver.core.command.AbstractCommandHandlerTestCase;
48 final Command COMMAND = new Command(CommandNames.SYST, EMPTY);
50 commandHandler.handleCommand(COMMAND, session);
72 * @see org.mockftpserver.core.command.AbstractCommandHandlerTestCase#setUp()
|
/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...] |
StouCommandHandler.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;
22 import org.mockftpserver.core.command.ReplyCodes;
26 * CommandHandler for the STOU (Store Unique) command. Send back two replies on the control connection: a
50 * @see org.mockftpserver.stub.command.AbstractStubDataCommandHandler#processData(org.mockftpserver.core.command.Command, org.mockftpserver.core.session.Session, org.mockftpserver.core.command.InvocationRecord) [all...] |
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/vogar/src/vogar/android/ |
AndroidSdk.java | 32 import vogar.commands.Command; 65 List<String> path = new Command.Builder(log).args("which", "dx") 74 List<String> adbPath = new Command.Builder(log) 265 new Command.Builder(log) 277 new Command(log, "aapt", 287 new Command(log, "aapt", "add", "-k", apk.getPath(), dex.getPath()).execute(); 291 new Command(log, "adb", "install", "-r", apk.getPath()).execute(); 295 new Command.Builder(log)
|
/external/vogar/test/vogar/android/ |
DeviceRuntimeSshTargetTest.java | 30 import vogar.commands.Command; 58 Command command = builder.build(run.target); local 59 List<String> args = command.getArgs();
|
/packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/ |
Compress.java | 38 static public class Compressor extends Dicttool.Command { 39 public static final String COMMAND = "compress"; 46 return COMMAND + " <src_filename> <dst_filename>: " 53 throw new RuntimeException("Too many arguments for command " + COMMAND); 67 static public class Uncompressor extends Dicttool.Command { 68 public static final String COMMAND = "uncompress"; 75 return COMMAND + " <src_filename> <dst_filename>: " 82 throw new RuntimeException("Too many arguments for command " + COMMAND); [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
lmat.h | 27 LPWSTR Command; 36 LPWSTR Command;
|
/prebuilts/gdb/darwin-x86/lib/python2.7/distutils/command/ |
clean.py | 1 """distutils.command.clean 3 Implements the Distutils 'clean' command.""" 10 from distutils.core import Command 14 class clean(Command): 16 description = "clean up temporary files from 'build' command"
|
install_scripts.py | 1 """distutils.command.install_scripts 3 Implements the Distutils 'install_scripts' command, for installing 11 from distutils.core import Command 15 class install_scripts (Command):
|
/prebuilts/gdb/linux-x86/lib/python2.7/distutils/command/ |
clean.py | 1 """distutils.command.clean 3 Implements the Distutils 'clean' command.""" 10 from distutils.core import Command 14 class clean(Command): 16 description = "clean up temporary files from 'build' command"
|
install_scripts.py | 1 """distutils.command.install_scripts 3 Implements the Distutils 'install_scripts' command, for installing 11 from distutils.core import Command 15 class install_scripts (Command):
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/ |
clean.py | 1 """distutils.command.clean 3 Implements the Distutils 'clean' command.""" 10 from distutils.core import Command 14 class clean(Command): 16 description = "clean up temporary files from 'build' command"
|
install_scripts.py | 1 """distutils.command.install_scripts 3 Implements the Distutils 'install_scripts' command, for installing 11 from distutils.core import Command 15 class install_scripts (Command):
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/ |
clean.py | 1 """distutils.command.clean 3 Implements the Distutils 'clean' command.""" 10 from distutils.core import Command 14 class clean(Command): 16 description = "clean up temporary files from 'build' command"
|
install_scripts.py | 1 """distutils.command.install_scripts 3 Implements the Distutils 'install_scripts' command, for installing 11 from distutils.core import Command 15 class install_scripts (Command):
|