HomeSort by relevance Sort by last modified time
    Searched refs:Command (Results 276 - 300 of 994) sorted by null

<<11121314151617181920>>

  /external/brotli/c/enc/
backward_references_hq.h 16 #include "./command.h"
29 Command* commands, size_t* num_commands, size_t* num_literals);
35 Command* commands, size_t* num_commands, size_t* num_literals);
68 length of the i-th command (copy length plus insert length).
86 Command* commands, size_t* num_literals);
  /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/
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...]
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/
PasvCommandHandlerTest.java 16 package org.mockftpserver.stub.command;
20 import org.mockftpserver.core.command.AbstractCommandHandlerTestCase;
21 import org.mockftpserver.core.command.Command;
22 import org.mockftpserver.core.command.CommandNames;
23 import org.mockftpserver.core.command.ReplyCodes;
53 final Command COMMAND = new Command(CommandNames.PASV, EMPTY);
55 commandHandler.handleCommand(COMMAND, session);
    [all...]
PortCommandHandlerTest.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;
44 final Command COMMAND = new Command(CommandNames.PORT, PARAMETERS);
51 commandHandler.handleCommand(COMMAND, session);
    [all...]
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...]
  /external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/core/command/
Command.java 16 package org.mockftpserver.core.command;
23 * Represents a command received from an FTP client, containing a command name and parameters.
30 public final class Command {
36 * Construct a new immutable instance with the specified command name and parameters
37 * @param name - the command name; may not be null
38 * @param parameters - the command parameters; may be empty; may not benull
40 public Command(String name, String[] parameters) {
75 * @return the parameter value as a String, or null if this Command does not have a parameter for that index
88 if (obj == null || !(obj instanceof Command)) {
    [all...]
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/
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...]
PasvCommandHandlerTest.java 16 package org.mockftpserver.stub.command;
23 import org.mockftpserver.core.command.Command;
24 import org.mockftpserver.core.command.CommandNames;
25 import org.mockftpserver.core.command.ReplyCodes;
26 import org.mockftpserver.stub.command.PasvCommandHandler;
55 final Command COMMAND = new Command(CommandNames.PASV, EMPTY);
57 commandHandler.handleCommand(COMMAND, session);
    [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...]
SystCommandHandlerTest.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;
23 import org.mockftpserver.stub.command.SystCommandHandler;
49 final Command COMMAND = new Command(CommandNames.SYST, EMPTY);
51 commandHandler.handleCommand(COMMAND, session);
    [all...]
  /external/vogar/src/vogar/
HostFileCache.java 21 import vogar.commands.Command;
36 List<String> rawResult = new Command.Builder(log).args("cp", source, destination).execute();
45 List<String> rawResult = new Command.Builder(log).args("mv", source, destination).execute();
  /external/clang/lib/Driver/
Job.cpp 1 //===--- Job.cpp - Command to Execute -------------------------------------===//
30 Command::Command(const Action &Source, const Tool &Creator,
82 void Command::printArg(raw_ostream &OS, const char *Arg, bool Quote) {
100 void Command::writeResponseFile(raw_ostream &OS) const {
126 void Command::buildArgvForResponseFile(
155 void Command::Print(raw_ostream &OS, const char *Terminator, bool Quote,
225 void Command::setResponseFile(const char *FileName) {
231 int Command::Execute(const StringRef **Redirects, std::string *ErrMsg,
246 // We need to put arguments in a response file (command is too large
    [all...]
  /external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/core/session/
DefaultSession_RunTest.java 20 import org.mockftpserver.core.command.Command;
21 import org.mockftpserver.core.command.CommandHandler;
22 import org.mockftpserver.core.command.CommandNames;
23 import org.mockftpserver.core.command.ConnectCommandHandler;
24 import org.mockftpserver.core.command.InvocationRecord;
26 import org.mockftpserver.stub.command.AbstractStubCommandHandler;
44 private static final Command COMMAND = new Command("USER", EMPTY);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/EbcDxe/EbcDebugger/
EbcDebuggerConfig.c 37 L"usage: EdbCfg <Command>\n"
67 @param Command Point to the command.
68 @param CommandArg The argument for this command.
74 CHAR16 *Command,
82 if (StriCmp (Command, L"BOC") == 0) {
96 } else if (StriCmp (Command, L"BOCX") == 0) {
110 } else if (StriCmp (Command, L"BOR") == 0) {
124 } else if (StriCmp (Command, L"BOE") == 0) {
138 } else if (StriCmp (Command, L"BOT") == 0) {
    [all...]
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/PlatformInitPei/
Dimm.c 213 EFI_SMBUS_DEVICE_COMMAND Command;
249 Command = Offset + Index1;
254 Command,
270 Command = Index + Offset;
276 Command,
287 Command = Index + Offset;
293 Command,
  /external/autotest/frontend/client/src/autotest/afe/
HostListView.java 14 import com.google.gwt.user.client.Command;
125 menu.addItem("Reverify hosts", new Command() {
130 menu.addItem("Lock hosts for testing", new Command() {
135 menu.addItem("Lock hosts for recovery", new Command() {
140 menu.addItem("Lock hosts for resource exclusion", new Command() {
145 menu.addItem("Lock hosts for defects", new Command() {
150 menu.addItem("Unlock hosts", new Command() {
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Bus/Isa/IsaFloppyPei/
FloppyPeim.c 287 Command bytes can not be written to Data Register unless RQM is 1 and DIO is 0.
432 UINT8 Command;
434 Command = SENSE_INT_STATUS_CMD;
436 if (DataOutByte (FdcBlkIoDev, &Command) != EFI_SUCCESS) {
452 Issue Specify command.
456 @retval EFI_SUCCESS Specify command successfully issued.
465 FDC_SPECIFY_CMD Command;
469 ZeroMem (&Command, sizeof (FDC_SPECIFY_CMD));
470 Command.CommandCode = SPECIFY_CMD;
474 Command.SrtHut = 0xdf;
    [all...]
  /build/soong/android/
defs.go 33 Command: "# phony $out",
42 Command: "# generated $out",
50 Command: "rm -f $out && cp $cpPreserveSymlinks $cpFlags $in $out",
57 Command: "rm -f $out && cp $cpPreserveSymlinks $cpFlags $in $out && chmod +x $out",
65 Command: "touch $out",
72 Command: "ln -f -s $fromPath $out",
79 Command: `echo "$error" && false`,
86 Command: "cat $in > $out",
90 // ubuntu 14.04 offcially use dash for /bin/sh, and its builtin echo command
95 Command: "/bin/bash -c 'echo -e $$0 > $out' '$content'"
    [all...]
  /external/clang/include/clang/AST/
CommentSema.h 58 /// AST node for the \\brief command and its aliases.
61 /// AST node for the \\headerfile command.
95 void actOnBlockCommandArgs(BlockCommandComment *Command,
98 void actOnBlockCommandFinish(BlockCommandComment *Command,
106 void actOnParamCommandDirectionArg(ParamCommandComment *Command,
111 void actOnParamCommandParamNameArg(ParamCommandComment *Command,
116 void actOnParamCommandFinish(ParamCommandComment *Command,
124 void actOnTParamCommandParamNameArg(TParamCommandComment *Command,
129 void actOnTParamCommandFinish(TParamCommandComment *Command,
185 void checkBlockCommandEmptyParagraph(BlockCommandComment *Command);
    [all...]

Completed in 1137 milliseconds

<<11121314151617181920>>