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

<<31323334353637383940>>

  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/
EnableCollectionTest.java 39 * JDWP Unit test for ObjectReference.EnableCollection command.
45 static final String thisCommandName = "ObjectReference::EnableCollection command";
53 * This testcase exercises ObjectReference.EnableCollection command.
56 * Then for this objectID test executes ObjectReference::DisableCollection command
57 * and ObjectReference.EnableCollection command. After that Debuggee tries to
73 ("=> Send ReferenceType::Fields command and get fieldID for field representing checked object...");
78 ("=> Send ReferenceType::GetValues command for received fieldID and get ObjectID to check...");
89 checkReplyPacket(getValuesReply, "ReferenceType::GetValues command");
107 ("\n=> Send ObjectReference::DisableCollection command for checked ObjectID...");
116 checkReplyPacket(disableCollectionReply, "ObjectReference::DisableCollection command");
185 CommandPacket command = new CommandPacket( local
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadGroupReference/
ChildrenTest.java 38 * JDWP Unit test for ThreadGroupReference.Children command.
48 * This testcase exercises ThreadGroupReference.Children command.
50 * <BR> Then the test with help of the ThreadGroupReference.Children command checks
70 logWriter.println("==> Send ThreadReference.ThreadGroup command for testedThreadID...");
76 checkReplyPacket(reply, "ThreadReference.ThreadGroup command");
81 logWriter.println("==> Send ThreadGroupReference.Children command...");
87 checkReplyPacket(reply, "ThreadGroupReference.Children command");
133 * This testcase exercises ThreadGroupReference.Children command.
135 * <BR> Then the test with help of the ThreadGroupReference.Children command
150 * This testcase exercises ThreadGroupReference.Children command
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
OwnedMonitorsStackDepthInfoTest.java 30 * JDWP Unit test for ThreadReference.OwnedMonitorsStackDepthInfo command.
34 static final String thisCommandName = "ThreadReference.OwnedMonitorsStackDepthInfo command ";
55 checkReplyPacket(reply, "ThreadReference::FrameCount command");
61 * command. <BR>
65 * command for the tested thread and gets list of monitor objects.
90 // Compose the OwnedMonitorsStackDepthInfo command
96 // Suspend the VM before perform command
108 // Perform the command and attain the reply package
110 checkReplyPacket(stackDepthReply, "ThreadReference::OwnedMonitorsStackDepthInfo command");
131 * Test the returned monitor object does belong to the test thread by MonitorInfo Command
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
AllThreadsTest.java 37 * JDWP Unit test for VirtualMachine.AllThreads command.
46 * This testcase exercises VirtualMachine.AllThreads command.
49 * <BR> Then the test performs VirtualMachine.AllThreads command and checks that
50 * the tested thread is not returned by command;
65 checkReplyPacket(reply, "VirtualMachine::AllThreads command");
87 checkReplyPacket(replyName, "ThreadReference::Status command");
107 * This testcase exercises VirtualMachine.AllThreads command.
110 * <BR> Then the test performs VirtualMachine.AllThreads command and checks that
111 * all threads returned by command have only valid thread status:
123 checkReplyPacket(reply, "VirtualMachine::AllThreads command");
    [all...]
DisposeTest.java 37 * JDWP Unit test for VirtualMachine.Dispose command.
46 * This testcase exercises VirtualMachine.Dispose command.
48 * <BR> Then the test performs VirtualMachine.Dispose command and checks that:
49 * <BR>&nbsp;&nbsp; - the reply on the Dispose command is received without any error;
50 * <BR>&nbsp;&nbsp; - next VirtualMachine.AllClasses command returns error;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
spawn.py 18 """Run another program, specified as a command list 'cmd', in a new process.
28 the command will not actually be run.
44 """Quote command-line arguments for DOS/Windows conventions.
71 # this seems to happen when the command isn't found
73 "command '%s' failed: %s" % (cmd[0], exc[-1])
75 # and this reflects the command running but failing
77 "command '%s' failed with exit status %d" % (cmd[0], rc)
90 # this seems to happen when the command isn't found
92 "command '%s' failed: %s" % (cmd[0], exc[-1])
94 # and this reflects the command running but failin
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
spawn.py 18 """Run another program, specified as a command list 'cmd', in a new process.
28 the command will not actually be run.
44 """Quote command-line arguments for DOS/Windows conventions.
71 # this seems to happen when the command isn't found
73 "command '%s' failed: %s" % (cmd[0], exc[-1])
75 # and this reflects the command running but failing
77 "command '%s' failed with exit status %d" % (cmd[0], rc)
90 # this seems to happen when the command isn't found
92 "command '%s' failed: %s" % (cmd[0], exc[-1])
94 # and this reflects the command running but failin
    [all...]
  /external/lldb/www/
python-reference.html 26 lldb command interpreter (we refer to this for brevity as the embedded interpreter). Of course,
36 <p>The LLDB API is contained in a python module named <b>lldb</b> documented <a href="python_reference/index.html">here</a>. The documentation is also accessible in an interactive debugger session with the following command:</p>
86 easiest way is to use the lldb command <b>script</b> with no arguments at the lldb command prompt:</p>
96 <p>This drops you into the embedded python interpreter. When running under the <b>script</b> command,
116 Contains the debugger object whose <b>script</b> command was invoked.
117 The <b>lldb.SBDebugger</b> object owns the command interpreter
131 <b>file</b> or selected by the <b>target select &lt;target-index&gt;</b> command.
159 A thread is always selected in the command interpreter when a target stops.
160 The <b>thread select &lt;thread-index&gt;</b> command can be used to change the
    [all...]
  /bootable/recovery/
bootloader.h 30 * The command field is updated by linux when it wants to
36 * completion of an "update-radio" or "update-hboot" command.
48 char command[32]; member in struct:bootloader_message
53 // been used to store the recovery command line, so 768 bytes
61 /* Read and write the bootloader command from the "misc" partition.
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/DebuggerOnDemand/
OnthrowLaunchDebugger001.java 35 * Debugger only performs <code>VirtualMachine::Version</code> command, sends message (OK or FAIL) to debugged, then releases debuggee.
45 logWriter.println("**> Send VirtualMachine::Version command");
51 logWriter.println("**> Check reply on Version command");
52 if (!checkReplyPacketWithoutFail(reply, "VirtualMachine::Version command")) {
54 fail("error durign performing VirtualMachine::Version command");
  /external/deqp/scripts/opengl/
gen_es_direct_init.py 25 def commandDirectInitStatement (command):
27 if command.name == "glShaderSource":
28 cast = "(%s)" % getFunctionTypeName(command.name)
31 return "gl->%s\t= %s&%s;" % (getFunctionMemberName(command.name),
33 command.name)
  /external/kernel-headers/original/uapi/linux/
target_core_user.h 17 * 2) The command ring
18 * 3) Everything beyond the command ring (data)
20 * The mailbox tells userspace the offset of the command ring from the
21 * start of the shared memory region, and how big the command ring is.
35 * When userspace is completed handling the command, set
  /external/kernel-headers/original/uapi/scsi/fc/
fc_gs.h 37 __be16 ct_cmd; /* command / response code */
62 * ct_cmd: Command / response codes
73 FC_FS_RJT_CMD = 0x01, /* invalid command code */
79 FC_FS_RJT_UNABL = 0x09, /* unable to perform command request */
80 FC_FS_RJT_UNSUP = 0x0b, /* command not supported */
  /external/lldb/utils/vim-lldb/python-vim-lldb/
vim_signs.py 38 vim.command("sign define %s text=%s" % (sign_name, sign_text))
41 vim.command("highlight %s ctermbg=%s guibg=%s" % (self.highlight_name,
44 vim.command("sign define %s text=%s linehl=%s texthl=%s" % (sign_name,
56 vim.command("sign place %d name=%s line=%d buffer=%s" % (self.id, name, line_number, buffer_number))
60 vim.command("sign unplace %d" % self.id)
  /external/llvm/test/tools/llvm-objdump/ARM/
macho-private-headers.test 8 CHECK: Load command 0
98 CHECK: Load command 1
105 CHECK: Load command 2
130 EXE: Load command 0
142 EXE: Load command 1
206 EXE: Load command 2
244 EXE: Load command 3
256 EXE: Load command 4
269 EXE: Load command 5
276 EXE: Load command
    [all...]
  /external/mesa3d/src/glsl/
test.cpp 49 printf("*** usage: %s <command> <options>\n", name);
61 const char *command = argv[1]; local
64 return command;
69 const char *command = extract_command_from_argv(&argc, argv); local
70 if (strcmp(command, "optpass") == 0) {
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/
FakeFtpServer.java 18 import org.mockftpserver.core.command.CommandHandler;
19 import org.mockftpserver.core.command.CommandNames;
20 import org.mockftpserver.core.command.ConnectCommandHandler;
21 import org.mockftpserver.core.command.ReplyTextBundleUtil;
22 import org.mockftpserver.core.command.UnsupportedCommandHandler;
24 import org.mockftpserver.fake.command.*;
122 * command. Note that this is typically used by an FTP client to determine how to parse
126 * <code>HELP</code> command. The keys in that <i>Map</i> correspond to the command names passed as
127 * parameters to the <code>HELP</code> command. An entry with the key of an empty string ("") indicates the
    [all...]
  /external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/core/session/
DefaultSessionTest.java 30 import org.mockftpserver.core.command.Command;
95 * Test the Constructor when the command handler Map is null
282 Command command = session.parseCommand("LIST"); local
283 assertEquals("command name", "LIST", command.getName());
284 assertEquals("command parameters", EMPTY, command.getParameters());
286 command = session.parseCommand("USER user123");
    [all...]
  /external/owasp/sanitizer/tools/findbugs/doc/ja/manual/
annotations.html 3 <title>&#31532;10&#31456; &#12450;&#12494;&#12486;&#12540;&#12471;&#12519;&#12531;</title><meta name="generator" content="DocBook XSL Stylesheets V1.76.1"><link rel="home" href="index.html" title="FindBugs&#8482; &#12510;&#12491;&#12517;&#12450;&#12523;"><link rel="up" href="index.html" title="FindBugs&#8482; &#12510;&#12491;&#12517;&#12450;&#12523;"><link rel="prev" href="analysisprops.html" title="&#31532;9&#31456; &#20998;&#26512;&#12503;&#12525;&#12497;&#12486;&#12451;&#12540;"><link rel="next" href="rejarForAnalysis.html" title="&#31532;11&#31456; rejarForAnalysis &#12398;&#20351;&#29992;&#26041;&#27861;"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">&#31532;10&#31456; &#12450;&#12494;&#12486;&#12540;&#12471;&#12519;&#12531;</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="analysisprops.html">&#25147;&#12427;</a>&nbsp;</td><th width="60%" align="center">&nbsp;</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="rejarForAnalysis.html">&#27425;&#12408;</a></td></tr></table><hr></div><div class="chapter" title="&#31532;10&#31456; &#12450;&#12494;&#12486;&#12540;&#12471;&#12519;&#12531;"><div class="titlepage"><div><div><h2 class="title"><a name="annotations"></a>&#31532;10&#31456; &#12450;&#12494;&#12486;&#12540;&#12471;&#12519;&#12531;</h2></div></div></div><p><span class="application">FindBugs</span> &#12399;&#12356;&#12367;&#12388;&#12363;&#12398;&#12450;&#12494;&#12486;&#12540;&#12471;&#12519;&#12531;&#12434;&#12469;&#12509;&#12540;&#12488;&#12375;&#12390;&#12356;&#12414;&#12377;&#12290;&#38283;&#30330;&#32773;&#12398;&#24847;&#22259;&#12434;&#26126;&#30906;&#12395;&#12377;&#12427;&#12371;&#12392;&#12391;&#12289; FindBugs &#12399;&#12424;&#12426;&#30340;&#30906;&#12395;&#35686;&#21578;&#12434;&#30330;&#34892;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;&#12450;&#12494;&#12486;&#12540;&#12471;&#12519;&#12531;&#12434;&#20351;&#29992;&#12377;&#12427;&#12383;&#12417;&#12395;&#12399; Java 5 &#12364;&#24517;&#35201;&#12391;&#12354;&#12426;&#12289; annotations.jar &#12362;&#12424;&#12403; jsr305.jar &#12501;&#12449;&#12452;&#12523;&#12434;&#12467;&#12531;&#12497;&#12452;&#12523;&#26178;&#12398;&#12463;&#12521;&#12473;&#12497;&#12473;&#12395;&#21547;&#12417;&#12427;&#24517;&#35201;&#12364;&#12354;&#12426;&#12414;&#12377;&#12290;</p><div class="variablelist"><dl><dt><span class="term"><span class="command"><strong>edu.umd.cs.findbugs.annotations.CheckForNull</strong></span></span></dt><dd><span class="command"><strong>[Target]</strong></span> Field, Method, Parameter
4 <p>&#12450;&#12494;&#12486;&#12540;&#12471;&#12519;&#12531;&#12434;&#12388;&#12369;&#12383;&#35201;&#32032;&#12399;&#12289; null &#12391;&#12354;&#12427;&#21487;&#33021;&#24615;&#12364;&#12354;&#12426;&#12414;&#12377;&#12290;&#12375;&#12383;&#12364;&#12387;&#12390;&#12289;&#24403;&#35442;&#35201;&#32032;&#12434;&#20351;&#29992;&#12377;&#12427;&#38555;&#12399; null &#12481;&#12455;&#12483;&#12463;&#12434;&#12377;&#12427;&#12409;&#12365;&#12391;&#12377;&#12290;&#12371;&#12398;&#12450;&#12494;&#12486;&#12540;&#12471;&#12519;&#12531;&#12434;&#12513;&#12477;&#12483;&#12489;&#12395;&#36969;&#29992;&#12377;&#12427;&#12392;&#12289;&#12513;&#12477;&#12483;&#12489;&#12398;&#25147;&#12426;&#20516;&#12395;&#36969;&#29992;&#12373;&#12428;&#12414;&#12377;&#12290;</p></dd><dt><span class="term"><span class="command"><strong>edu.umd.cs.findbugs.annotations.CheckReturnValue</strong></span></span></dt><dd><span class="command"><strong>[Target]</strong></span> Method, Constructor
5 <div class="variablelist"><dl><dt><span class="term"><span class="command"><strong>[Parameter]</strong></span></span></dt><dd><p>
6 <span class="command"><strong>priority:</strong></span> &#35686;&#21578;&#12398;&#20778;&#20808;&#24230;&#12434;&#25351;&#23450;&#12375;&#12414;&#12377; (HIGH, MEDIUM, LOW, IGNORE) &#12290;&#12487;&#12501;&#12457;&#12523;&#12488;&#20516; :MEDIUM&#12290;</p><p>
7 <span class="command"><strong>explanation:</strong></span>&#25147;&#12426;&#20516;&#12434;&#12481;&#12455;&#12483;&#12463;&#12375;&#12394;&#12369;&#12400;&#12394;&#12425;&#12394;&#12356;&#29702;&#30001;&#12434;&#12486;&#12461;&#12473;&#12488;&#12391;&#35500;&#26126;&#12375;&#12414;&#12377;&#12290;&#12487;&#12501;&#12457;&#12523;&#12488;&#20516; :""&#12290;</p></dd></dl></div><p>&#12371;&#12398;&#12450;&#12494;&#12486;&#12540;&#12471;&#12519;&#12531;&#12434;&#20351;&#29992;&#12375;&#12390;&#12289;&#21628;&#20986;&#12375;&#24460;&#12395;&#25147;&#12426;&#20516;&#12434;&#12481;&#12455;&#12483;&#12463;&#12377;&#12409;&#12365;&#12513;&#12477;&#12483;&#12489;&#12434;&#34920;&#12377;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;</p></dd><dt><span class="term"><span class="command"><strong>edu.umd.cs.findbugs.annotations.DefaultAnnotation</strong></span></span></dt><dd><span class="command"><strong>[Target]</strong></span> Type, Package
8 <div class="variablelist"><dl><dt><span class="term"><span class="command"><strong>[Parameter]</strong></span></span></dt><dd><p
    [all...]
  /external/owasp/sanitizer/tools/
upload_jars_to_googlecode_downloads.sh 49 function command() { function
54 "$@" || panic "command failed: $@"
71 command make download
78 command cp "$DOWNLOADS_ZIP" "$VERSIONED_ZIP"
80 command "$VERSION_BASE/trunk/tools/googlecode_upload.py" \
  /frameworks/av/services/audioflinger/
FastMixerState.h 67 // Extends FastThreadState::Command
68 static const Command
77 // never returns NULL; asserts if command is invalid
78 static const char *commandToString(Command command);
  /frameworks/base/telephony/java/android/telephony/
IccOpenLogicalChannelResponse.java 24 * Response to the {@link TelephonyManager#iccOpenLogicalChannel} command.
33 * Possible status values returned by open channel command.
35 * STATUS_NO_ERROR: Open channel command returned successfully.
38 * STATUS_UNKNOWN_ERROR: Unknown error in open channel command.
83 * @return the status of the command.
  /hardware/ti/omap3/dspbridge/inc/
qosti_dspdecl.h 27 // The QOS command codes (to match the DSP side equivalents).
33 * The enumeration defines the control command selector for *cmd*
55 * The enumeration defines the control command selector for *arg1*
74 * The enumeration defines the control command selector for *arg2*
91 * The enumeration defines the control command selector for *arg2*
  /ndk/sources/host-tools/make-3.81/tests/scripts/misc/
general1 18 kbd.o : kbd.c defs.h command.h
20 commands.o : command.c defs.h command.h
32 "$workdir${pathsep}kbd.c","$workdir${pathsep}command.h",
35 "$workdir${pathsep}command.c");
general2 19 kbd.o : kbd.c defs.h command.h
21 commands.o : command.c defs.h command.h
33 "$workdir${pathsep}kbd.c","$workdir${pathsep}command.h",
36 "$workdir${pathsep}command.c");

Completed in 725 milliseconds

<<31323334353637383940>>