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

<<51525354555657585960>>

  /external/parameter-framework/parameter/
ParameterMgr.h 77 // Remote command parsers
376 ////////////////:: Remote command parsers
445 * Command handler method for exportDomainWithSettingsXML command.
447 * @param[in] remoteCommand contains the arguments of the received command.
448 * @param[out] result a std::string containing the result of the command
450 * @return CCommandHandler::ESucceeded if command succeeded or CCommandHandler::EFailed
459 * Command handler method for getDomainsWithSettings command.
461 * @param[in] remoteCommand contains the arguments of the received command
    [all...]
  /external/lldb/source/Interpreter/
CommandInterpreter.cpp 76 { "expand-regex-aliases", OptionValue::eTypeBoolean, true, false, NULL, NULL, "If true, regular expression alias commands will show the expanded command that will be executed. This can be used to debug new regular expression alias commands." },
78 { "stop-command-source-on-error", OptionValue::eTypeBoolean, true, true, NULL, NULL, "If true, LLDB will stop running a 'command source' script upon encountering an error." },
102 Broadcaster (&debugger, "lldb.command-interpreter"),
350 // Look for any embedded script command
352 // get interpreter object from the command dictionary,
370 m_command_dict["command"] = CommandObjectSP (new CommandObjectMultiwordCommands (*this));
443 // If you add a resultant command string longer than 1024 characters be sure to increase the size of this buffer.
573 // accept but don't document "bt -c <number>" -- before bt was a regex command if you wanted to backtrace
574 // three frames you would do "bt -c 3" but the intention is to have this emulate the gdb "bt" command an
    [all...]
  /art/runtime/jdwp/
jdwp.h 155 // thread (command handler) so no event thread posts an event while
156 // it processes a command. This must be called only from the debugger
329 * "resume thread" command, the resume might arrive before the thread has
332 * It's also important no event thread suspends while we process a command
334 * before sending the reply of the command being processed ("resume") and
338 * SetWaitForJdwpToken method before processing a command from the
340 * Once the command is processed or the event thread has posted its event,
345 * suspension before processing the next command. Once the event thread
394 // Used to synchronize JDWP command handler thread and event threads so only one
395 // thread does JDWP stuff at a time. This prevent from interleaving command handlin
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/
InvokeMethodTest.java 40 * Unit test for NewInstance command.
51 * JDWP unit test for ObjectReference.InvokeMethod command.
69 logWriter.println("\nSend EventRequest::Set command...");
71 checkReplyPacket(reply, "EventRequest::Set command");
112 logWriter.println("\nSend EventRequest::Clear command...");
114 checkReplyPacket(reply, "EventRequest::Clear command");
136 checkReplyPacket(reply, "ClassType::NewInstance command");
163 * This testcase exercises ObjectReference.InvokeMethod command.
166 * <BR>&nbsp;&nbsp; - send ObjectReference.InvokeMethod command for method,
170 * <BR>&nbsp;&nbsp; - send ObjectReference.InvokeMethod command for method
    [all...]
  /external/lldb/examples/python/
process_events.py 58 for command in commands:
59 command_interpreter.HandleCommand( command, return_obj )
75 % ./process_events.py --breakpoint malloc --stop-command bt --stop-command 'register read' -- /bin/ls -lAF /tmp/
81 parser.add_option('-b', '--breakpoint', action='append', type='string', metavar='BPEXPR', dest='breakpoints', help='Breakpoint commands to create after the target has been created, the values will be sent to the "_regexp-break" command which supports breakpoints by name, file:line, and address.')
84 parser.add_option('-l', '--launch-command', action='append', type='string', metavar='CMD', dest='launch_commands', help='LLDB command interpreter commands to run once after the process has launched. This option can be specified more than once.', default=[])
85 parser.add_option('-s', '--stop-command', action='append', type='string', metavar='CMD', dest='stop_commands', help='LLDB command interpreter commands to run each time the process stops. This option can be specified more than once.', default=[])
86 parser.add_option('-c', '--crash-command', action='append', type='string', metavar='CMD', dest='crash_commands', help='LLDB command interpr (…)
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
GraphReader.java 41 private static interface Command {
46 private ArrayList<Command> mCommands = new ArrayList<Command>();
58 for (Command command : mCommands) {
59 command.execute(this);
63 public void append(Command command) {
64 mCommands.add(command);
80 private static class ImportPackageCommand implements Command {
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/drm/
vmwgfx_drm.h 136 * Allocates a device unique context id, and queues a create context command
158 * Frees a global context id, and queues a destroy host command for the host.
160 * in the command stream and shows up as the same context ID on the host.
167 * Allocates a device unique surface id, and queues a create surface command
169 * used directly in the command stream and shows up as the same surface
255 * it and will allow the calling client to use the surface ID in the command
283 * a destroy surface command will be queued for the host.
291 * Submit a command buffer for execution on the host, and return a
292 * fence sequence that when signaled, indicates that the command buffer has
299 * @commands: User-space address of a command buffer cast to an uint64_t
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_dist.py 12 from distutils.cmd import Command
18 class test_dist(Command):
19 """Sample distutils extension command."""
87 self.assertEqual(d.get_command_packages(), ["distutils.command"])
91 sys.argv.extend(["--command-packages",
97 # let's actually try to load our test command:
99 ["distutils.command", "foo.bar", "distutils.tests"])
116 ["distutils.command", "foo.bar", "splat"])
118 # ensure command line overrides config:
119 sys.argv[1:] = ["--command-packages", "spork", "build"
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_dist.py 12 from distutils.cmd import Command
18 class test_dist(Command):
19 """Sample distutils extension command."""
87 self.assertEqual(d.get_command_packages(), ["distutils.command"])
91 sys.argv.extend(["--command-packages",
97 # let's actually try to load our test command:
99 ["distutils.command", "foo.bar", "distutils.tests"])
116 ["distutils.command", "foo.bar", "splat"])
118 # ensure command line overrides config:
119 sys.argv[1:] = ["--command-packages", "spork", "build"
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/
JDWPTestCase.java 167 CommandPacket command = new CommandPacket( local
170 command.setNextValueAsReferenceTypeID(objectID);
171 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(command);
172 checkReplyPacket(reply, "ObjectReference::ReferenceType command");
189 CommandPacket command = new CommandPacket( local
192 command.setNextValueAsClassID(classID);
193 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(command);
194 checkReplyPacket(reply, "ReferenceType::Methods command");
209 * Issues LineTable command.
225 checkReplyPacket(lineTableReply, "Method::LineTable command");
263 CommandPacket command = new CommandPacket( local
    [all...]
  /external/google-breakpad/src/common/mac/
macho_reader.cc 176 fprintf(stderr, "%s: file too short to hold load command region"
183 " load commands, but load command #%ld",
186 fprintf(stderr, " extends beyond the end of the load command region\n");
190 fprintf(stderr, "%s: the contents of load command #%ld, of type %d,"
191 " extend beyond the size given in the load command's header\n",
196 fprintf(stderr, "%s: the load command for segment '%s'"
214 fprintf(stderr, "%s: the LC_SYMTAB load command claims that the symbol"
312 // command refers to this load command alone, so that cursor will
313 // refuse to read past the load command's end. But since we haven'
    [all...]
  /external/kernel-headers/original/uapi/drm/
vmwgfx_drm.h 120 * Allocates a device unique context id, and queues a create context command
142 * Frees a global context id, and queues a destroy host command for the host.
144 * in the command stream and shows up as the same context ID on the host.
151 * Allocates a device unique surface id, and queues a create surface command
153 * used directly in the command stream and shows up as the same surface
240 * it and will allow the calling client to use the surface ID in the command
268 * a destroy surface command will be queued for the host.
276 * Submit a command buffer for execution on the host, and return a
277 * fence seqno that when signaled, indicates that the command buffer has
284 * @commands: User-space address of a command buffer cast to an uint64_t
    [all...]
  /hardware/ril/reference-ril/
atchannel.c 68 * for current pending command
129 again before passing on to the command issuer */
237 /* no command pending */
284 RLOGE("Unsupported AT command type %d\n", s_type);
597 /* FIXME is it ok to call this from the reader and the command thread? */
669 static int at_send_command_full_nolock (const char *command, ATCommandType type,
683 err = writeline (command);
744 static int at_send_command_full (const char *command, ATCommandType type,
757 err = at_send_command_full_nolock(command, type,
772 * Issue a single normal AT command with no intermediate response expecte
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/bin/
smtpd.py 106 COMMAND = 0
115 self.__state = self.COMMAND
147 if self.__state == self.COMMAND:
154 command = line.upper()
157 command = line[:i].upper()
159 method = getattr(self, 'smtp_' + command, None)
161 self.push('502 Error: command "%s" not implemented' % command)
184 self.__state = self.COMMAND
234 self.push('503 Error: nested MAIL command')
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
smtpd.py 106 COMMAND = 0
115 self.__state = self.COMMAND
147 if self.__state == self.COMMAND:
154 command = line.upper()
157 command = line[:i].upper()
159 method = getattr(self, 'smtp_' + command, None)
161 self.push('502 Error: command "%s" not implemented' % command)
184 self.__state = self.COMMAND
234 self.push('503 Error: nested MAIL command')
    [all...]
  /prebuilts/python/linux-x86/2.7.5/bin/
smtpd.py 106 COMMAND = 0
115 self.__state = self.COMMAND
147 if self.__state == self.COMMAND:
154 command = line.upper()
157 command = line[:i].upper()
159 method = getattr(self, 'smtp_' + command, None)
161 self.push('502 Error: command "%s" not implemented' % command)
184 self.__state = self.COMMAND
234 self.push('503 Error: nested MAIL command')
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
smtpd.py 106 COMMAND = 0
115 self.__state = self.COMMAND
147 if self.__state == self.COMMAND:
154 command = line.upper()
157 command = line[:i].upper()
159 method = getattr(self, 'smtp_' + command, None)
161 self.push('502 Error: command "%s" not implemented' % command)
184 self.__state = self.COMMAND
234 self.push('503 Error: nested MAIL command')
    [all...]
  /external/e2fsprogs/ext2ed/doc/
ext2ed-design.sgml 251 wanted a fast way to interact. As a result, I chose a simple command line
335 Now EXT2ED contained basically three command line operations:
381 Command line analyzing was primitive back then - A simple switch, as far as
495 A list of command names.
501 A list of pointers to functions, which binds each command to its
515 <Literal remap="tt">struct&lowbar;command</Literal>:
553 I redesigned the program flow control. Up to now, I analyzed the user command
578 <Literal remap="tt">general command</Literal>, selectable from a list of general commands which was
579 always available, or a <Literal remap="tt">type specific command</Literal>, selectable from a list of
581 user was editing. The special <Literal remap="tt">type specific command</Literal> "knew" how t
    [all...]
  /external/libnfc-nci/src/nfa/rw/
nfa_rw_act.c 126 ** Description Handle failure - signal command complete and notify app
229 /* Command complete - perform cleanup, notify app */
241 /* Command complete - perform cleanup, notify app */
248 /* current op was stand-alone NFA_DetectNDef. Command complete - perform cleanup and notify app */
259 /* Command complete - perform cleanup, notify app */
362 /* current op was stand-alone NFA_DetectTlv. Command complete - perform cleanup and notify app */
371 /* Command complete - perform cleanup, notify the app */
509 /* For all other APIs called during auto-presence check, perform the command now (if tag is still present) */
520 /* Tag no longer present. Free command for pending API command */
    [all...]
  /art/test/
README.txt 4 single test. Run "./run-test" with no arguments to see command flags;
  /bionic/libc/kernel/uapi/asm-x86/asm/
ist.h 25 __u32 command; member in struct:ist_info
  /cts/tests/tests/os/src/android/os/cts/
HardwareNameTest.java 31 assertNotNull("androidboot.hardware must be passed on the kernel command line", name);
  /cts/tools/signature-tools/src/signature/
UsageException.java 20 * Simple exception class used to communicate that the command-line tool should
  /developers/build/
gradlew.bat 27 echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
49 @rem Get command-line arguments, handling Windowz variants
55 @rem Slurp the command line arguments.
70 @rem Setup the command line
  /developers/build/prebuilts/androidtv/sample-inputs/
gradlew.bat 27 echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
49 @rem Get command-line arguments, handling Windowz variants
55 @rem Slurp the command line arguments.
70 @rem Setup the command line

Completed in 1614 milliseconds

<<51525354555657585960>>