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

1 2 3 4 56 7 8 91011>>

  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
SiteCommandHandlerTest.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
49 Command createValidCommand() {
50 return new Command(CommandNames.SITE, [])
StruCommandHandlerTest.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.STRU, [])
SystCommandHandlerTest.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
54 Command createValidCommand() {
55 return new Command(CommandNames.SYST, [])
  /frameworks/base/cmds/uiautomator/cmds/uiautomator/src/com/android/commands/uiautomator/
Launcher.java 24 * Entry point into the uiautomator command line
27 * command line arguments. It also prints out help arguments for each sub commands.
29 * To add a new sub command, implement {@link Command} and add an instance into COMMANDS array
36 public static abstract class Command {
39 public Command(String name) {
44 * Returns the name of the sub command
52 * Returns a one-liner of the function of this command
58 * Returns a detailed explanation of the command usage
66 * Starts the command with the provided argument
76 Command command = findCommand(args[0]); local
    [all...]
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/stub/command/
AbstractStubDataCommandHandler.java 16 package org.mockftpserver.stub.command;
18 import org.mockftpserver.core.command.AbstractTrackingCommandHandler;
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;
36 * Subclasses can optionally override the {@link #beforeProcessData(Command, Session, InvocationRecord)}
37 * method for logic before the data transfer or the {@link #afterProcessData(Command, Session, InvocationRecord)}
86 * Handle the command. Perform the following steps:
    [all...]
EpsvCommandHandler.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 EPSV (Extended Address Passive Mode) command. Request the Session to switch
50 * @see org.mockftpserver.core.command.CommandHandler#handleCommand(org.mockftpserver.core.command.Command, org.mockftpserver.core.session.Session)
    [all...]
SystCommandHandler.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;
26 * CommandHandler for the SYST (System) command. Send back a reply code of 215. By default,
49 public void handleCommand(Command command, Session session, InvocationRecord invocationRecord) {
54 * Set the systemName String to be returned by this command
    [all...]
AbstractStorCommandHandler.java 16 package org.mockftpserver.stub.command;
18 import org.mockftpserver.core.command.Command;
19 import org.mockftpserver.core.command.InvocationRecord;
40 * @see AbstractStubDataCommandHandler#processData(org.mockftpserver.core.command.Command, org.mockftpserver.core.session.Session, org.mockftpserver.core.command.InvocationRecord)
42 protected void processData(Command command, Session session, InvocationRecord invocationRecord) {
  /external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/stub/command/
AbstractStubDataCommandHandler.java 16 package org.mockftpserver.stub.command;
18 import org.mockftpserver.core.command.AbstractCommandHandler;
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;
36 * Subclasses can optionally override the {@link #beforeProcessData(Command, Session, InvocationRecord)}
37 * method for logic before the data transfer or the {@link #afterProcessData(Command, Session, InvocationRecord)}
87 * Handle the command. Perform the following steps:
    [all...]
SystCommandHandler.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;
26 * CommandHandler for the SYST (System) command. Send back a reply code of 215. By default,
52 * @see org.mockftpserver.core.command.CommandHandler#handleCommand(Command, Session, InvocationRecord)
54 public void handleCommand(Command command, Session session, InvocationRecord invocationRecord) {
    [all...]
  /external/syslinux/gpxe/src/include/
unistd.h 9 extern int execv ( const char *command, char * const argv[] );
12 * Execute command
14 * @v command Command name
16 * @ret rc Command exit status
20 #define execl( command, arg, ... ) ( { \
22 int rc = execv ( (command), argv ); \
  /frameworks/av/services/audioflinger/
FastCaptureState.cpp 31 const char *FastCaptureState::commandToString(Command command)
33 const char *str = FastThreadState::commandToString(command);
37 switch (command) {
  /libcore/ojluni/src/main/java/java/util/concurrent/
ScheduledExecutorService.java 100 * @param command the task to execute
108 * @throws NullPointerException if command is null
110 public ScheduledFuture<?> schedule(Runnable command,
154 * @param command the task to execute
165 * @throws NullPointerException if command is null
168 public ScheduledFuture<?> scheduleAtFixedRate(Runnable command,
193 * @param command the task to execute
205 * @throws NullPointerException if command is null
208 public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command,
  /system/tpm/trunks/
tpm_handle.h 30 // until a response is received and the callback has been called. Command and
36 // std::string response = handle.SendCommandAndWait(command);
47 void SendCommand(const std::string& command,
49 std::string SendCommandAndWait(const std::string& command) override;
52 // Writes a |command| to /dev/tpm0 and reads the |response|. Returns
54 TPM_RC SendCommandInternal(const std::string& command, std::string* response);
  /external/toybox/toys/posix/
sed.c 27 -n No default output (use the p command to output matched lines)
37 Each COMMAND may be preceded by an address which limits the command to
41 [ADDRESS[,ADDRESS]]COMMAND
64 of input early (using the n and N command), but other than that command
67 Each COMMAND starts with a single character. The following commands take
70 { Start a new command block, continuing until a corresponding "}".
71 Command blocks may nest. If the block has an address, commands within
74 } End command block (this command cannot have an address
259 struct sedcmd *command; local
631 struct sedcmd *command; local
721 struct sedcmd *command = (void *)TT.pattern; local
    [all...]
  /bionic/libc/kernel/uapi/asm-x86/asm/
ist.h 24 __u32 command; member in struct:ist_info
  /external/jcommander/src/test/java/com/beust/jcommander/command/
CommandMain.java 19 package com.beust.jcommander.command;
  /external/kernel-headers/original/uapi/asm-x86/asm/
ist.h 25 __u32 command; member in struct:ist_info
  /external/mesa3d/src/compiler/glsl/
test.cpp 49 printf("*** usage: %s <command> <options>\n", name);
61 const char *command = argv[1]; local
64 return command;
69 const char *command = extract_command_from_argv(&argc, argv); local
70 if (strcmp(command, "optpass") == 0) {
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/command/
ReplyTextBundleAware.java 16 package org.mockftpserver.core.command;
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/command/
EpsvCommandHandler.java 16 package org.mockftpserver.fake.command;
18 import org.mockftpserver.core.command.Command;
19 import org.mockftpserver.core.command.ReplyCodes;
25 * CommandHandler for the EPSV command. Handler logic:
39 protected void handle(Command command, Session session) {
PwdCommandHandler.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 PWD command. Handler logic:
35 protected void handle(Command command, Session session) {
  /external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/core/command/
ReplyTextBundleAware.java 16 package org.mockftpserver.core.command;
  /external/perf_data_converter/src/quipper/
run_command.h 15 // Executes |command|. stderr is directed to /dev/null. If |output| is not null,
17 // status of the command if it exited normally, or -1 otherwise. If the call
19 int RunCommand(const std::vector<string>& command, std::vector<char>* output);
  /frameworks/base/core/java/android/os/
IRecoverySystem.aidl 26 boolean setupBcb(in String command);
28 void rebootRecoveryWithCommand(in String command);

Completed in 1670 milliseconds

1 2 3 4 56 7 8 91011>>