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

1 2 3 4 5 6 7 8 91011>>

  /external/emma/core/java12/
emmarun.java 9 import com.vladium.emma.Command;
26 final Command command = Command.create ("run", emmarun.class.getName (), args); local
27 command.run ();
emma.java 10 import com.vladium.emma.Command;
39 final Command command = Command.create (commandName, "emma ".concat (commandName), commandArgs); local
40 command.run ();
53 "emma usage: emma <command> [command options]," + EOL +
54 " where <command> is one of:" + EOL +
61 " {use '<command> -h' to see usage help for a given command}" + EOL
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/share/gdb/python/gdb/
__init__.py 16 import gdb.command.pretty_printers namespace
18 gdb.command.pretty_printers.register_pretty_printer_commands()
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/share/gdb/python/gdb/
__init__.py 16 import gdb.command.pretty_printers namespace
18 gdb.command.pretty_printers.register_pretty_printer_commands()
  /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.
43 char command[32]; member in struct:bootloader_message
48 /* Read and write the bootloader command from the "misc" partition.
  /dalvik/dx/src/com/android/dx/command/
UsageException.java 17 package com.android.dx.command;
20 * Simple exception class used to communicate that the command-line tool
DxConsole.java 17 package com.android.dx.command;
  /external/webkit/LayoutTests/http/tests/appcache/resources/
fail-on-update-2.php 19 $command = $_GET['command']; variable
26 if ($command == "reset") {
28 } else if ($command == "delete") {
35 print("fail-on-update.php?command=\n");
fail-on-update.php 19 $command = $_GET['command']; variable
26 if ($command == "reset") {
28 } else if ($command == "delete") {
34 print("fail-on-update.php?command=\n");
  /bionic/libc/kernel/arch-x86/asm/
ist.h 25 __u32 command; member in struct:ist_info
  /development/ndk/platforms/android-9/arch-x86/include/asm/
ist.h 25 __u32 command; member in struct:ist_info
  /external/clang/test/CodeGen/
pragma-pack-3.c 2 // CHECK-X32: %union.command = type <{ i8*, [2 x i8] }>
5 // CHECK-X64: %union.command = type <{ i8*, [2 x i8] }>
9 typedef union command { union
15 } command; typedef in typeref:union:command
17 command c;
  /external/kernel-headers/original/asm-x86/
ist.h 24 __u32 command; member in struct:ist_info
  /external/webkit/LayoutTests/http/tests/resources/
tripmine.php 29 $command = $_GET['command']; variable
30 if ($command) {
31 if ($command == "status")
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
WebEditCommand.h 39 WebCore::EditCommand* command() const { return m_command.get(); } function in class:WebKit::WebEditCommand
43 WebEditCommand(PassRefPtr<WebCore::EditCommand> command, uint64_t commandID)
44 : m_command(command)
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/asm/
ist.h 24 __u32 command; member in struct:ist_info
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/asm/
ist.h 24 __u32 command; member in struct:ist_info
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/asm/
ist.h 24 __u32 command; member in struct:ist_info
  /prebuilts/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/asm/
ist.h 19 __u32 command; member in struct:ist_info
  /prebuilts/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/asm/
ist.h 19 __u32 command; member in struct:ist_info
  /prebuilts/ndk/android-ndk-r6/platforms/android-9/arch-x86/usr/include/asm/
ist.h 19 __u32 command; member in struct:ist_info
  /prebuilts/ndk/android-ndk-r7/platforms/android-14/arch-x86/usr/include/asm/
ist.h 19 __u32 command; member in struct:ist_info
  /prebuilts/ndk/android-ndk-r7/platforms/android-9/arch-x86/usr/include/asm/
ist.h 19 __u32 command; member in struct:ist_info
  /cts/suite/audio_quality/lib/src/
Adb.cpp 34 android::String8 command; local
35 if (command.appendFormat("forward tcp:%d tcp:%d", hostPort, devicePort) != 0) {
38 if (executeCommand(command) != 0) {
46 android::String8 command; local
47 if (command.appendFormat("install -r %s", clientBinary.string()) != 0) {
50 if (executeCommand(command) != 0) {
53 command.clear();
54 if (command.appendFormat("shell am start -W -n %s", component.string()) != 0) {
57 if (executeCommand(command) != 0) {
63 /** @param command ADB command except adb -s XYZW *
    [all...]
  /cts/suite/audio_quality/lib/src/audio/
AudioProtocol.cpp 58 uint32_t command = ntohl(data[0]); local
59 if ((command & 0xffff0000) != 0x43210000) {
60 LOGE("Wrong header %x %x", command, data[0]);
63 command = (command & 0xffff) | 0x12340000; // convert to id
64 if (command < ECmdStart) {
65 LOGE("Wrong header %x %x", command, data[0]);
68 if (command > (ECmdLast - 1)) {
69 LOGE("Wrong header %x %x", command, data[0]);
72 id = (CommandId)command;
    [all...]

Completed in 291 milliseconds

1 2 3 4 5 6 7 8 91011>>