/external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/stub/command/ |
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...] |
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...] |
/external/selinux/libselinux/man/man8/ |
selinuxexeccon.8 | 1 .TH "selinuxexeccon" "8" "14 May 2011" "dwalsh@redhat.com" "SELinux Command Line documentation" 7 .I command 12 reports the SELinux process context for the specified command from the specified context or the current context.
|
/external/sonivox/jet_tools/JetCreator_content/ |
README.txt | 5 1. Open a command prompt and go to the directory where the JetCreator tool is located.
9 3. Select the IMPORT command and import one of the JetCreator_demo_*.zip files.
11 4. After importing the first time, you can use the OPEN command to open the .jtc file in the folder you selected as the target for import.
|
/external/toybox/toys/android/ |
runcon.c | 1 /* runcon.c - Run command in specified security context 12 usage: runcon CONTEXT COMMAND [ARGS...] 14 Run a command in a specified security context.
|
/external/toybox/toys/other/ |
chroot.c | 1 /* chroot.c - Run command in new root directory. 13 Run command within a new root directory. If no command, run /bin/sh.
|
/external/lldb/test/functionalities/command_script/ |
TestCommandScript.py | 31 self.runCmd("command source py_import") 36 self.runCmd('command script delete welcome', check=False) 37 self.runCmd('command script delete targetname', check=False) 38 self.runCmd('command script delete longwait', check=False) 39 self.runCmd('command script delete mysto', check=False) 40 self.runCmd('command script delete tell_sync', check=False) 41 self.runCmd('command script delete tell_async', check=False) 42 self.runCmd('command script delete tell_curr', check=False) 43 self.runCmd('command script delete bug11569', check=False) 60 'A command that says hello to LLDB users'] [all...] |
bug11569.py | 4 LLDBSwigPythonCallCommand crashes when a command script returns an object.
|
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/stub/command/ |
ListCommandHandler.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;
24 * CommandHandler for the LIST command. Return the configured directory listing on the data
29 * The interpretation of the value returned from this command is dependent upon the value returned
30 * by the SYST command. The format of the directory listing should match the format associated with
31 * the system named by the SYST command. For example, if the SYST command returns "WINDOWS", then [all...] |
/packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/ |
Dicttool.java | 32 public static abstract class Command { 70 static HashMap<String, Class<? extends Command>> sCommands = new HashMap<>(); 76 public static void addCommand(final String commandName, final Class<? extends Command> cls) { 80 private static Command getCommandInstance(final String commandName) { 91 System.out.println("Syntax: dicttool <command [arguments]>\nAvailable commands:\n"); 103 private static Command getCommand(final String[] arguments) { 106 throw new RuntimeException("Unknown command : " + commandName); 108 final Command command = getCommandInstance(commandName); local 110 command.setArgs(argsArray) 120 final Command command = getCommand(arguments); local [all...] |
/frameworks/av/services/audiopolicy/service/ |
AudioPolicyService.cpp | 48 static const char kCmdDeadlockedString[] = "AudioPolicyService command thread may be deadlocked\n"; 81 // start output activity command thread 336 snprintf(buffer, SIZE, "Command Thread: %p\n", mAudioCommandThread.get()); 436 sp<AudioCommand> command = mAudioCommands[0]; local 438 mLastCommand = command; 440 switch (command->mCommand) { 443 ToneData *data = (ToneData *)command->mParam.get(); 462 VolumeData *data = (VolumeData *)command->mParam.get(); 465 command->mStatus = AudioSystem::setStreamVolume(data->mStream, 470 ParametersData *data = (ParametersData *)command->mParam.get() 647 sp<AudioCommand> command = new AudioCommand(); local 659 sp<AudioCommand> command = new AudioCommand(); local 670 sp<AudioCommand> command = new AudioCommand(); local 687 sp<AudioCommand> command = new AudioCommand(); local 701 sp<AudioCommand> command = new AudioCommand(); local 715 sp<AudioCommand> command = new AudioCommand(); local 730 sp<AudioCommand> command = new AudioCommand(); local 748 sp<AudioCommand> command = new AudioCommand(); local 766 sp<AudioCommand> command = new AudioCommand(); local 778 sp<AudioCommand> command = new AudioCommand(); local 786 sp<AudioCommand>command = new AudioCommand(); local 795 sp<AudioCommand> command = new AudioCommand(); local 808 sp<AudioCommand> command = new AudioCommand(); local [all...] |
/external/clang/test/Frontend/ |
warning-options.cpp | 1 // RUN: %clang_cc1 -Wmonkey -Wno-monkey -Wno-unused-command-line-arguments \ 2 // RUN: -Wno-unused-command-line-argument -Wmodule-build -Rmodule-built %s 2>&1 | FileCheck %s 5 // CHECK: unknown warning option '-Wno-unused-command-line-arguments'; did you mean '-Wno-unused-command-line-argument'?
|
/external/linux-tools-perf/src/tools/perf/tests/attr/ |
test-record-branch-filter-any | 2 command = record
|
test-record-branch-filter-any_call | 2 command = record
|
test-record-branch-filter-any_ret | 2 command = record
|
test-record-branch-filter-hv | 2 command = record
|
test-record-branch-filter-ind_call | 2 command = record
|
test-record-branch-filter-k | 2 command = record
|
test-record-branch-filter-u | 2 command = record
|
test-record-count | 2 command = record
|
test-record-data | 2 command = record
|
test-record-no-delay | 2 command = record
|
/external/lldb/test/functionalities/command_script/import/foo/ |
foo2.py | 6 debugger.HandleCommand("command script add -f foo2.foo2_function foo2cmd")
|
/external/lldb/test/logging/ |
TestLogging.py | 42 self.runCmd ("command alias bp breakpoint") 49 "Processing command: command alias bp breakpoint\n", 50 "HandleCommand, cmd_obj : 'command alias'\n", 51 "HandleCommand, revised_command_line: 'command alias bp breakpoint'\n", 53 "HandleCommand, command line after removing command name(s): 'bp breakpoint'\n", 54 "HandleCommand, command succeeded\n", 55 "Processing command: bp set -n main\n", 59 "HandleCommand, command line after removing command name(s): '-n main'\n" [all...] |
/external/llvm/test/Object/ |
mri4.test | 4 ; CHECK: Unknown command: abc.
|