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

<<11121314151617181920>>

  /build/core/
process_wrapper.sh 4 # command that is executed instead of the server
5 # command. It starts a new xterm in which the user can
  /cts/hostsidetests/devicepolicy/app/DeviceAndProfileOwner/src/com/android/cts/deviceandprofileowner/
UserRestrictionActivity.java 34 private static final String EXTRA_COMMAND = "extra-command";
64 String command = intent.getStringExtra(EXTRA_COMMAND); local
65 Log.i(TAG, "Command: \"" + command + "\". Restriction: \"" + restrictionKey + "\"");
67 if (ADD_COMMAND.equals(command)) {
71 } else if (CLEAR_COMMAND.equals(command)) {
77 Log.e(TAG, "Invalid command: " + command);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/
InvokeMethodWithSuspensionTest.java 30 * JDWP unit test for ClassType.InvokeCommand command with a thread suspension.
40 CommandPacket command = new CommandPacket( local
43 command.setNextValueAsClassID(classID);
44 command.setNextValueAsThreadID(threadId);
45 command.setNextValueAsMethodID(methodId);
46 command.setNextValueAsInt(0);
47 command.setNextValueAsInt(invoke_options);
48 return command;
NewInstanceWithSuspensionTest.java 29 * JDWP unit test for ClassType.NewInstance command with a thread suspension.
39 CommandPacket command = new CommandPacket( local
42 command.setNextValueAsClassID(classID);
43 command.setNextValueAsThreadID(threadId);
44 command.setNextValueAsMethodID(methodId);
45 command.setNextValueAsInt(0);
46 command.setNextValueAsInt(invoke_options);
47 return command;
  /external/clang/include/clang/Tooling/
ArgumentsAdjusters.h 1 //===--- ArgumentsAdjusters.h - Command line arguments adjuster -*- C++ -*-===//
12 // ArgumentsAdjusters modify command line arguments obtained from a compilation
27 /// \brief A sequence of command line arguments.
30 /// \brief A prototype of a command line adjuster.
32 /// Command line argument adjuster is responsible for command line arguments
37 /// \brief Gets an argument adjuster that converts input command line arguments
41 /// \brief Gets an argument adjuster which removes output-related command line
  /external/clang/test/Sema/
no-documentation-warn-tagdecl-specifier.c 17 // expected-warning@+1 {{'@return' command used in a comment that is not attached to a function or method declaration}}
26 // expected-warning@+1 {{'@return' command used in a comment that is not attached to a function or method declaration}}
31 // expected-warning@+1 {{'@return' command used in a comment that is not attached to a function or method declaration}}
36 // expected-warning@+1 {{'@return' command used in a comment that is not attached to a function or method declaration}}
59 // expected-warning@+1 {{'@return' command used in a comment that is not attached to a function or method declaration}}
68 // expected-warning@+1 {{'@return' command used in a comment that is not attached to a function or method declaration}}
73 // expected-warning@+1 {{'@return' command used in a comment that is not attached to a function or method declaration}}
78 // expected-warning@+1 {{'@return' command used in a comment that is not attached to a function or method declaration}}
  /external/clang/test/Tooling/
clang-check-builtin-headers.cpp 3 // Add a path that doesn't exist as argv[0] for the compile command line:
4 // RUN: echo '[{"directory":".","command":"/random/tool -c %t/test.cpp","file":"%t/test.cpp"}]' | sed -e 's/\\/\//g' > %t/compile_commands.json
  /external/clang/utils/analyzer/
reducer.pl 6 die "$prog <code file> <error string> [optional command]\n" if ($#ARGV < 0);
24 my $command;
25 if (scalar(@ARGV) > 0) { $command = \@ARGV; }
28 $command = [$compiler, "-fsyntax-only", "-Wfatal-errors", "-Wno-deprecated-declarations", "-Wimplicit-function-declaration"];
30 push @$command, $srcFile;
31 my $commandStr = "@$command";
39 my \$command = "$commandStr > $reduceOut 2>&1";
40 system(\$command);
  /external/e2fsprogs/lib/ss/
std_rqs.ct 7 request ss_help, "Display info on command or topic.",
28 "Execute a UNIX command line.",
test_script_expected 13 test_ss: Command not found quux
15 test_ss: Command not found quux
  /external/expat/tests/benchmark/
README.txt 1 Use this benchmark command line utility as follows:
5 The command line arguments are:
  /external/llvm/test/BugPoint/
compile-custom.ll 1 ; RUN: bugpoint -load %llvmshlibdir/BugpointPasses%shlibext --compile-custom --compile-command="%python %s.py arg1 arg2" --output-prefix %t %s | FileCheck %s
4 ; Test that arguments are correctly passed in --compile-command. The output
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/command/
CwdCommandHandler.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 CWD command. Handler logic:
39 protected void handle(Command command, Session session) {
41 String path = getRealPath(session, command.getRequiredParameter(0));
MkdCommandHandler.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 MKD command. Handler logic:
40 protected void handle(Command command, Session session) {
42 String path = getRealPath(session, command.getRequiredParameter(0));
NlstCommandHandler.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 NLST command. Handler logic:
47 protected void handle(Command command, Session session) {
50 String path = getRealPath(session, command.getParameter(0));
RmdCommandHandler.java 16 package org.mockftpserver.fake.command;
18 import org.mockftpserver.core.command.Command;
19 import org.mockftpserver.core.command.ReplyCodes;
23 * CommandHandler for the RMD command. Handler logic:
38 protected void handle(Command command, Session session) {
40 String path = getRealPath(session, command.getRequiredParameter(0));
  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
AborCommandHandlerTest.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.ABOR, [])
AlloCommandHandlerTest.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.ALLO, [])
AppeCommandHandlerTest.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
74 Command createValidCommand() {
75 return new Command(CommandNames.APPE, [FILE])
CdupCommandHandlerTest.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
68 Command createValidCommand() {
69 return new Command(CommandNames.CDUP, [])
EpsvCommandHandlerTest.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
52 Command createValidCommand() {
53 return new Command(CommandNames.EPSV, [])
ModeCommandHandlerTest.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.MODE, [])
NoopCommandHandlerTest.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
51 Command createValidCommand() {
52 return new Command(CommandNames.NOOP, [])
PasvCommandHandlerTest.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
53 Command createValidCommand() {
54 return new Command(CommandNames.PASV, [])
PortCommandHandlerTest.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
62 Command createValidCommand() {
63 return new Command(CommandNames.PORT, PARAMETERS)

Completed in 202 milliseconds

<<11121314151617181920>>