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

1 2 3 4 5 6 7 8 91011>>

  /external/lldb/test/functionalities/command_script/import/thepackage/
TPunitA.py 1 def command(debugger, command, result, internal_dict): function
TPunitB.py 1 def command(debugger, command, result, internal_dict): function
__init__.py 5 debugger.HandleCommand("command script add -f thepackage.TPunitA.command TPcommandA")
6 debugger.HandleCommand("command script add -f thepackage.TPunitB.command TPcommandB")
  /art/test/304-method-tracing/
info.txt 1 Test method tracing from command-line.
  /external/e2fsprogs/lib/ss/
test_cmd.ct 3 request test_cmd, "Test command",
  /external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/stub/command/
CommandTest.java 16 package org.mockftpserver.stub.command;
19 import org.mockftpserver.core.command.Command;
24 * Tests for the Command class
39 Command command = new Command("abc", PARAMETERS); local
40 assertEquals("name", "abc", command.getName());
41 assertEquals("parameters", PARAMETERS, command.getParameters());
49 new Command(null, EMPTY);
83 Command command = new Command("abc", array("123", "456")); local
92 Command command = new Command("abc", array("123", "456")); local
106 Command command = new Command("abc", array("123", "456")); local
    [all...]
  /external/deqp/scripts/egl/
func_ptrs.py 6 def commandTypedefDecl (command):
8 command.type,
9 getFunctionTypeName(command.name),
10 commandParams(command))
12 def commandMemberDecl (command):
13 return "%s\t%s;" % (getFunctionTypeName(command.name),
14 getFunctionMemberName(command.name))
library.py 8 def virtualMemberDecl (command):
10 command.type,
11 getFunctionMemberName(command.name),
12 commandParams(command))
14 def concreteMemberDecl (command):
16 command.type,
17 getFunctionMemberName(command.name),
18 commandParams(command))
20 def memberImpl (command):
27 returnType = command.type
    [all...]
  /external/valgrind/gdbserver_tests/
mchelp.stderrB.exp 1 sending command help to pid ....
2 sending command help debug to pid ....
3 sending command v.kill to pid ....
mcinvokeRU.stderrB.exp 1 sending command v.wait 0 to pid ....
2 sending command v.wait 0 to pid ....
3 sending command v.wait 0 to pid ....
4 sending command v.wait 0 to pid ....
5 sending command v.wait 0 to pid ....
6 sending command v.wait 0 to pid ....
7 sending command v.wait 0 to pid ....
8 sending command v.wait 0 to pid ....
9 sending command v.wait 0 to pid ....
10 sending command v.wait 0 to pid ...
    [all...]
mcinvokeWS.stderrB.exp 1 sending command v.wait 0 to pid ....
2 sending command v.wait 0 to pid ....
3 sending command v.wait 0 to pid ....
4 sending command v.wait 0 to pid ....
5 sending command v.wait 0 to pid ....
6 sending command v.wait 0 to pid ....
7 sending command v.wait 0 to pid ....
8 sending command v.wait 0 to pid ....
9 sending command v.wait 0 to pid ....
10 sending command v.wait 0 to pid ...
    [all...]
  /external/llvm/utils/lit/tests/Inputs/shtest-shell/
error-0.txt 1 # Check error on an internal shell error (unable to find command).
3 # RUN: not-a-real-command
  /external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/core/command/
CommandTest.java 16 package org.mockftpserver.core.command;
27 * Tests for the Command class
37 * Test the Command(String,String[]) constructor
41 Command command = new Command("abc", PARAMETERS); local
42 assertEquals("name", "abc", command.getName());
43 assertEquals("parameters", PARAMETERS, command.getParameters());
47 * Test the Command(String,List) constructor
52 Command command = new Command("abc", PARAMETERS_LIST); local
96 Command command = new Command("abc", array("123", "456")); local
105 Command command = new Command("abc", array("123", "456")); local
119 Command command = new Command("abc", array("123", "456")); local
129 Command command = new Command("abc", array("123", "456")); local
    [all...]
  /dalvik/dx/etc/
manifest.txt 1 Main-Class: com.android.dx.command.Main
  /external/lldb/test/functionalities/command_script/
py_import 5 command script add welcome --function welcome.welcome_impl
6 command script add targetname --function welcome.target_name_impl
7 command script add longwait --function welcome.print_wait_impl
8 command script import mysto.py --allow-reload
9 command script add tell_sync --function welcome.check_for_synchro --synchronicity sync
10 command script add tell_async --function welcome.check_for_synchro --synchronicity async
11 command script add tell_curr --function welcome.check_for_synchro --synchronicity curr
  /system/core/init/
keywords.h 46 KEYWORD(bootchart_init, COMMAND, 0, do_bootchart_init)
47 KEYWORD(chmod, COMMAND, 2, do_chmod)
48 KEYWORD(chown, COMMAND, 2, do_chown)
50 KEYWORD(class_reset, COMMAND, 1, do_class_reset)
51 KEYWORD(class_start, COMMAND, 1, do_class_start)
52 KEYWORD(class_stop, COMMAND, 1, do_class_stop)
54 KEYWORD(copy, COMMAND, 2, do_copy)
57 KEYWORD(domainname, COMMAND, 1, do_domainname)
58 KEYWORD(enable, COMMAND, 1, do_enable)
59 KEYWORD(exec, COMMAND, 1, do_exec
    [all...]
  /external/libvorbis/vq/
make_floor_books.pl 26 my $command=$line;
27 print ">>> $command";
28 die "Couldn't shell command.\n\tcommand:$command\n"
29 if syst($command);
40 $command="rm -f $globalname.vqh";
41 die "Couldn't remove file.\n\tcommand:$command\n"
42 if syst($command);
62 $command="rm -f $datafile.tmp";
63 print "\n\n>>> $command\n"
    [all...]
  /system/extras/simpleperf/
command.cpp 17 #include "command.h"
23 static std::vector<Command*>& Commands() {
24 // commands is used in the constructor of Command. Defining it as a static
26 static std::vector<Command*> commands;
30 Command* Command::FindCommandByName(const std::string& cmd_name) {
31 for (auto& command : Commands()) {
32 if (command->Name() == cmd_name) {
33 return command;
39 static bool CompareCommandByName(Command* cmd1, Command* cmd2)
    [all...]
  /external/kernel-headers/original/uapi/linux/netfilter/
nf_conntrack_ftp.h 7 /* PORT command from client */
11 /* EPRT command from client */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/netfilter/
nf_conntrack_ftp.h 8 /* PORT command from client */
12 /* EPRT command from client */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/netfilter/
nf_conntrack_ftp.h 7 /* PORT command from client */
11 /* EPRT command from client */
  /external/junit/src/junit/textui/
package-info.java 2 * Provides JUnit v3.x command line based tool to run tests.
  /external/linux-tools-perf/src/tools/perf/tests/attr/
test-record-basic 2 command = record
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/stub/command/
TypeCommandHandler.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;
25 * CommandHandler for the TYPE command. Send back a reply code of 200.
30 * invocation, which is a String[2] containing the first two command parameter values.
48 * @see org.mockftpserver.core.command.CommandHandler#handleCommand(org.mockftpserver.core.command.Command, org.mockftpserver.core.session.Session)
    [all...]
  /external/clang/test/CodeGenCXX/
2005-02-19-BitfieldStructCrash.cpp 5 struct Command {
6 Command(QChar c) : c(c) {}
11 Command X(QChar('c'));

Completed in 1090 milliseconds

1 2 3 4 5 6 7 8 91011>>