/frameworks/av/services/audioflinger/ |
FastMixerState.cpp | 54 const char *FastMixerState::commandToString(Command command) 56 const char *str = FastThreadState::commandToString(command); 60 switch (command) {
|
/frameworks/base/cmds/svc/src/com/android/commands/svc/ |
NfcCommand.java | 26 public class NfcCommand extends Svc.Command {
|
PowerCommand.java | 26 public class PowerCommand extends Svc.Command {
|
/frameworks/wilhelm/src/android/ |
android_StreamPlayer.h | 51 void receivedCmd_l(IStreamListener::Command cmd, const sp<AMessage> &msg = NULL);
|
/packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/ |
Header.java | 26 public class Header extends Dicttool.Command { 27 public static final String COMMAND = "header"; 34 return COMMAND + " <filename>: prints the header contents of a dictionary file"; 47 throw new RuntimeException("Not enough arguments for command " + COMMAND);
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/ |
usbstorioctl.h | 14 UCHAR Command;
|
/system/connectivity/shill/cellular/ |
mm1_modem_proxy_interface.h | 73 virtual void Command(const std::string& cmd,
|
mock_mm1_modem_proxy.h | 70 MOCK_METHOD5(Command, void(const std::string& cmd,
|
/system/extras/simpleperf/ |
main.cpp | 24 #include "command.h" 55 std::unique_ptr<Command> command = CreateCommandInstance(args[0]); local 56 if (command == nullptr) { 57 LOG(ERROR) << "malformed command line: unknown command " << args[0]; 63 LOG(DEBUG) << "command '" << command_name << "' starts running"; 64 bool result = command->Run(args); 65 LOG(DEBUG) << "command '" << command_name << "' "
|
/external/chromium-trace/catapult/third_party/gsutil/gslib/tests/ |
test_command_runner.py | 25 from gslib.command import Command 74 class FakeCommandWithInvalidCompleter(Command): 75 """Command with an invalid completer on an argument.""" 77 command_spec = Command.CreateCommandSpec( 84 help_spec = Command.HelpSpec( 88 help_one_line_summary='fake command for tests', 89 help_text='fake command for tests', 97 class FakeCommandWithCompleters(Command): 98 """Command with various completer types."" [all...] |
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/command/ |
AbstractFakeCommandHandler.java | 16 package org.mockftpserver.fake.command;
21 import org.mockftpserver.core.command.AbstractCommandHandler;
22 import org.mockftpserver.core.command.Command;
23 import org.mockftpserver.core.command.ReplyCodes;
54 * Reply code sent back when a FileSystemException is caught by the {@link #handleCommand(Command, Session)}
70 public void handleCommand(Command command, Session session) {
72 Assert.notNull(command, "command");
[all...] |
/hardware/qcom/camera/QCamera2/HAL/test/ |
qcamera_test.h | 254 struct Command { 255 Command( Commands_e cmd_, char *arg_ = NULL) 258 Command() 273 Command getCommand(sp<CameraContext> currentCamera); 289 Vector<Command> mCommands;
|
/prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/ |
UndoDelegator.py | 160 class Command: 206 class InsertCommand(Command): 208 # Undoable insert command 211 Command.__init__(self, index1, None, chars, tags) 264 class DeleteCommand(Command): 266 # Undoable delete command 269 Command.__init__(self, index1, index2, None, None) 300 class CommandSequence(Command):
|
/prebuilts/gdb/linux-x86/lib/python2.7/idlelib/ |
UndoDelegator.py | 160 class Command: 206 class InsertCommand(Command): 208 # Undoable insert command 211 Command.__init__(self, index1, None, chars, tags) 264 class DeleteCommand(Command): 266 # Undoable delete command 269 Command.__init__(self, index1, index2, None, None) 300 class CommandSequence(Command):
|
/prebuilts/go/darwin-x86/src/runtime/ |
runtime-gdb.py | 372 class GoroutinesCmd(gdb.Command): 376 gdb.Command.__init__(self, "info goroutines", gdb.COMMAND_STACK, gdb.COMPLETE_NONE) 423 class GoroutineCmd(gdb.Command): 424 """Execute gdb command in the context of goroutine <goid>. 427 execute an arbitrary gdb command, and restore PC and SP. 436 gdb.Command.__init__(self, "goroutine", gdb.COMMAND_STACK, gdb.COMPLETE_NONE) 463 class GoIfaceCmd(gdb.Command): 467 gdb.Command.__init__(self, "iface", gdb.COMMAND_DATA, gdb.COMPLETE_SYMBOL)
|
/prebuilts/go/linux-x86/src/runtime/ |
runtime-gdb.py | 372 class GoroutinesCmd(gdb.Command): 376 gdb.Command.__init__(self, "info goroutines", gdb.COMMAND_STACK, gdb.COMPLETE_NONE) 423 class GoroutineCmd(gdb.Command): 424 """Execute gdb command in the context of goroutine <goid>. 427 execute an arbitrary gdb command, and restore PC and SP. 436 gdb.Command.__init__(self, "goroutine", gdb.COMMAND_STACK, gdb.COMPLETE_NONE) 463 class GoIfaceCmd(gdb.Command): 467 gdb.Command.__init__(self, "iface", gdb.COMMAND_DATA, gdb.COMPLETE_SYMBOL)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
UndoDelegator.py | 160 class Command: 206 class InsertCommand(Command): 208 # Undoable insert command 211 Command.__init__(self, index1, None, chars, tags) 264 class DeleteCommand(Command): 266 # Undoable delete command 269 Command.__init__(self, index1, index2, None, None) 300 class CommandSequence(Command):
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
UndoDelegator.py | 160 class Command: 206 class InsertCommand(Command): 208 # Undoable insert command 211 Command.__init__(self, index1, None, chars, tags) 264 class DeleteCommand(Command): 266 # Undoable delete command 269 Command.__init__(self, index1, index2, None, None) 300 class CommandSequence(Command):
|
/system/core/init/ |
action.cpp | 34 Command::Command(BuiltinFunction f, const std::vector<std::string>& args, 39 int Command::InvokeFunc() const { 53 std::string Command::BuildCommandString() const { 57 std::string Command::BuildSourceString() const { 78 *err = "command needed, but not provided"; 107 void Action::ExecuteOneCommand(std::size_t command) const { 108 ExecuteCommand(commands_[command]); 117 void Action::ExecuteCommand(const Command& command) const [all...] |
/external/autotest/frontend/client/src/autotest/tko/embedded_spreadsheet/ |
EmbeddedSpreadsheetPresenter.java | 19 import com.google.gwt.user.client.Command; 30 public Command getOnSpreadsheetRendered();
|
/external/avahi/avahi-utils/ |
avahi-set-host-name.c | 46 } Command; 50 Command command; member in struct:Config 92 c->command = COMMAND_UNSPEC; 99 c->command = COMMAND_HELP; 102 c->command = COMMAND_VERSION; 112 if (c->command == COMMAND_UNSPEC) { 138 switch (config.command) {
|
/external/emma/core/java12/com/vladium/emma/instr/ |
instrCommand.java | 16 import com.vladium.emma.Command; 26 final class instrCommand extends Command
|
/external/libweave/examples/daemon/ledflasher/ |
ledflasher.cc | 56 // LedFlasherHandler is a complete command handler example that shows 79 void OnFlasherSetCommand(const std::weak_ptr<weave::Command>& command) { 80 auto cmd = command.lock(); 83 LOG(INFO) << "received command: " << cmd->GetName(); 89 // Display this command in terminal 110 void OnFlasherToggleCommand(const std::weak_ptr<weave::Command>& command) { 111 auto cmd = command.lock(); 114 LOG(INFO) << "received command: " << cmd->GetName() [all...] |
/external/libweave/examples/daemon/speaker/ |
speaker.cc | 68 // SpeakerHandler is a command handler example that shows 89 void OnVolumeSetConfig(const std::weak_ptr<weave::Command>& command) { 90 auto cmd = command.lock(); 93 LOG(INFO) << "received command: " << cmd->GetName(); 99 // Display this command in terminal. 113 // Display this command in terminal. 129 void OnOnOffSetConfig(const std::weak_ptr<weave::Command>& command) { 130 auto cmd = command.lock() [all...] |
/external/libweave/include/weave/ |
device.h | 13 #include <weave/command.h> 105 base::Callback<void(const std::weak_ptr<Command>& command)>; 110 // |command_name| is the full command name of the command to handle. e.g. 111 // "base.reboot". Each command can have no more than one handler. 114 // No new command handlers can be set after default handler was set. 119 // Adds a new command to the command queue. 120 virtual bool AddCommand(const base::DictionaryValue& command, [all...] |