HomeSort by relevance Sort by last modified time
    Searched refs:Command (Results 526 - 550 of 824) sorted by null

<<21222324252627282930>>

  /hardware/ti/omap3/omx/system/src/openmax_il/perf/inc/
perf.h 370 * command is to be sent to another module.
375 * Command.
386 __PERF_FN(Command)(hObject, \
455 * command has been sent to another module.
460 * Command.
471 __PERF_FN(Command)(hObject, \
543 * command is being requested from another module. This method
545 * time the application is "pending" for the command. Note,
546 * that the command is most likely not known when calling this
552 * Command
    [all...]
  /packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
Test.java 33 * Dicttool command implementing self-tests.
35 public class Test extends Dicttool.Command {
45 public static final String COMMAND = "test";
119 // correspond respectively to the -s and -m numerical arguments to this command, which
  /system/connectivity/shill/dbus/
chromeos_mm1_modem_proxy.h 72 void Command(const std::string& cmd,
97 // Callbacks for Command async call.
  /system/weaved/buffet/
binder_weave_service.cc 20 #include <weave/command.h>
60 const android::String16& command) {
62 std::string command_name = ToString(command);
83 const std::weak_ptr<weave::Command>& command) {
85 new BinderCommandProxy{command};
  /external/v8/tools/release/
common_includes.py 189 def Command(cmd, args="", prefix="", pipe=True, cwd=None):
193 print "Command: %s" % cmd_line
237 def Command(self, cmd, args="", prefix="", pipe=True, cwd=None):
238 return Command(cmd, args, prefix, pipe, cwd=cwd)
492 def Command(self, name, args, cwd=None):
493 cmd = lambda: self._side_effect_handler.Command(
498 cmd = lambda: self._side_effect_handler.Command(
507 return self._side_effect_handler.Command(
555 self.Command(
753 self.Command("fetch", "v8", cwd=self._options.work_dir
    [all...]
  /external/autotest/frontend/client/src/autotest/afe/
JobListView.java 20 import com.google.gwt.user.client.Command;
235 menu.addItem("Abort jobs", new Command() {
  /external/avahi/avahi-ui/
bssh.c 46 } Command;
50 Command command; member in struct:Config
80 c->command = COMMAND_HELP;
83 c->command = COMMAND_SSH;
86 c->command = COMMAND_VNC;
89 c->command = COMMAND_SHELL;
122 config.command = COMMAND_SHELL;
124 config.command = COMMAND_VNC;
126 config.command = COMMAND_SSH
    [all...]
  /external/avahi/avahi-utils/
avahi-resolve.c 51 } Command;
55 Command command; member in struct:Config
184 c->command = strstr(argv0, "address") ? COMMAND_RESOLVE_ADDRESS : (strstr(argv0, "host-name") ? COMMAND_RESOLVE_HOST_NAME : COMMAND_UNSPEC);
192 c->command = COMMAND_HELP;
195 c->command = COMMAND_VERSION;
198 c->command = COMMAND_RESOLVE_HOST_NAME;
201 c->command = COMMAND_RESOLVE_ADDRESS;
217 if (c->command == COMMAND_RESOLVE_ADDRESS || c->command == COMMAND_RESOLVE_HOST_NAME)
    [all...]
  /external/libpng/contrib/gregbook/
makevms.com 97 $! P2 = Command to make it
  /external/libweave/examples/daemon/oven/
oven.cc 165 void OnSetTempCommand(const std::weak_ptr<weave::Command>& command) {
166 auto cmd = command.lock();
169 LOG(INFO) << "received command: " << cmd->GetName();
199 void OnSetBrightnessCommand(const std::weak_ptr<weave::Command>& command) {
200 auto cmd = command.lock();
203 LOG(INFO) << "received command: " << cmd->GetName();
  /external/libweave/src/
access_api_handler_unittest.cc 79 const base::DictionaryValue& AddCommand(const std::string& command) {
82 *test::CreateDictionaryValue(command.c_str()), Command::Origin::kLocal,
86 EXPECT_EQ(Command::State::kDone,
base_api_handler_unittest.cc 68 void AddCommand(const std::string& command) {
71 *test::CreateDictionaryValue(command.c_str()), Command::Origin::kLocal,
75 EXPECT_EQ(Command::State::kDone,
  /external/libweave/src/commands/
command_queue.cc 28 for (const auto& command : map_)
29 callback.Run(command.second.get());
44 for (const auto& command : map_) {
45 if (command.second->GetState() == Command::State::kQueued &&
46 command.second->GetName() == command_name &&
47 command.second->GetComponent() == component_path) {
48 callback.Run(command.second);
59 for (const auto& command : map_) {
60 std::string key = GetCommandHandlerKey(command.second->GetComponent()
    [all...]
  /external/llvm/lib/Fuzzer/
FuzzerUtil.cpp 72 int ExecuteCommand(const std::string &Command) {
73 return system(Command.c_str());
  /external/mesa3d/src/mesa/
SConscript 346 command = python_cmd + ' $SCRIPT -S $SOURCE -V GLES1.1 > $TARGET'
355 command = python_cmd + ' $SCRIPT -c es1 -m remap_table -f $SOURCE > $TARGET',
361 command = python_cmd + ' $SCRIPT -c es1 -f $SOURCE > $TARGET',
430 matypes = env.Command(
445 command = python_cmd + ' $SCRIPT -f $SOURCE > $TARGET'
462 # git log command didn't work
  /external/vogar/src/vogar/tasks/
BuildActionTask.java 39 import vogar.commands.Command;
118 new Command(run.log, run.javaPath("jar"), "cvfM", jar.getPath(),
  /frameworks/base/cmds/uiautomator/cmds/uiautomator/src/com/android/commands/uiautomator/
RunTestCommand.java 22 import com.android.commands.uiautomator.Launcher.Command;
33 * Implementation of the runtest sub command
36 public class RunTestCommand extends Command {
188 * Add test classes from jars passed on the command line. Use this if nothing was explicitly
189 * specified on the command line.
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
parallel.h 242 IN PARALLEL_1284_COMMAND Command);
247 IN PARALLEL_1284_COMMAND Command);
  /prebuilts/gdb/darwin-x86/lib/python2.7/distutils/command/
build_clib.py 1 """distutils.command.build_clib
3 Implements the Distutils 'build_clib' command, to build a C/C++ library
20 from distutils.core import Command
30 class build_clib(Command):
72 # to build-temp as defined by the "build" command. This is because
122 `library` is presumably provided as a command option 'libraries'.
  /prebuilts/gdb/linux-x86/lib/python2.7/distutils/command/
build_clib.py 1 """distutils.command.build_clib
3 Implements the Distutils 'build_clib' command, to build a C/C++ library
20 from distutils.core import Command
30 class build_clib(Command):
72 # to build-temp as defined by the "build" command. This is because
122 `library` is presumably provided as a command option 'libraries'.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
build_clib.py 1 """distutils.command.build_clib
3 Implements the Distutils 'build_clib' command, to build a C/C++ library
20 from distutils.core import Command
30 class build_clib(Command):
72 # to build-temp as defined by the "build" command. This is because
122 `library` is presumably provided as a command option 'libraries'.
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
build_clib.py 1 """distutils.command.build_clib
3 Implements the Distutils 'build_clib' command, to build a C/C++ library
20 from distutils.core import Command
30 class build_clib(Command):
72 # to build-temp as defined by the "build" command. This is because
122 `library` is presumably provided as a command option 'libraries'.
  /external/autotest/frontend/client/src/autotest/tko/
SpreadsheetView.java 31 import com.google.gwt.user.client.Command;
233 spreadsheetProcessor.refresh(condition, new Command() {
413 menu.addItem("View in table", new Command() {
418 menu.addItem("Triage failures", new Command() {
434 menu.addItem(rowField + " vs. " + columnField, new Command() {
  /external/llvm/tools/llvm-objdump/
MachODump.cpp 283 for (const auto &Command : MachOObj->load_commands()) {
284 if (Command.C.cmd == MachO::LC_FUNCTION_STARTS) {
288 MachOObj->getLinkeditDataLoadCommand(Command);
291 } else if (Command.C.cmd == MachO::LC_SEGMENT) {
292 MachO::segment_command SLC = MachOObj->getSegmentLoadCommand(Command);
564 outs() << "command " << Index++ << "\n";
    [all...]
  /frameworks/base/services/core/java/com/android/server/
NativeDaemonConnector.java 122 * Yell loudly if someone tries making future {@link #execute(Command)}
313 * Make command for daemon, escaping arguments as needed.
319 throw new IllegalArgumentException("Unexpected command: " + cmd);
322 throw new IllegalArgumentException("Arguments must be separate from command");
372 * Issue the given command to the native daemon and return a single expected
380 public NativeDaemonEvent execute(Command cmd) throws NativeDaemonConnectorException {
385 * Issue the given command to the native daemon and return a single expected
386 * response. Any arguments must be separated from base command so they can
410 * Issue the given command to the native daemon and return any
419 public NativeDaemonEvent[] executeForList(Command cmd) throws NativeDaemonConnectorException
    [all...]

Completed in 797 milliseconds

<<21222324252627282930>>