HomeSort by relevance Sort by last modified time
    Searched full:command (Results 626 - 650 of 12564) sorted by null

<<21222324252627282930>>

  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
NlstCommandHandlerTest.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
102 Command createValidCommand() {
103 return new Command(CommandNames.NLST, [DIR])
RmdCommandHandlerTest.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
109 Command createValidCommand() {
110 return new Command(CommandNames.RMD, [DIR])
RnfrCommandHandlerTest.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
84 Command createValidCommand() {
85 return new Command(CommandNames.RNFR, [FILE])
  /external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/core/command/
AbstractCommandHandler.java 16 package org.mockftpserver.core.command;
31 * InvocationRecord objects corresponding to each invocation of the command handler,
50 * Handle the specified command for the session. This method is declared to throw Exception,
54 * @param command - the Command to be handled
55 * @param session - the session on which the Command was submitted
58 * @throws AssertFailedException - if the command or session is null
60 * @see org.mockftpserver.core.command.CommandHandler#handleCommand(org.mockftpserver.core.command.Command,
    [all...]
  /external/nanopb-c/tests/site_scons/
site_init.py 15 # Build command that runs a test program and saves the output
22 if env.has_key("COMMAND"):
23 args = [env["COMMAND"]]
30 print 'Command line: ' + str(args)
46 # Build command that decodes a message using protoc
57 # Build command that encodes a message using protoc
68 # Build command that asserts that two files be equal
83 # Build command that checks that each pattern in source2 is found in source1.
  /external/regex-re2/util/
flags.h 5 // Simplified version of Google's command line flags.
6 // Does not support parsing the command line.
  /external/skia/experimental/PdfViewer/inc/
SkPdfDiffEncoder.h 18 * the number of the command and %s is the name of the command. If
  /external/skia/src/core/
SkRecordOpts.h 16 // Turns logical no-op Save-[non-drawing command]*-Restore patterns into actual no-ops.
19 // For some SaveLayer-[drawing command]-Restore patterns, merge the SaveLayer's alpha into the
  /external/toybox/scripts/
change.sh 3 # build each command as a standalone executable
13 # help - needs to know what other commands are enabled (use command --help)
  /external/toybox/toys/posix/
nohup.c 13 usage: nohup COMMAND [ARGS...]
15 Run a command that survives the end of its terminal.
  /external/v8/src/
d8-debug.cc 56 // Get the debug command processor.
71 char command[kBufferSize]; local
73 char* str = fgets(command, kBufferSize, stdin);
77 if (strlen(command) == 0) continue;
81 // Convert the debugger command to a JSON debugger request.
83 isolate, String::NewFromUtf8(isolate, command));
89 // If undefined is returned the command was handled internally and there is
101 // Invoke the JavaScript to convert the debug command line to a JSON
  /external/valgrind/gdbserver_tests/
send_signal 4 # If there are some args after $3, the rest of these args is a command and its arg
5 # which is run every second. When this command is succesful, then the sleep and
simulate_control_c 4 # If there are some args after $2, the rest of these args is a command and its arg
5 # which is run every second. When this command is succesful, then the sleep and
  /external/vogar/src/vogar/
CommandBugDatabase.java 6 import vogar.commands.Command;
22 List<String> openBugs = new Command.Builder(log)
  /external/vogar/src/vogar/commands/
Mkdir.java 23 * A mkdir command.
33 new Command(log, "mkdir", "-p", directory.getPath()).execute();
Rm.java 23 * A rm command.
33 new Command(log, "rm", "-rf", file.getPath()).execute();
  /frameworks/base/core/java/com/android/internal/midi/
MidiConstants.java 101 // Returns true if this command can be used for running status
102 public static boolean allowRunningStatus(byte command) {
104 return (command >= STATUS_NOTE_OFF && command < STATUS_SYSTEM_EXCLUSIVE);
107 // Returns true if this command cancels running status
108 public static boolean cancelsRunningStatus(byte command) {
110 return (command >= STATUS_SYSTEM_EXCLUSIVE && command <= STATUS_END_SYSEX);
  /frameworks/base/services/core/java/com/android/server/
NativeDaemonTimeoutException.java 24 public NativeDaemonTimeoutException(String command, NativeDaemonEvent event) {
25 super(command, event);
  /frameworks/base/tools/aapt2/
Flag.h 25 void usageAndDie(const StringPiece& command);
27 void parse(int argc, char** argv, const StringPiece& command);
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
MessageInviteView.java 65 Integer command = null; local
76 command = UIProvider.MessageOperations.RESPOND_ACCEPT;
78 command = UIProvider.MessageOperations.RESPOND_TENTATIVE;
80 command = UIProvider.MessageOperations.RESPOND_DECLINE;
83 if (command != null) {
85 LogUtils.w("UnifiedEmail", "SENDING INVITE COMMAND, VALUE=%s", command);
86 params.put(UIProvider.MessageOperations.RESPOND_COLUMN, command);
  /packages/inputmethods/LatinIME/tools/dicttool/etc/
makedict_aosp 16 # Dicttool supports making the dictionary using the 'makedict' command and
17 # the same arguments that the old 'makedict' command used to accept.
  /platform_testing/utils/permissions/src/com/android/permissionutils/
PermissionInstrumentation.java 38 private static final String PARAM_COMMAND = "command";
47 String command = arguments.getString(PARAM_COMMAND); local
48 if (command == null) {
49 throw new IllegalArgumentException("missing command parameter");
51 if (COMMAND_DUMP.equals(command)) {
53 } else if (COMMAND_GRANTALL.equals(command)) {
57 String.format("unrecognized command \"%s\"", command));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
isdn_divertif.h 18 #define DIVERT_CMD_REG 0x00 /* register command */
19 #define DIVERT_CMD_REL 0x01 /* release command */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
isdn_divertif.h 18 #define DIVERT_CMD_REG 0x00 /* register command */
19 #define DIVERT_CMD_REL 0x01 /* release command */
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
lmat.h 27 LPWSTR Command;
36 LPWSTR Command;

Completed in 619 milliseconds

<<21222324252627282930>>