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

1 2 3 4 5 6 7 8 91011>>

  /external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/stub/command/
QuitCommandHandlerTest.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.QUIT, EMPTY);
42 commandHandler.handleCommand(COMMAND, session);
52 * @see org.mockftpserver.core.command.AbstractCommandHandlerTestCase#setUp()
  /external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/core/command/
StaticReplyCommandHandler.java 16 package org.mockftpserver.core.command;
20 import org.mockftpserver.stub.command.AbstractStubCommandHandler;
64 * @see org.mockftpserver.core.command.CommandHandler#handleCommand(Command, Session, InvocationRecord)
66 public void handleCommand(Command command, Session session, InvocationRecord invocationRecord) {
  /external/sl4a/Common/src/com/googlecode/android_scripting/
Exec.java 27 * The command to execute
29 * The first argument to the command, may be null
31 * the second argument to the command, may be null
35 public static FileDescriptor createSubprocess(String command, String[] arguments,
37 return createSubprocess(command, arguments, environmentVariables, workingDirectory, null);
42 * The command to execute
52 public static native FileDescriptor createSubprocess(String command, String[] arguments,
  /external/syslinux/gpxe/src/core/
exec.c 31 #include <gpxe/command.h>
36 * Command execution
40 /* Avoid dragging in getopt.o unless a command really uses it */
45 * Execute command
47 * @v command Command name
49 * @ret rc Command exit status
51 * Execute the named command. Unlike a traditional POSIX execv(),
52 * this function returns the exit status of the command.
54 int execv ( const char *command, char * const argv[] )
    [all...]
  /system/libufdt/utils/src/
mkdtimg.c 34 const char *command; member in struct:command_info
47 static const struct command_info *search_command(const char *command) {
49 for (info = command_infos; info->command != NULL; info++) {
50 if (strcmp(command, info->command) == 0) {
54 if (info->command == NULL) {
55 fprintf(stderr, "Unknown command: %s\n", command);
63 for (info = command_infos; info->command != NULL; info++) {
67 fprintf(out_fp, "%s", info->command);
122 const char *command = argv[1]; local
    [all...]
  /test/vts/drivers/shell/
ShellDriver.h 59 * execute a given shell command and return the output file descriptor
62 int ExecShellCommand(const string& command,
66 * Handles a socket connection. Will execute a received shell command
72 * Execute a shell command using popen and return a CommandResult object.
74 CommandResult* ExecShellCommandPopen(const string& command);
77 * Execute a shell command using nohup and return a CommandResult object.
79 CommandResult* ExecShellCommandNohup(const string& command);
  /external/syslinux/gpxe/src/net/
aoe.c 61 * Mark current AoE command complete
68 /* Record overall command status */
69 if ( aoe->command ) {
70 aoe->command->cb.cmd_stat = aoe->status;
71 aoe->command->rc = rc;
72 aoe->command = NULL;
83 * Send AoE command
88 * This transmits an AoE command packet. It does not wait for a
92 struct ata_command *command = aoe->command; local
232 struct ata_command *command = aoe->command; local
    [all...]
  /system/netd/server/
FwmarkServer.cpp 94 FwmarkCommand command; local
98 { &command, sizeof(command) },
120 if (!((command.cmdId != FwmarkCommand::ON_CONNECT_COMPLETE && messageLength == sizeof(command))
121 || (command.cmdId == FwmarkCommand::ON_CONNECT_COMPLETE
122 && messageLength == sizeof(command) + sizeof(connectInfo)))) {
128 if (command.cmdId == FwmarkCommand::QUERY_USER_ACCESS) {
132 return mNetworkController->checkUserNetworkAccess(command.uid, command.netId)
    [all...]
  /dalvik/dx/src/com/android/dx/command/dump/
Args.java 17 package com.android.dx.command.dump;
20 * contains command line parsedArgs values
  /external/adhd/cras/src/server/
test_iodev.h 29 enum CRAS_TEST_IODEV_CMD command,
  /external/clang/test/Modules/
explicit-build-flags.cpp 52 #error bad FOO from command line and module
56 #error bad FOO from command line overriding module
  /external/curl/docs/cmdline-opts/
ftp-alternative-to-user.d 2 Arg: <command>
7 If authenticating with the USER and PASS commands fails, send this command.
  /external/guice/core/src/com/google/inject/internal/
ScopeBindingProcessor.java 38 @Override public Boolean visit(ScopeBinding command) {
39 Scope scope = checkNotNull(command.getScope(), "scope");
40 Class<? extends Annotation> annotationType = checkNotNull(command.getAnnotationType(), "annotation type");
58 injector.state.putScopeBinding(annotationType, command);
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/command/
CdupCommandHandler.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 CDUP command. Handler logic:
37 protected void handle(Command command, Session session) {
PasvCommandHandler.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 PASV command. Handler logic:
41 protected void handle(Command command, Session session) {
  /external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/stub/command/
AborCommandHandlerTest.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;
37 final Command COMMAND = new Command(CommandNames.ABOR, EMPTY);
42 commandHandler.handleCommand(COMMAND, session);
52 * @see org.mockftpserver.stub.command.AbstractCommandHandlerTest#setUp()
    [all...]
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...]
  /external/parameter-framework/upstream/parameter/include/
CommandHandlerInterface.h 36 * @see the help command for more information on which command can be sent.
51 /** Send a command synchronously and receive it's result.
54 * command and their description.
56 * @param[in] command the command to execute.
57 * @param[in] arguments the command arguments.
58 * @param[out] output the result of the command.
60 * return true in the command executed succesfuly,
63 virtual bool process(const std::string &command, const std::vector<std::string> &arguments
    [all...]
  /external/selinux/python/semanage/
semanage-bash-completion.sh 71 local command=${COMP_WORDS[1]}
88 if [ "$prev" = "-a" -a "$command" = "permissive" ]; then
101 if [ "$command" != "user" -o "$prev" != "-r" ]; then
114 if [ "$command" = "port" ]; then
118 if [ "$command" = "fcontext" ]; then
124 elif __contains_word "$command" ${VERBS[LOGIN]} ; then
127 elif __contains_word "$command" ${VERBS[USER]} ; then
130 elif __contains_word "$command" ${VERBS[PORT]} ; then
133 elif __contains_word "$command" ${VERBS[INTERFACE]} ; then
136 elif __contains_word "$command" ${VERBS[MODULE]} ; the
    [all...]
  /frameworks/base/tools/aapt2/
Main.cpp 63 static int ExecuteCommand(const StringPiece& command, const std::vector<StringPiece>& args,
65 if (command == "compile" || command == "c") {
67 } else if (command == "link" || command == "l") {
69 } else if (command == "dump" || command == "d") {
71 } else if (command == "diff") {
73 } else if (command == "optimize") {
75 } else if (command == "convert")
    [all...]
  /frameworks/support/media/src/main/java/androidx/media/
SessionCommandGroup2.java 37 * A set of {@link SessionCommand2} which represents a command group.
43 // Prefix for all command codes
45 // Prefix for command codes that will be sent directly to the MediaPlayerInterface
47 // Prefix for command codes that will be sent directly to the MediaPlaylistAgent
49 // Prefix for command codes that will be sent directly to AudioManager or VolumeProvider.
71 * Adds a command to this command group.
73 * @param command A command to add. Shouldn't be {@code null}.
75 public void addCommand(@NonNull SessionCommand2 command) {
227 SessionCommand2 command = SessionCommand2.fromBundle(commandBundle); local
    [all...]
  /hardware/interfaces/graphics/composer/2.1/utils/vts/
TestCommandReader.cpp 30 IComposerClient::Command command; local
32 ASSERT_TRUE(beginCommand(&command, &length));
34 switch (command) {
35 case IComposerClient::Command::SET_ERROR: {
41 case IComposerClient::Command::SELECT_DISPLAY:
42 case IComposerClient::Command::SET_CHANGED_COMPOSITION_TYPES:
43 case IComposerClient::Command::SET_DISPLAY_REQUESTS:
44 case IComposerClient::Command::SET_PRESENT_FENCE:
45 case IComposerClient::Command::SET_RELEASE_FENCES
    [all...]
  /hardware/interfaces/graphics/composer/2.1/utils/vts/include/composer-vts/2.1/
TestCommandReader.h 19 #include <composer-command-buffer/2.1/ComposerCommandBuffer.h>
28 // A command parser that checks that no error nor unexpected commands are
32 // Parse all commands in the return command queue. Call GTEST_FAIL() for
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
ProcessBuilderTest.java 43 ProcessBuilder pb = new ProcessBuilder("command");
44 assertEquals(1, pb.command().size());
45 assertEquals("command", pb.command().get(0));
49 pb.command("BBB", "CCC");
50 List<String> list = pb.command();
52 String[] command = new String[3]; local
53 list.toArray(command);
54 assertTrue(Arrays.equals(new String[] { "BBB", "CCC", "DDD" }, command));
58 ProcessBuilder pb = new ProcessBuilder("command");
    [all...]
  /libcore/ojluni/src/main/java/java/lang/
Compiler.java 69 * Executes an operation according to the specified command object. This
75 * the command object for the JIT compiler.
76 * @return the result of executing command or {@code null}.
78 public static Object command(Object cmd) { method in class:Compiler

Completed in 494 milliseconds

1 2 3 4 5 6 7 8 91011>>