HomeSort by relevance Sort by last modified time
    Searched defs:DebugCommand (Results 1 - 2 of 2) sorted by null

  /external/vixl/src/vixl/a64/
debugger-a64.cc 255 // All debugger commands must subclass DebugCommand and implement Run, Print
257 class DebugCommand {
259 explicit DebugCommand(Token* name) : name_(IdentifierToken::Cast(name)) {}
260 DebugCommand() : name_(NULL) {}
261 virtual ~DebugCommand() { delete name_; }
270 static DebugCommand* Parse(char* line);
281 class HelpCommand : public DebugCommand {
283 explicit HelpCommand(Token* name) : DebugCommand(name) {}
287 static DebugCommand* Build(std::vector<Token*> args);
295 class ContinueCommand : public DebugCommand {
    [all...]
  /hardware/broadcom/wlan/bcmdhd/wifi_hal/
wifi_logger.cpp 93 class DebugCommand : public WifiCommand
110 DebugCommand(wifi_interface_handle iface, char *buffer, int *buffer_size,
112 : WifiCommand("DebugCommand", iface, 0), mBuff(buffer), mBuffSize(buffer_size), mType
119 DebugCommand(wifi_interface_handle iface, char *ring_name, GetCmdType cmdType)
120 : WifiCommand("DebugCommand", iface, 0), mRingName(ring_name), mType(cmdType)
124 DebugCommand(wifi_interface_handle iface, u32 *num_rings,
126 : WifiCommand("DebugCommand", iface, 0), mNumRings(num_rings), mStatus(status), mType(cmdType)
132 DebugCommand(wifi_interface_handle iface, unsigned int *support, GetCmdType cmdType)
133 : WifiCommand("DebugCommand", iface, 0), mSupport(support), mType(cmdType)
137 DebugCommand(wifi_interface_handle iface, u32 verbose_level, u32 flags
    [all...]

Completed in 82 milliseconds