@@ -242,7 +242,7 @@ class CommandHandler
242
242
* Adds the given command status and returns any failures in adding statuses (e.g. out
243
243
* of buffer space) to the caller
244
244
*/
245
- CHIP_ERROR FallibleAddStatus (const ConcreteCommandPath & aCommandPath , const Protocols::InteractionModel::Status aStatus,
245
+ CHIP_ERROR FallibleAddStatus (const ConcreteCommandPath & aRequestCommandPath , const Protocols::InteractionModel::Status aStatus,
246
246
const char * context = nullptr );
247
247
248
248
/* *
@@ -252,9 +252,9 @@ class CommandHandler
252
252
void AddStatus (const ConcreteCommandPath & aCommandPath, const Protocols::InteractionModel::Status aStatus,
253
253
const char * context = nullptr );
254
254
255
- CHIP_ERROR AddClusterSpecificSuccess (const ConcreteCommandPath & aCommandPath , ClusterStatus aClusterStatus);
255
+ CHIP_ERROR AddClusterSpecificSuccess (const ConcreteCommandPath & aRequestCommandPath , ClusterStatus aClusterStatus);
256
256
257
- CHIP_ERROR AddClusterSpecificFailure (const ConcreteCommandPath & aCommandPath , ClusterStatus aClusterStatus);
257
+ CHIP_ERROR AddClusterSpecificFailure (const ConcreteCommandPath & aRequestCommandPath , ClusterStatus aClusterStatus);
258
258
259
259
/* *
260
260
* This adds a new CommandDataIB element into InvokeResponses for the associated
@@ -645,11 +645,11 @@ class CommandHandler
645
645
* Callers should snapshot as needed before calling this function, and roll back
646
646
* as needed afterward.
647
647
*
648
- * @param [in] aCommandPath the concrete path of the command we are responding to
648
+ * @param [in] aRequestCommandPath the concrete path of the command we are responding to
649
649
* @param [in] aResponseCommandId the id of the command to encode
650
650
* @param [in] aEncodable the data to encode for the given aResponseCommandId
651
651
*/
652
- CHIP_ERROR TryAddResponseData (const ConcreteCommandPath & aCommandPath , CommandId aResponseCommandId,
652
+ CHIP_ERROR TryAddResponseData (const ConcreteCommandPath & aRequestCommandPath , CommandId aResponseCommandId,
653
653
DataModel::EncodableToTLV & aEncodable);
654
654
655
655
void SetExchangeInterface (CommandHandlerExchangeInterface * commandResponder);
0 commit comments