Searched refs:commandName (Results 1 – 3 of 3) sorted by relevance
/hardware/interfaces/automotive/can/1.0/default/libnl++/protocols/generic/ |
D | GenericMessageBase.cpp | 31 const auto commandName = (commandNameIt == mCommandNames.end()) in toStream() local 35 if (commandName.has_value() && data.version == 1 && data.reserved == 0) { in toStream() 37 ss << *commandName; in toStream() 42 if (commandName.has_value()) { in toStream() 45 ss << "cmd=" << *commandName; in toStream()
|
/hardware/interfaces/audio/effect/all-versions/default/ |
D | Effect.h | 211 Result analyzeCommandStatus(const char* commandName, const char* context, status_t status); 212 void getConfigImpl(int commandCode, const char* commandName, GetConfigCallback cb); 217 Result sendCommand(int commandCode, const char* commandName); 218 Result sendCommand(int commandCode, const char* commandName, uint32_t size, void* data); 219 Result sendCommandReturningData(int commandCode, const char* commandName, uint32_t* replySize, 221 Result sendCommandReturningData(int commandCode, const char* commandName, uint32_t size, 223 Result sendCommandReturningStatus(int commandCode, const char* commandName); 224 Result sendCommandReturningStatus(int commandCode, const char* commandName, uint32_t size, 226 Result sendCommandReturningStatusAndData(int commandCode, const char* commandName, 230 Result setConfigImpl(int commandCode, const char* commandName, const EffectConfig& config,
|
D | Effect.cpp | 253 Result Effect::analyzeCommandStatus(const char* commandName, const char* context, status_t status) { in analyzeCommandStatus() argument 254 return analyzeStatus("command", commandName, context, status); in analyzeCommandStatus() 281 void Effect::getConfigImpl(int commandCode, const char* commandName, GetConfigCallback cb) { in getConfigImpl() argument 290 cb(analyzeCommandStatus(commandName, sContextCallToCommand, status), config); in getConfigImpl() 395 Result Effect::sendCommand(int commandCode, const char* commandName) { in sendCommand() argument 396 return sendCommand(commandCode, commandName, 0, NULL); in sendCommand() 399 Result Effect::sendCommand(int commandCode, const char* commandName, uint32_t size, void* data) { in sendCommand() argument 401 return analyzeCommandStatus(commandName, sContextCallToCommand, status); in sendCommand() 404 Result Effect::sendCommandReturningData(int commandCode, const char* commandName, in sendCommandReturningData() argument 406 return sendCommandReturningData(commandCode, commandName, 0, NULL, replySize, replyData); in sendCommandReturningData() [all …]
|