diff --git a/examples/chip-tool/templates/tests/partials/test_cluster.zapt b/examples/chip-tool/templates/tests/partials/test_cluster.zapt index cf634db10aea0a..ee24a8f8fd9ff0 100644 --- a/examples/chip-tool/templates/tests/partials/test_cluster.zapt +++ b/examples/chip-tool/templates/tests/partials/test_cluster.zapt @@ -301,7 +301,7 @@ class {{filename}}: public TestCommand {{#if isCommand}} using RequestType = chip::app::Clusters::{{asUpperCamelCase cluster}}::Commands::{{asUpperCamelCase command}}::Type; - ListFreer listFreer; + {{#if (chip_tests_item_has_list)}} ListFreer listFreer;{{/if}} RequestType request; {{#chip_tests_item_parameters}} {{>commandValue ns=parent.cluster container=(concat "request." (asLowerCamelCase label)) definedValue=definedValue depth=0}} @@ -335,7 +335,7 @@ class {{filename}}: public TestCommand cluster.Associate({{>device}}, endpoint); {{/if}} - ListFreer listFreer; + {{#if (chip_tests_item_has_list)}} ListFreer listFreer;{{/if}} {{#chip_tests_item_parameters}} {{zapTypeToEncodableClusterObjectType type ns=parent.cluster}} {{asLowerCamelCase name}}Argument; {{>commandValue ns=parent.cluster container=(concat (asLowerCamelCase name) "Argument") definedValue=definedValue depth=0}} diff --git a/src/app/zap-templates/common/ClusterTestGeneration.js b/src/app/zap-templates/common/ClusterTestGeneration.js index 0ce6fba66d289d..c0346acfa1b39e 100644 --- a/src/app/zap-templates/common/ClusterTestGeneration.js +++ b/src/app/zap-templates/common/ClusterTestGeneration.js @@ -768,11 +768,38 @@ function ensureIsArray(value, options) } } +function chip_tests_item_has_list(options) +{ + function hasList(args) + { + for (let i = 0; i < args.length; i++) { + if (args[i].isArray) { + return true; + } + + if (args[i].isStruct && hasList(args[i].items)) { + return true; + } + } + + return false; + } + + return assertCommandOrAttributeOrEvent(this).then(item => { + if (this.isWriteAttribute || this.isCommand) { + return hasList(item.arguments); + } + + return false; + }); +} + // // Module exports // exports.chip_tests = chip_tests; exports.chip_tests_items = chip_tests_items; +exports.chip_tests_item_has_list = chip_tests_item_has_list; exports.chip_tests_item_parameters = chip_tests_item_parameters; exports.chip_tests_item_response_parameters = chip_tests_item_response_parameters; exports.chip_tests_pics = chip_tests_pics; diff --git a/zzz_generated/chip-tool/zap-generated/test/Commands.h b/zzz_generated/chip-tool/zap-generated/test/Commands.h index 05cc44eaa02d07..a12fd503ef449b 100644 --- a/zzz_generated/chip-tool/zap-generated/test/Commands.h +++ b/zzz_generated/chip-tool/zap-generated/test/Commands.h @@ -629,8 +629,6 @@ class TestAccessControlCluster : public TestCommand chip::Controller::AccessControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -872,8 +870,6 @@ class TestAccessControlCluster : public TestCommand chip::Controller::AccessControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_4, OnFailureCallback_4, true)); return CHIP_NO_ERROR; @@ -998,8 +994,6 @@ class TestAccessControlCluster : public TestCommand chip::Controller::AccessControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_6, OnFailureCallback_6, true)); return CHIP_NO_ERROR; @@ -1180,8 +1174,6 @@ class Test_TC_BI_1_1 : public TestCommand chip::Controller::BinaryInputBasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); return CHIP_NO_ERROR; @@ -1206,8 +1198,6 @@ class Test_TC_BI_1_1 : public TestCommand chip::Controller::BinaryInputBasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -1231,7 +1221,6 @@ class Test_TC_BI_1_1 : public TestCommand chip::Controller::BinaryInputBasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t clusterRevisionArgument; clusterRevisionArgument = 1U; @@ -1255,8 +1244,6 @@ class Test_TC_BI_1_1 : public TestCommand chip::Controller::BinaryInputBasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_4, OnFailureCallback_4, true)); return CHIP_NO_ERROR; @@ -1281,8 +1268,6 @@ class Test_TC_BI_1_1 : public TestCommand chip::Controller::BinaryInputBasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_5, OnFailureCallback_5, true)); return CHIP_NO_ERROR; @@ -1531,8 +1516,6 @@ class Test_TC_BI_2_1 : public TestCommand chip::Controller::BinaryInputBasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); return CHIP_NO_ERROR; @@ -1557,8 +1540,6 @@ class Test_TC_BI_2_1 : public TestCommand chip::Controller::BinaryInputBasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -1582,7 +1563,6 @@ class Test_TC_BI_2_1 : public TestCommand chip::Controller::BinaryInputBasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; bool outOfServiceArgument; outOfServiceArgument = 0; @@ -1605,8 +1585,6 @@ class Test_TC_BI_2_1 : public TestCommand chip::Controller::BinaryInputBasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_4, OnFailureCallback_4, true)); return CHIP_NO_ERROR; @@ -1631,8 +1609,6 @@ class Test_TC_BI_2_1 : public TestCommand chip::Controller::BinaryInputBasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_5, OnFailureCallback_5, true)); return CHIP_NO_ERROR; @@ -1656,7 +1632,6 @@ class Test_TC_BI_2_1 : public TestCommand chip::Controller::BinaryInputBasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; bool presentValueArgument; presentValueArgument = 0; @@ -1679,8 +1654,6 @@ class Test_TC_BI_2_1 : public TestCommand chip::Controller::BinaryInputBasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_7, OnFailureCallback_7, true)); return CHIP_NO_ERROR; @@ -1705,8 +1678,6 @@ class Test_TC_BI_2_1 : public TestCommand chip::Controller::BinaryInputBasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_8, OnFailureCallback_8, true)); return CHIP_NO_ERROR; @@ -1731,8 +1702,6 @@ class Test_TC_BI_2_1 : public TestCommand chip::Controller::BinaryInputBasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_9, OnFailureCallback_9, true)); return CHIP_NO_ERROR; @@ -1758,7 +1727,6 @@ class Test_TC_BI_2_1 : public TestCommand chip::Controller::BinaryInputBasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t statusFlagsArgument; statusFlagsArgument = 0; @@ -1782,8 +1750,6 @@ class Test_TC_BI_2_1 : public TestCommand chip::Controller::BinaryInputBasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_11, OnFailureCallback_11, true)); return CHIP_NO_ERROR; @@ -2037,8 +2003,6 @@ class Test_TC_BI_2_2 : public TestCommand chip::Controller::BinaryInputBasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); return CHIP_NO_ERROR; @@ -2063,8 +2027,6 @@ class Test_TC_BI_2_2 : public TestCommand chip::Controller::BinaryInputBasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -2089,8 +2051,6 @@ class Test_TC_BI_2_2 : public TestCommand chip::Controller::BinaryInputBasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_3, OnFailureCallback_3, true)); return CHIP_NO_ERROR; @@ -2115,8 +2075,6 @@ class Test_TC_BI_2_2 : public TestCommand chip::Controller::BinaryInputBasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_4, OnFailureCallback_4, true)); return CHIP_NO_ERROR; @@ -2141,8 +2099,6 @@ class Test_TC_BI_2_2 : public TestCommand chip::Controller::BinaryInputBasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_5, OnFailureCallback_5, true)); return CHIP_NO_ERROR; @@ -2167,8 +2123,6 @@ class Test_TC_BI_2_2 : public TestCommand chip::Controller::BinaryInputBasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_6, OnFailureCallback_6, true)); return CHIP_NO_ERROR; @@ -2193,8 +2147,6 @@ class Test_TC_BI_2_2 : public TestCommand chip::Controller::BinaryInputBasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_7, OnFailureCallback_7, true)); return CHIP_NO_ERROR; @@ -2219,8 +2171,6 @@ class Test_TC_BI_2_2 : public TestCommand chip::Controller::BinaryInputBasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_8, OnFailureCallback_8, true)); return CHIP_NO_ERROR; @@ -2391,8 +2341,6 @@ class Test_TC_BOOL_1_1 : public TestCommand chip::Controller::BooleanStateClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); return CHIP_NO_ERROR; @@ -2417,8 +2365,6 @@ class Test_TC_BOOL_1_1 : public TestCommand chip::Controller::BooleanStateClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -2442,7 +2388,6 @@ class Test_TC_BOOL_1_1 : public TestCommand chip::Controller::BooleanStateClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t clusterRevisionArgument; clusterRevisionArgument = 1U; @@ -2466,8 +2411,6 @@ class Test_TC_BOOL_1_1 : public TestCommand chip::Controller::BooleanStateClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_4, OnFailureCallback_4, true)); return CHIP_NO_ERROR; @@ -2492,8 +2435,6 @@ class Test_TC_BOOL_1_1 : public TestCommand chip::Controller::BooleanStateClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_5, OnFailureCallback_5, true)); return CHIP_NO_ERROR; @@ -2649,8 +2590,6 @@ class Test_TC_BOOL_2_1 : public TestCommand chip::Controller::BooleanStateClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); return CHIP_NO_ERROR; @@ -2675,8 +2614,6 @@ class Test_TC_BOOL_2_1 : public TestCommand chip::Controller::BooleanStateClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -2700,7 +2637,6 @@ class Test_TC_BOOL_2_1 : public TestCommand chip::Controller::BooleanStateClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; bool stateValueArgument; stateValueArgument = 1; @@ -2724,8 +2660,6 @@ class Test_TC_BOOL_2_1 : public TestCommand chip::Controller::BooleanStateClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_4, OnFailureCallback_4, true)); return CHIP_NO_ERROR; @@ -2856,8 +2790,6 @@ class Test_TC_BRAC_1_1 : public TestCommand chip::Controller::BridgedActionsClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); return CHIP_NO_ERROR; @@ -2882,8 +2814,6 @@ class Test_TC_BRAC_1_1 : public TestCommand chip::Controller::BridgedActionsClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -3024,8 +2954,6 @@ class Test_TC_CC_1_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); return CHIP_NO_ERROR; @@ -3049,7 +2977,6 @@ class Test_TC_CC_1_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t clusterRevisionArgument; clusterRevisionArgument = 4U; @@ -3073,8 +3000,6 @@ class Test_TC_CC_1_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_3, OnFailureCallback_3, true)); return CHIP_NO_ERROR; @@ -5197,8 +5122,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); return CHIP_NO_ERROR; @@ -5223,8 +5146,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -5250,7 +5171,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t currentHueArgument; currentHueArgument = 0; @@ -5274,8 +5194,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_4, OnFailureCallback_4, true)); return CHIP_NO_ERROR; @@ -5300,8 +5218,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_5, OnFailureCallback_5, true)); return CHIP_NO_ERROR; @@ -5326,8 +5242,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_6, OnFailureCallback_6, true)); return CHIP_NO_ERROR; @@ -5353,7 +5267,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t currentSaturationArgument; currentSaturationArgument = 0; @@ -5377,8 +5290,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_8, OnFailureCallback_8, true)); return CHIP_NO_ERROR; @@ -5403,8 +5314,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_9, OnFailureCallback_9, true)); return CHIP_NO_ERROR; @@ -5429,8 +5338,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_10, OnFailureCallback_10, true)); return CHIP_NO_ERROR; @@ -5456,7 +5363,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t currentXArgument; currentXArgument = 24939U; @@ -5480,8 +5386,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_12, OnFailureCallback_12, true)); return CHIP_NO_ERROR; @@ -5506,8 +5410,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_13, OnFailureCallback_13, true)); return CHIP_NO_ERROR; @@ -5532,8 +5434,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_14, OnFailureCallback_14, true)); return CHIP_NO_ERROR; @@ -5559,7 +5459,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t currentYArgument; currentYArgument = 24701U; @@ -5583,8 +5482,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_16, OnFailureCallback_16, true)); return CHIP_NO_ERROR; @@ -5609,8 +5506,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_17, OnFailureCallback_17, true)); return CHIP_NO_ERROR; @@ -5636,8 +5531,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_18, OnFailureCallback_18, true)); return CHIP_NO_ERROR; @@ -5663,8 +5556,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_19, OnFailureCallback_19, true)); return CHIP_NO_ERROR; @@ -5689,8 +5580,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_20, OnFailureCallback_20, true)); return CHIP_NO_ERROR; @@ -5714,7 +5603,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t colorControlOptionsArgument; colorControlOptionsArgument = 0; @@ -5737,8 +5625,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_22, OnFailureCallback_22, true)); return CHIP_NO_ERROR; @@ -5763,8 +5649,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_23, OnFailureCallback_23, true)); return CHIP_NO_ERROR; @@ -5789,8 +5673,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_24, OnFailureCallback_24, true)); return CHIP_NO_ERROR; @@ -5814,7 +5696,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t enhancedCurrentHueArgument; enhancedCurrentHueArgument = 0U; @@ -5838,8 +5719,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_26, OnFailureCallback_26, true)); return CHIP_NO_ERROR; @@ -5864,8 +5743,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_27, OnFailureCallback_27, true)); return CHIP_NO_ERROR; @@ -5889,8 +5766,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_28, OnFailureCallback_28, true)); return CHIP_NO_ERROR; @@ -5915,8 +5790,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_29, OnFailureCallback_29, true)); return CHIP_NO_ERROR; @@ -5940,7 +5813,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t colorLoopActiveArgument; colorLoopActiveArgument = 0; @@ -5964,8 +5836,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_31, OnFailureCallback_31, true)); return CHIP_NO_ERROR; @@ -5990,8 +5860,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_32, OnFailureCallback_32, true)); return CHIP_NO_ERROR; @@ -6016,8 +5884,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_33, OnFailureCallback_33, true)); return CHIP_NO_ERROR; @@ -6041,7 +5907,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t colorLoopDirectionArgument; colorLoopDirectionArgument = 0; @@ -6065,8 +5930,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_35, OnFailureCallback_35, true)); return CHIP_NO_ERROR; @@ -6091,8 +5954,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_36, OnFailureCallback_36, true)); return CHIP_NO_ERROR; @@ -6117,8 +5978,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_37, OnFailureCallback_37, true)); return CHIP_NO_ERROR; @@ -6142,7 +6001,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t colorLoopTimeArgument; colorLoopTimeArgument = 25U; @@ -6166,8 +6024,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_39, OnFailureCallback_39, true)); return CHIP_NO_ERROR; @@ -6192,8 +6048,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_40, OnFailureCallback_40, true)); @@ -6219,8 +6073,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_41, OnFailureCallback_41, true)); @@ -6245,7 +6097,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t colorLoopStartEnhancedHueArgument; colorLoopStartEnhancedHueArgument = 8960U; @@ -6270,8 +6121,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_43, OnFailureCallback_43, true)); @@ -6297,8 +6146,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_44, OnFailureCallback_44, true)); @@ -6324,8 +6171,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_45, OnFailureCallback_45, true)); @@ -6350,7 +6195,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t colorLoopStoredEnhancedHueArgument; colorLoopStoredEnhancedHueArgument = 0U; @@ -6375,8 +6219,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_47, OnFailureCallback_47, true)); @@ -6402,8 +6244,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_48, OnFailureCallback_48, true)); return CHIP_NO_ERROR; @@ -6428,8 +6268,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_49, OnFailureCallback_49, true)); return CHIP_NO_ERROR; @@ -6455,7 +6293,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t colorCapabilitiesArgument; colorCapabilitiesArgument = 0U; @@ -6479,8 +6316,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_51, OnFailureCallback_51, true)); return CHIP_NO_ERROR; @@ -6505,8 +6340,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_52, OnFailureCallback_52, true)); return CHIP_NO_ERROR; @@ -6531,8 +6364,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_53, OnFailureCallback_53, true)); return CHIP_NO_ERROR; @@ -6558,7 +6389,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t colorTempPhysicalMinArgument; colorTempPhysicalMinArgument = 0U; @@ -6582,8 +6412,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_55, OnFailureCallback_55, true)); return CHIP_NO_ERROR; @@ -6608,8 +6436,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_56, OnFailureCallback_56, true)); return CHIP_NO_ERROR; @@ -6634,8 +6460,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_57, OnFailureCallback_57, true)); return CHIP_NO_ERROR; @@ -6661,7 +6485,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t colorTempPhysicalMaxArgument; colorTempPhysicalMaxArgument = 65279U; @@ -6685,8 +6508,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_59, OnFailureCallback_59, true)); return CHIP_NO_ERROR; @@ -6711,8 +6532,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_60, OnFailureCallback_60, true)); @@ -6737,7 +6556,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t coupleColorTempToLevelMinMiredsArgument; coupleColorTempToLevelMinMiredsArgument = 0U; @@ -6762,8 +6580,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_62, OnFailureCallback_62, true)); @@ -6789,8 +6605,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_63, OnFailureCallback_63, true)); @@ -6817,7 +6631,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t startUpColorTemperatureMiredsArgument; startUpColorTemperatureMiredsArgument = 0U; @@ -6841,8 +6654,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_65, OnFailureCallback_65, true)); @@ -6868,8 +6679,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_66, OnFailureCallback_66, true)); return CHIP_NO_ERROR; @@ -6894,8 +6703,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_67, OnFailureCallback_67, true)); return CHIP_NO_ERROR; @@ -6921,7 +6728,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t remainingTimeArgument; remainingTimeArgument = 0U; @@ -6945,8 +6751,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_69, OnFailureCallback_69, true)); return CHIP_NO_ERROR; @@ -6971,8 +6775,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_70, OnFailureCallback_70, true)); return CHIP_NO_ERROR; @@ -6998,7 +6800,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t driftCompensationArgument; driftCompensationArgument = 0; @@ -7022,8 +6823,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_72, OnFailureCallback_72, true)); return CHIP_NO_ERROR; @@ -7048,8 +6847,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_73, OnFailureCallback_73, true)); return CHIP_NO_ERROR; @@ -7074,7 +6871,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::CharSpan compensationTextArgument; compensationTextArgument = chip::Span("garbage: not in length on purpose", 0); @@ -7098,8 +6894,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_75, OnFailureCallback_75, true)); return CHIP_NO_ERROR; @@ -7124,8 +6918,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_76, OnFailureCallback_76, true)); return CHIP_NO_ERROR; @@ -7151,7 +6943,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t numberOfPrimariesArgument; numberOfPrimariesArgument = 0; @@ -7175,8 +6966,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_78, OnFailureCallback_78, true)); return CHIP_NO_ERROR; @@ -7201,8 +6990,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_79, OnFailureCallback_79, true)); return CHIP_NO_ERROR; @@ -7228,7 +7015,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t primary1XArgument; primary1XArgument = 0U; @@ -7252,8 +7038,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_81, OnFailureCallback_81, true)); return CHIP_NO_ERROR; @@ -7278,8 +7062,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_82, OnFailureCallback_82, true)); return CHIP_NO_ERROR; @@ -7305,7 +7087,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t primary1YArgument; primary1YArgument = 0U; @@ -7329,8 +7110,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_84, OnFailureCallback_84, true)); return CHIP_NO_ERROR; @@ -7355,8 +7134,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_85, OnFailureCallback_85, true)); return CHIP_NO_ERROR; @@ -7380,8 +7157,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_86, OnFailureCallback_86, true)); return CHIP_NO_ERROR; @@ -7407,7 +7182,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t primary2XArgument; primary2XArgument = 0U; @@ -7431,8 +7205,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_88, OnFailureCallback_88, true)); return CHIP_NO_ERROR; @@ -7457,8 +7229,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_89, OnFailureCallback_89, true)); return CHIP_NO_ERROR; @@ -7484,7 +7254,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t primary2YArgument; primary2YArgument = 0U; @@ -7508,8 +7277,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_91, OnFailureCallback_91, true)); return CHIP_NO_ERROR; @@ -7534,8 +7301,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_92, OnFailureCallback_92, true)); return CHIP_NO_ERROR; @@ -7559,8 +7324,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_93, OnFailureCallback_93, true)); return CHIP_NO_ERROR; @@ -7586,7 +7349,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t primary3XArgument; primary3XArgument = 0U; @@ -7610,8 +7372,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_95, OnFailureCallback_95, true)); return CHIP_NO_ERROR; @@ -7636,8 +7396,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_96, OnFailureCallback_96, true)); return CHIP_NO_ERROR; @@ -7663,7 +7421,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t primary3YArgument; primary3YArgument = 0U; @@ -7687,8 +7444,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_98, OnFailureCallback_98, true)); return CHIP_NO_ERROR; @@ -7713,8 +7468,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_99, OnFailureCallback_99, true)); return CHIP_NO_ERROR; @@ -7738,8 +7491,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_100, OnFailureCallback_100, true)); return CHIP_NO_ERROR; @@ -7765,7 +7516,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t primary4XArgument; primary4XArgument = 0U; @@ -7789,8 +7539,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_102, OnFailureCallback_102, true)); return CHIP_NO_ERROR; @@ -7815,8 +7563,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_103, OnFailureCallback_103, true)); return CHIP_NO_ERROR; @@ -7842,7 +7588,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t primary4YArgument; primary4YArgument = 0U; @@ -7866,8 +7611,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_105, OnFailureCallback_105, true)); return CHIP_NO_ERROR; @@ -7892,8 +7635,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_106, OnFailureCallback_106, true)); return CHIP_NO_ERROR; @@ -7917,8 +7658,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_107, OnFailureCallback_107, true)); return CHIP_NO_ERROR; @@ -7944,7 +7683,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t primary5XArgument; primary5XArgument = 0U; @@ -7968,8 +7706,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_109, OnFailureCallback_109, true)); return CHIP_NO_ERROR; @@ -7994,8 +7730,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_110, OnFailureCallback_110, true)); return CHIP_NO_ERROR; @@ -8021,7 +7755,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t primary5YArgument; primary5YArgument = 0U; @@ -8045,8 +7778,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_112, OnFailureCallback_112, true)); return CHIP_NO_ERROR; @@ -8071,8 +7802,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_113, OnFailureCallback_113, true)); return CHIP_NO_ERROR; @@ -8096,8 +7825,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_114, OnFailureCallback_114, true)); return CHIP_NO_ERROR; @@ -8123,7 +7850,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t primary6XArgument; primary6XArgument = 0U; @@ -8147,8 +7873,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_116, OnFailureCallback_116, true)); return CHIP_NO_ERROR; @@ -8173,8 +7897,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_117, OnFailureCallback_117, true)); return CHIP_NO_ERROR; @@ -8200,7 +7922,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t primary6YArgument; primary6YArgument = 0U; @@ -8224,8 +7945,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_119, OnFailureCallback_119, true)); return CHIP_NO_ERROR; @@ -8250,8 +7969,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_120, OnFailureCallback_120, true)); return CHIP_NO_ERROR; @@ -8275,8 +7992,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_121, OnFailureCallback_121, true)); return CHIP_NO_ERROR; @@ -8302,7 +8017,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t whitePointXArgument; whitePointXArgument = 0U; @@ -8325,8 +8039,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_123, OnFailureCallback_123, true)); return CHIP_NO_ERROR; @@ -8351,8 +8063,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_124, OnFailureCallback_124, true)); return CHIP_NO_ERROR; @@ -8378,7 +8088,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t whitePointYArgument; whitePointYArgument = 0U; @@ -8401,8 +8110,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_126, OnFailureCallback_126, true)); return CHIP_NO_ERROR; @@ -8427,8 +8134,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_127, OnFailureCallback_127, true)); return CHIP_NO_ERROR; @@ -8454,7 +8159,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t colorPointRXArgument; colorPointRXArgument = 0U; @@ -8477,8 +8181,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_129, OnFailureCallback_129, true)); return CHIP_NO_ERROR; @@ -8503,8 +8205,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_130, OnFailureCallback_130, true)); return CHIP_NO_ERROR; @@ -8530,7 +8230,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t colorPointRYArgument; colorPointRYArgument = 0U; @@ -8553,8 +8252,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_132, OnFailureCallback_132, true)); return CHIP_NO_ERROR; @@ -8579,8 +8276,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_133, OnFailureCallback_133, true)); return CHIP_NO_ERROR; @@ -8604,7 +8299,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t colorPointRIntensityArgument; colorPointRIntensityArgument = 0; @@ -8627,8 +8321,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_135, OnFailureCallback_135, true)); return CHIP_NO_ERROR; @@ -8653,8 +8345,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_136, OnFailureCallback_136, true)); return CHIP_NO_ERROR; @@ -8680,7 +8370,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t colorPointGXArgument; colorPointGXArgument = 0U; @@ -8703,8 +8392,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_138, OnFailureCallback_138, true)); return CHIP_NO_ERROR; @@ -8729,8 +8416,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_139, OnFailureCallback_139, true)); return CHIP_NO_ERROR; @@ -8756,7 +8441,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t colorPointGYArgument; colorPointGYArgument = 0U; @@ -8779,8 +8463,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_141, OnFailureCallback_141, true)); return CHIP_NO_ERROR; @@ -8805,8 +8487,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_142, OnFailureCallback_142, true)); return CHIP_NO_ERROR; @@ -8830,7 +8510,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t colorPointGIntensityArgument; colorPointGIntensityArgument = 0; @@ -8853,8 +8532,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_144, OnFailureCallback_144, true)); return CHIP_NO_ERROR; @@ -8879,8 +8556,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_145, OnFailureCallback_145, true)); return CHIP_NO_ERROR; @@ -8906,7 +8581,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t colorPointBXArgument; colorPointBXArgument = 0U; @@ -8929,8 +8603,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_147, OnFailureCallback_147, true)); return CHIP_NO_ERROR; @@ -8955,8 +8627,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_148, OnFailureCallback_148, true)); return CHIP_NO_ERROR; @@ -8982,7 +8652,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t colorPointBYArgument; colorPointBYArgument = 0U; @@ -9005,8 +8674,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_150, OnFailureCallback_150, true)); return CHIP_NO_ERROR; @@ -9031,8 +8698,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_151, OnFailureCallback_151, true)); return CHIP_NO_ERROR; @@ -9056,7 +8721,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t colorPointBIntensityArgument; colorPointBIntensityArgument = 0; @@ -9079,8 +8743,6 @@ class Test_TC_CC_2_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_153, OnFailureCallback_153, true)); return CHIP_NO_ERROR; @@ -9247,7 +8909,6 @@ class Test_TC_CC_3_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::On::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -9276,8 +8937,6 @@ class Test_TC_CC_3_1 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -9302,8 +8961,6 @@ class Test_TC_CC_3_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_3, OnFailureCallback_3, true)); return CHIP_NO_ERROR; @@ -9328,7 +8985,6 @@ class Test_TC_CC_3_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::MoveToHue::Type; - ListFreer listFreer; RequestType request; request.hue = 150; request.direction = static_cast(0); @@ -9361,7 +9017,6 @@ class Test_TC_CC_3_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::MoveToHue::Type; - ListFreer listFreer; RequestType request; request.hue = 200; request.direction = static_cast(1); @@ -9394,7 +9049,6 @@ class Test_TC_CC_3_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::MoveToHue::Type; - ListFreer listFreer; RequestType request; request.hue = 250; request.direction = static_cast(2); @@ -9427,7 +9081,6 @@ class Test_TC_CC_3_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::MoveToHue::Type; - ListFreer listFreer; RequestType request; request.hue = 225; request.direction = static_cast(3); @@ -9460,7 +9113,6 @@ class Test_TC_CC_3_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::Off::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -9489,8 +9141,6 @@ class Test_TC_CC_3_1 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_9, OnFailureCallback_9, true)); return CHIP_NO_ERROR; @@ -9643,7 +9293,6 @@ class Test_TC_CC_3_2 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::On::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -9672,8 +9321,6 @@ class Test_TC_CC_3_2 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -9697,7 +9344,6 @@ class Test_TC_CC_3_2 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::MoveHue::Type; - ListFreer listFreer; RequestType request; request.moveMode = static_cast(1); request.rate = 50; @@ -9729,7 +9375,6 @@ class Test_TC_CC_3_2 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::MoveHue::Type; - ListFreer listFreer; RequestType request; request.moveMode = static_cast(0); request.rate = 50; @@ -9761,7 +9406,6 @@ class Test_TC_CC_3_2 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::MoveHue::Type; - ListFreer listFreer; RequestType request; request.moveMode = static_cast(3); request.rate = 50; @@ -9793,7 +9437,6 @@ class Test_TC_CC_3_2 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::MoveHue::Type; - ListFreer listFreer; RequestType request; request.moveMode = static_cast(0); request.rate = 50; @@ -9825,7 +9468,6 @@ class Test_TC_CC_3_2 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::Off::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -9854,8 +9496,6 @@ class Test_TC_CC_3_2 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_8, OnFailureCallback_8, true)); return CHIP_NO_ERROR; @@ -10000,7 +9640,6 @@ class Test_TC_CC_3_3 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::On::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -10029,8 +9668,6 @@ class Test_TC_CC_3_3 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -10054,7 +9691,6 @@ class Test_TC_CC_3_3 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::StepHue::Type; - ListFreer listFreer; RequestType request; request.stepMode = static_cast(1); request.stepSize = 5; @@ -10087,7 +9723,6 @@ class Test_TC_CC_3_3 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::StepHue::Type; - ListFreer listFreer; RequestType request; request.stepMode = static_cast(3); request.stepSize = 5; @@ -10120,7 +9755,6 @@ class Test_TC_CC_3_3 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::Off::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -10149,8 +9783,6 @@ class Test_TC_CC_3_3 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_6, OnFailureCallback_6, true)); return CHIP_NO_ERROR; @@ -10291,7 +9923,6 @@ class Test_TC_CC_4_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::On::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -10320,8 +9951,6 @@ class Test_TC_CC_4_1 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -10345,7 +9974,6 @@ class Test_TC_CC_4_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::MoveToSaturation::Type; - ListFreer listFreer; RequestType request; request.saturation = 90; request.transitionTime = 10U; @@ -10377,7 +10005,6 @@ class Test_TC_CC_4_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::Off::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -10406,8 +10033,6 @@ class Test_TC_CC_4_1 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_5, OnFailureCallback_5, true)); return CHIP_NO_ERROR; @@ -10568,7 +10193,6 @@ class Test_TC_CC_4_2 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::On::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -10597,8 +10221,6 @@ class Test_TC_CC_4_2 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -10622,7 +10244,6 @@ class Test_TC_CC_4_2 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::MoveSaturation::Type; - ListFreer listFreer; RequestType request; request.moveMode = static_cast(1); request.rate = 5; @@ -10654,7 +10275,6 @@ class Test_TC_CC_4_2 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::MoveSaturation::Type; - ListFreer listFreer; RequestType request; request.moveMode = static_cast(3); request.rate = 5; @@ -10686,7 +10306,6 @@ class Test_TC_CC_4_2 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::MoveSaturation::Type; - ListFreer listFreer; RequestType request; request.moveMode = static_cast(1); request.rate = 5; @@ -10718,7 +10337,6 @@ class Test_TC_CC_4_2 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::MoveSaturation::Type; - ListFreer listFreer; RequestType request; request.moveMode = static_cast(0); request.rate = 5; @@ -10750,7 +10368,6 @@ class Test_TC_CC_4_2 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::MoveSaturation::Type; - ListFreer listFreer; RequestType request; request.moveMode = static_cast(3); request.rate = 5; @@ -10782,7 +10399,6 @@ class Test_TC_CC_4_2 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::MoveSaturation::Type; - ListFreer listFreer; RequestType request; request.moveMode = static_cast(0); request.rate = 5; @@ -10814,7 +10430,6 @@ class Test_TC_CC_4_2 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::Off::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -10843,8 +10458,6 @@ class Test_TC_CC_4_2 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_10, OnFailureCallback_10, true)); return CHIP_NO_ERROR; @@ -10989,7 +10602,6 @@ class Test_TC_CC_4_3 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::On::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -11018,8 +10630,6 @@ class Test_TC_CC_4_3 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -11043,7 +10653,6 @@ class Test_TC_CC_4_3 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::StepSaturation::Type; - ListFreer listFreer; RequestType request; request.stepMode = static_cast(1); request.stepSize = 15; @@ -11076,7 +10685,6 @@ class Test_TC_CC_4_3 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::StepSaturation::Type; - ListFreer listFreer; RequestType request; request.stepMode = static_cast(3); request.stepSize = 20; @@ -11109,7 +10717,6 @@ class Test_TC_CC_4_3 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::Off::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -11138,8 +10745,6 @@ class Test_TC_CC_4_3 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_6, OnFailureCallback_6, true)); return CHIP_NO_ERROR; @@ -11280,7 +10885,6 @@ class Test_TC_CC_4_4 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::On::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -11309,8 +10913,6 @@ class Test_TC_CC_4_4 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -11334,7 +10936,6 @@ class Test_TC_CC_4_4 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::MoveToHueAndSaturation::Type; - ListFreer listFreer; RequestType request; request.hue = 40; request.saturation = 160; @@ -11367,7 +10968,6 @@ class Test_TC_CC_4_4 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::Off::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -11396,8 +10996,6 @@ class Test_TC_CC_4_4 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_5, OnFailureCallback_5, true)); return CHIP_NO_ERROR; @@ -11538,7 +11136,6 @@ class Test_TC_CC_5_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::On::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -11567,8 +11164,6 @@ class Test_TC_CC_5_1 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -11592,7 +11187,6 @@ class Test_TC_CC_5_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::MoveToColor::Type; - ListFreer listFreer; RequestType request; request.colorX = 200U; request.colorY = 300U; @@ -11625,7 +11219,6 @@ class Test_TC_CC_5_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::Off::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -11654,8 +11247,6 @@ class Test_TC_CC_5_1 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_5, OnFailureCallback_5, true)); return CHIP_NO_ERROR; @@ -11800,7 +11391,6 @@ class Test_TC_CC_5_2 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::On::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -11829,8 +11419,6 @@ class Test_TC_CC_5_2 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -11854,7 +11442,6 @@ class Test_TC_CC_5_2 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::MoveColor::Type; - ListFreer listFreer; RequestType request; request.rateX = 15; request.rateY = 20; @@ -11886,7 +11473,6 @@ class Test_TC_CC_5_2 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::StopMoveStep::Type; - ListFreer listFreer; RequestType request; request.optionsMask = 0; request.optionsOverride = 0; @@ -11916,7 +11502,6 @@ class Test_TC_CC_5_2 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::Off::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -11945,8 +11530,6 @@ class Test_TC_CC_5_2 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_6, OnFailureCallback_6, true)); return CHIP_NO_ERROR; @@ -12087,7 +11670,6 @@ class Test_TC_CC_5_3 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::On::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -12116,8 +11698,6 @@ class Test_TC_CC_5_3 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -12141,7 +11721,6 @@ class Test_TC_CC_5_3 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::StepColor::Type; - ListFreer listFreer; RequestType request; request.stepX = 15; request.stepY = 20; @@ -12174,7 +11753,6 @@ class Test_TC_CC_5_3 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::Off::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -12203,8 +11781,6 @@ class Test_TC_CC_5_3 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_5, OnFailureCallback_5, true)); return CHIP_NO_ERROR; @@ -12345,7 +11921,6 @@ class Test_TC_CC_6_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::On::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -12374,8 +11949,6 @@ class Test_TC_CC_6_1 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -12399,7 +11972,6 @@ class Test_TC_CC_6_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::MoveToColorTemperature::Type; - ListFreer listFreer; RequestType request; request.colorTemperature = 100U; request.transitionTime = 10U; @@ -12431,7 +12003,6 @@ class Test_TC_CC_6_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::Off::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -12460,8 +12031,6 @@ class Test_TC_CC_6_1 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_5, OnFailureCallback_5, true)); return CHIP_NO_ERROR; @@ -12636,7 +12205,6 @@ class Test_TC_CC_6_2 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::On::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -12665,8 +12233,6 @@ class Test_TC_CC_6_2 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -12691,8 +12257,6 @@ class Test_TC_CC_6_2 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_3, OnFailureCallback_3, true)); return CHIP_NO_ERROR; @@ -12717,7 +12281,6 @@ class Test_TC_CC_6_2 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::MoveColorTemperature::Type; - ListFreer listFreer; RequestType request; request.moveMode = static_cast(1); request.rate = 10U; @@ -12751,7 +12314,6 @@ class Test_TC_CC_6_2 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::MoveColorTemperature::Type; - ListFreer listFreer; RequestType request; request.moveMode = static_cast(3); request.rate = 20U; @@ -12785,7 +12347,6 @@ class Test_TC_CC_6_2 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::MoveColorTemperature::Type; - ListFreer listFreer; RequestType request; request.moveMode = static_cast(1); request.rate = 10U; @@ -12819,7 +12380,6 @@ class Test_TC_CC_6_2 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::MoveColorTemperature::Type; - ListFreer listFreer; RequestType request; request.moveMode = static_cast(0); request.rate = 10U; @@ -12853,7 +12413,6 @@ class Test_TC_CC_6_2 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::MoveColorTemperature::Type; - ListFreer listFreer; RequestType request; request.moveMode = static_cast(3); request.rate = 20U; @@ -12887,7 +12446,6 @@ class Test_TC_CC_6_2 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::MoveColorTemperature::Type; - ListFreer listFreer; RequestType request; request.moveMode = static_cast(0); request.rate = 10U; @@ -12921,7 +12479,6 @@ class Test_TC_CC_6_2 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::Off::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -12950,8 +12507,6 @@ class Test_TC_CC_6_2 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_11, OnFailureCallback_11, true)); return CHIP_NO_ERROR; @@ -13096,7 +12651,6 @@ class Test_TC_CC_6_3 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::On::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -13125,8 +12679,6 @@ class Test_TC_CC_6_3 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -13150,7 +12702,6 @@ class Test_TC_CC_6_3 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::StepColorTemperature::Type; - ListFreer listFreer; RequestType request; request.stepMode = static_cast(1); request.stepSize = 5U; @@ -13185,7 +12736,6 @@ class Test_TC_CC_6_3 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::StepColorTemperature::Type; - ListFreer listFreer; RequestType request; request.stepMode = static_cast(3); request.stepSize = 5U; @@ -13220,7 +12770,6 @@ class Test_TC_CC_6_3 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::Off::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -13249,8 +12798,6 @@ class Test_TC_CC_6_3 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_6, OnFailureCallback_6, true)); return CHIP_NO_ERROR; @@ -13407,7 +12954,6 @@ class Test_TC_CC_7_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::On::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -13436,8 +12982,6 @@ class Test_TC_CC_7_1 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -13461,7 +13005,6 @@ class Test_TC_CC_7_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::EnhancedMoveToHue::Type; - ListFreer listFreer; RequestType request; request.enhancedHue = 1025U; request.direction = static_cast(0); @@ -13494,7 +13037,6 @@ class Test_TC_CC_7_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::EnhancedMoveToHue::Type; - ListFreer listFreer; RequestType request; request.enhancedHue = 1100U; request.direction = static_cast(0); @@ -13527,7 +13069,6 @@ class Test_TC_CC_7_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::EnhancedMoveToHue::Type; - ListFreer listFreer; RequestType request; request.enhancedHue = 1150U; request.direction = static_cast(1); @@ -13560,7 +13101,6 @@ class Test_TC_CC_7_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::EnhancedMoveToHue::Type; - ListFreer listFreer; RequestType request; request.enhancedHue = 1200U; request.direction = static_cast(2); @@ -13593,7 +13133,6 @@ class Test_TC_CC_7_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::EnhancedMoveToHue::Type; - ListFreer listFreer; RequestType request; request.enhancedHue = 1300U; request.direction = static_cast(3); @@ -13626,7 +13165,6 @@ class Test_TC_CC_7_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::Off::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -13655,8 +13193,6 @@ class Test_TC_CC_7_1 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_9, OnFailureCallback_9, true)); return CHIP_NO_ERROR; @@ -13823,7 +13359,6 @@ class Test_TC_CC_7_2 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::On::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -13852,8 +13387,6 @@ class Test_TC_CC_7_2 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -13878,8 +13411,6 @@ class Test_TC_CC_7_2 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_3, OnFailureCallback_3, true)); return CHIP_NO_ERROR; @@ -13904,7 +13435,6 @@ class Test_TC_CC_7_2 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::EnhancedMoveHue::Type; - ListFreer listFreer; RequestType request; request.moveMode = static_cast(1); request.rate = 50U; @@ -13936,7 +13466,6 @@ class Test_TC_CC_7_2 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::EnhancedMoveHue::Type; - ListFreer listFreer; RequestType request; request.moveMode = static_cast(0); request.rate = 0U; @@ -13968,7 +13497,6 @@ class Test_TC_CC_7_2 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::EnhancedMoveHue::Type; - ListFreer listFreer; RequestType request; request.moveMode = static_cast(3); request.rate = 5U; @@ -14000,7 +13528,6 @@ class Test_TC_CC_7_2 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::EnhancedMoveHue::Type; - ListFreer listFreer; RequestType request; request.moveMode = static_cast(0); request.rate = 0U; @@ -14032,7 +13559,6 @@ class Test_TC_CC_7_2 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::Off::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -14061,8 +13587,6 @@ class Test_TC_CC_7_2 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_9, OnFailureCallback_9, true)); return CHIP_NO_ERROR; @@ -14207,7 +13731,6 @@ class Test_TC_CC_7_3 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::On::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -14236,8 +13759,6 @@ class Test_TC_CC_7_3 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -14261,7 +13782,6 @@ class Test_TC_CC_7_3 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::EnhancedStepHue::Type; - ListFreer listFreer; RequestType request; request.stepMode = static_cast(0); request.stepSize = 50U; @@ -14294,7 +13814,6 @@ class Test_TC_CC_7_3 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::EnhancedStepHue::Type; - ListFreer listFreer; RequestType request; request.stepMode = static_cast(1); request.stepSize = 75U; @@ -14327,7 +13846,6 @@ class Test_TC_CC_7_3 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::Off::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -14356,8 +13874,6 @@ class Test_TC_CC_7_3 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_6, OnFailureCallback_6, true)); return CHIP_NO_ERROR; @@ -14498,7 +14014,6 @@ class Test_TC_CC_7_4 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::On::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -14527,8 +14042,6 @@ class Test_TC_CC_7_4 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -14552,7 +14065,6 @@ class Test_TC_CC_7_4 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::EnhancedMoveToHueAndSaturation::Type; - ListFreer listFreer; RequestType request; request.enhancedHue = 1200U; request.saturation = 90; @@ -14585,7 +14097,6 @@ class Test_TC_CC_7_4 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::Off::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -14614,8 +14125,6 @@ class Test_TC_CC_7_4 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_5, OnFailureCallback_5, true)); return CHIP_NO_ERROR; @@ -14880,7 +14389,6 @@ class Test_TC_CC_8_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::On::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -14909,8 +14417,6 @@ class Test_TC_CC_8_1 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -14934,7 +14440,6 @@ class Test_TC_CC_8_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::ColorLoopSet::Type; - ListFreer listFreer; RequestType request; request.updateFlags = static_cast>(14); request.action = static_cast(0); @@ -14970,8 +14475,6 @@ class Test_TC_CC_8_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_4, OnFailureCallback_4, true)); return CHIP_NO_ERROR; @@ -14996,8 +14499,6 @@ class Test_TC_CC_8_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_5, OnFailureCallback_5, true)); return CHIP_NO_ERROR; @@ -15022,8 +14523,6 @@ class Test_TC_CC_8_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_6, OnFailureCallback_6, true)); @@ -15049,8 +14548,6 @@ class Test_TC_CC_8_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_7, OnFailureCallback_7, true)); return CHIP_NO_ERROR; @@ -15074,7 +14571,6 @@ class Test_TC_CC_8_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::ColorLoopSet::Type; - ListFreer listFreer; RequestType request; request.updateFlags = static_cast>(1); request.action = static_cast(1); @@ -15110,8 +14606,6 @@ class Test_TC_CC_8_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_9, OnFailureCallback_9, true)); return CHIP_NO_ERROR; @@ -15135,7 +14629,6 @@ class Test_TC_CC_8_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::ColorLoopSet::Type; - ListFreer listFreer; RequestType request; request.updateFlags = static_cast>(6); request.action = static_cast(0); @@ -15171,8 +14664,6 @@ class Test_TC_CC_8_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_11, OnFailureCallback_11, true)); return CHIP_NO_ERROR; @@ -15197,8 +14688,6 @@ class Test_TC_CC_8_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_12, OnFailureCallback_12, true)); return CHIP_NO_ERROR; @@ -15222,7 +14711,6 @@ class Test_TC_CC_8_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::ColorLoopSet::Type; - ListFreer listFreer; RequestType request; request.updateFlags = static_cast>(2); request.action = static_cast(0); @@ -15258,8 +14746,6 @@ class Test_TC_CC_8_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_14, OnFailureCallback_14, true)); return CHIP_NO_ERROR; @@ -15283,7 +14769,6 @@ class Test_TC_CC_8_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::Off::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -15312,8 +14797,6 @@ class Test_TC_CC_8_1 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_16, OnFailureCallback_16, true)); return CHIP_NO_ERROR; @@ -16215,7 +15698,6 @@ class Test_TC_CC_9_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::On::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -16244,8 +15726,6 @@ class Test_TC_CC_9_1 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -16269,7 +15749,6 @@ class Test_TC_CC_9_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::ColorLoopSet::Type; - ListFreer listFreer; RequestType request; request.updateFlags = static_cast>(1); request.action = static_cast(0); @@ -16305,8 +15784,6 @@ class Test_TC_CC_9_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_4, OnFailureCallback_4, true)); return CHIP_NO_ERROR; @@ -16330,7 +15807,6 @@ class Test_TC_CC_9_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::ColorLoopSet::Type; - ListFreer listFreer; RequestType request; request.updateFlags = static_cast>(2); request.action = static_cast(0); @@ -16366,8 +15842,6 @@ class Test_TC_CC_9_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_6, OnFailureCallback_6, true)); return CHIP_NO_ERROR; @@ -16391,7 +15865,6 @@ class Test_TC_CC_9_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::ColorLoopSet::Type; - ListFreer listFreer; RequestType request; request.updateFlags = static_cast>(4); request.action = static_cast(0); @@ -16427,8 +15900,6 @@ class Test_TC_CC_9_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_8, OnFailureCallback_8, true)); return CHIP_NO_ERROR; @@ -16452,7 +15923,6 @@ class Test_TC_CC_9_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::ColorLoopSet::Type; - ListFreer listFreer; RequestType request; request.updateFlags = static_cast>(8); request.action = static_cast(0); @@ -16488,8 +15958,6 @@ class Test_TC_CC_9_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_10, OnFailureCallback_10, true)); @@ -16514,7 +15982,6 @@ class Test_TC_CC_9_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::ColorLoopSet::Type; - ListFreer listFreer; RequestType request; request.updateFlags = static_cast>(1); request.action = static_cast(1); @@ -16550,8 +16017,6 @@ class Test_TC_CC_9_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_12, OnFailureCallback_12, true)); return CHIP_NO_ERROR; @@ -16576,8 +16041,6 @@ class Test_TC_CC_9_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_13, OnFailureCallback_13, true)); return CHIP_NO_ERROR; @@ -16602,8 +16065,6 @@ class Test_TC_CC_9_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_14, OnFailureCallback_14, true)); @@ -16628,7 +16089,6 @@ class Test_TC_CC_9_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::ColorLoopSet::Type; - ListFreer listFreer; RequestType request; request.updateFlags = static_cast>(1); request.action = static_cast(0); @@ -16664,8 +16124,6 @@ class Test_TC_CC_9_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_16, OnFailureCallback_16, true)); return CHIP_NO_ERROR; @@ -16690,8 +16148,6 @@ class Test_TC_CC_9_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_17, OnFailureCallback_17, true)); @@ -16717,8 +16173,6 @@ class Test_TC_CC_9_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_18, OnFailureCallback_18, true)); return CHIP_NO_ERROR; @@ -16742,7 +16196,6 @@ class Test_TC_CC_9_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::ColorLoopSet::Type; - ListFreer listFreer; RequestType request; request.updateFlags = static_cast>(2); request.action = static_cast(0); @@ -16778,8 +16231,6 @@ class Test_TC_CC_9_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_20, OnFailureCallback_20, true)); return CHIP_NO_ERROR; @@ -16803,7 +16254,6 @@ class Test_TC_CC_9_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::ColorLoopSet::Type; - ListFreer listFreer; RequestType request; request.updateFlags = static_cast>(1); request.action = static_cast(1); @@ -16839,8 +16289,6 @@ class Test_TC_CC_9_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_22, OnFailureCallback_22, true)); return CHIP_NO_ERROR; @@ -16865,8 +16313,6 @@ class Test_TC_CC_9_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_23, OnFailureCallback_23, true)); return CHIP_NO_ERROR; @@ -16891,8 +16337,6 @@ class Test_TC_CC_9_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_24, OnFailureCallback_24, true)); @@ -16917,7 +16361,6 @@ class Test_TC_CC_9_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::ColorLoopSet::Type; - ListFreer listFreer; RequestType request; request.updateFlags = static_cast>(1); request.action = static_cast(0); @@ -16953,8 +16396,6 @@ class Test_TC_CC_9_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_26, OnFailureCallback_26, true)); return CHIP_NO_ERROR; @@ -16979,8 +16420,6 @@ class Test_TC_CC_9_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_27, OnFailureCallback_27, true)); @@ -17006,8 +16445,6 @@ class Test_TC_CC_9_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_28, OnFailureCallback_28, true)); return CHIP_NO_ERROR; @@ -17031,7 +16468,6 @@ class Test_TC_CC_9_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::EnhancedMoveToHue::Type; - ListFreer listFreer; RequestType request; request.enhancedHue = 40960U; request.direction = static_cast(0); @@ -17071,8 +16507,6 @@ class Test_TC_CC_9_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_31, OnFailureCallback_31, true)); return CHIP_NO_ERROR; @@ -17096,7 +16530,6 @@ class Test_TC_CC_9_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::ColorLoopSet::Type; - ListFreer listFreer; RequestType request; request.updateFlags = static_cast>(2); request.action = static_cast(0); @@ -17132,8 +16565,6 @@ class Test_TC_CC_9_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_33, OnFailureCallback_33, true)); return CHIP_NO_ERROR; @@ -17157,7 +16588,6 @@ class Test_TC_CC_9_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::ColorLoopSet::Type; - ListFreer listFreer; RequestType request; request.updateFlags = static_cast>(1); request.action = static_cast(2); @@ -17193,8 +16623,6 @@ class Test_TC_CC_9_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_35, OnFailureCallback_35, true)); return CHIP_NO_ERROR; @@ -17219,8 +16647,6 @@ class Test_TC_CC_9_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_36, OnFailureCallback_36, true)); return CHIP_NO_ERROR; @@ -17245,8 +16671,6 @@ class Test_TC_CC_9_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_37, OnFailureCallback_37, true)); @@ -17271,7 +16695,6 @@ class Test_TC_CC_9_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::ColorLoopSet::Type; - ListFreer listFreer; RequestType request; request.updateFlags = static_cast>(1); request.action = static_cast(0); @@ -17307,8 +16730,6 @@ class Test_TC_CC_9_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_39, OnFailureCallback_39, true)); return CHIP_NO_ERROR; @@ -17333,8 +16754,6 @@ class Test_TC_CC_9_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_40, OnFailureCallback_40, true)); @@ -17360,8 +16779,6 @@ class Test_TC_CC_9_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_41, OnFailureCallback_41, true)); return CHIP_NO_ERROR; @@ -17385,7 +16802,6 @@ class Test_TC_CC_9_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::ColorLoopSet::Type; - ListFreer listFreer; RequestType request; request.updateFlags = static_cast>(2); request.action = static_cast(0); @@ -17421,8 +16837,6 @@ class Test_TC_CC_9_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_43, OnFailureCallback_43, true)); return CHIP_NO_ERROR; @@ -17446,7 +16860,6 @@ class Test_TC_CC_9_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::ColorLoopSet::Type; - ListFreer listFreer; RequestType request; request.updateFlags = static_cast>(1); request.action = static_cast(2); @@ -17482,8 +16895,6 @@ class Test_TC_CC_9_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_45, OnFailureCallback_45, true)); return CHIP_NO_ERROR; @@ -17508,8 +16919,6 @@ class Test_TC_CC_9_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_46, OnFailureCallback_46, true)); return CHIP_NO_ERROR; @@ -17534,8 +16943,6 @@ class Test_TC_CC_9_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_47, OnFailureCallback_47, true)); @@ -17560,7 +16967,6 @@ class Test_TC_CC_9_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::ColorLoopSet::Type; - ListFreer listFreer; RequestType request; request.updateFlags = static_cast>(1); request.action = static_cast(0); @@ -17596,8 +17002,6 @@ class Test_TC_CC_9_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_49, OnFailureCallback_49, true)); return CHIP_NO_ERROR; @@ -17622,8 +17026,6 @@ class Test_TC_CC_9_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_50, OnFailureCallback_50, true)); @@ -17649,8 +17051,6 @@ class Test_TC_CC_9_1 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_51, OnFailureCallback_51, true)); return CHIP_NO_ERROR; @@ -17674,7 +17074,6 @@ class Test_TC_CC_9_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::Off::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -17703,8 +17102,6 @@ class Test_TC_CC_9_1 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_53, OnFailureCallback_53, true)); return CHIP_NO_ERROR; @@ -18089,7 +17486,6 @@ class Test_TC_CC_9_2 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::On::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -18118,8 +17514,6 @@ class Test_TC_CC_9_2 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -18143,7 +17537,6 @@ class Test_TC_CC_9_2 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::ColorLoopSet::Type; - ListFreer listFreer; RequestType request; request.updateFlags = static_cast>(15); request.action = static_cast(0); @@ -18179,8 +17572,6 @@ class Test_TC_CC_9_2 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_4, OnFailureCallback_4, true)); return CHIP_NO_ERROR; @@ -18205,8 +17596,6 @@ class Test_TC_CC_9_2 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_5, OnFailureCallback_5, true)); return CHIP_NO_ERROR; @@ -18231,8 +17620,6 @@ class Test_TC_CC_9_2 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_6, OnFailureCallback_6, true)); return CHIP_NO_ERROR; @@ -18257,8 +17644,6 @@ class Test_TC_CC_9_2 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_7, OnFailureCallback_7, true)); @@ -18283,7 +17668,6 @@ class Test_TC_CC_9_2 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::ColorLoopSet::Type; - ListFreer listFreer; RequestType request; request.updateFlags = static_cast>(1); request.action = static_cast(1); @@ -18319,8 +17703,6 @@ class Test_TC_CC_9_2 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_9, OnFailureCallback_9, true)); return CHIP_NO_ERROR; @@ -18345,8 +17727,6 @@ class Test_TC_CC_9_2 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_10, OnFailureCallback_10, true)); return CHIP_NO_ERROR; @@ -18371,8 +17751,6 @@ class Test_TC_CC_9_2 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_11, OnFailureCallback_11, true)); @@ -18397,7 +17775,6 @@ class Test_TC_CC_9_2 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::ColorLoopSet::Type; - ListFreer listFreer; RequestType request; request.updateFlags = static_cast>(2); request.action = static_cast(0); @@ -18433,8 +17810,6 @@ class Test_TC_CC_9_2 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_13, OnFailureCallback_13, true)); return CHIP_NO_ERROR; @@ -18458,7 +17833,6 @@ class Test_TC_CC_9_2 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::ColorLoopSet::Type; - ListFreer listFreer; RequestType request; request.updateFlags = static_cast>(1); request.action = static_cast(0); @@ -18494,8 +17868,6 @@ class Test_TC_CC_9_2 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_15, OnFailureCallback_15, true)); return CHIP_NO_ERROR; @@ -18520,8 +17892,6 @@ class Test_TC_CC_9_2 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_16, OnFailureCallback_16, true)); @@ -18547,8 +17917,6 @@ class Test_TC_CC_9_2 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_17, OnFailureCallback_17, true)); return CHIP_NO_ERROR; @@ -18572,7 +17940,6 @@ class Test_TC_CC_9_2 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::Off::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -18601,8 +17968,6 @@ class Test_TC_CC_9_2 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_19, OnFailureCallback_19, true)); return CHIP_NO_ERROR; @@ -18987,7 +18352,6 @@ class Test_TC_CC_9_3 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::On::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -19016,8 +18380,6 @@ class Test_TC_CC_9_3 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -19041,7 +18403,6 @@ class Test_TC_CC_9_3 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::ColorLoopSet::Type; - ListFreer listFreer; RequestType request; request.updateFlags = static_cast>(15); request.action = static_cast(0); @@ -19077,8 +18438,6 @@ class Test_TC_CC_9_3 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_4, OnFailureCallback_4, true)); return CHIP_NO_ERROR; @@ -19103,8 +18462,6 @@ class Test_TC_CC_9_3 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_5, OnFailureCallback_5, true)); return CHIP_NO_ERROR; @@ -19129,8 +18486,6 @@ class Test_TC_CC_9_3 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_6, OnFailureCallback_6, true)); return CHIP_NO_ERROR; @@ -19155,8 +18510,6 @@ class Test_TC_CC_9_3 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_7, OnFailureCallback_7, true)); @@ -19181,7 +18534,6 @@ class Test_TC_CC_9_3 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::ColorLoopSet::Type; - ListFreer listFreer; RequestType request; request.updateFlags = static_cast>(1); request.action = static_cast(1); @@ -19217,8 +18569,6 @@ class Test_TC_CC_9_3 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_9, OnFailureCallback_9, true)); return CHIP_NO_ERROR; @@ -19243,8 +18593,6 @@ class Test_TC_CC_9_3 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_10, OnFailureCallback_10, true)); return CHIP_NO_ERROR; @@ -19269,8 +18617,6 @@ class Test_TC_CC_9_3 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_11, OnFailureCallback_11, true)); @@ -19295,7 +18641,6 @@ class Test_TC_CC_9_3 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::ColorLoopSet::Type; - ListFreer listFreer; RequestType request; request.updateFlags = static_cast>(4); request.action = static_cast(0); @@ -19331,8 +18676,6 @@ class Test_TC_CC_9_3 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_13, OnFailureCallback_13, true)); return CHIP_NO_ERROR; @@ -19356,7 +18699,6 @@ class Test_TC_CC_9_3 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ColorControl::Commands::ColorLoopSet::Type; - ListFreer listFreer; RequestType request; request.updateFlags = static_cast>(1); request.action = static_cast(0); @@ -19392,8 +18734,6 @@ class Test_TC_CC_9_3 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_15, OnFailureCallback_15, true)); return CHIP_NO_ERROR; @@ -19418,8 +18758,6 @@ class Test_TC_CC_9_3 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_16, OnFailureCallback_16, true)); @@ -19445,8 +18783,6 @@ class Test_TC_CC_9_3 : public TestCommand chip::Controller::ColorControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_17, OnFailureCallback_17, true)); return CHIP_NO_ERROR; @@ -19470,7 +18806,6 @@ class Test_TC_CC_9_3 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::Off::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -19499,8 +18834,6 @@ class Test_TC_CC_9_3 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_19, OnFailureCallback_19, true)); return CHIP_NO_ERROR; @@ -19878,8 +19211,6 @@ class Test_TC_DM_1_1 : public TestCommand chip::Controller::BasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); return CHIP_NO_ERROR; @@ -19903,8 +19234,6 @@ class Test_TC_DM_1_1 : public TestCommand chip::Controller::BasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -19929,8 +19258,6 @@ class Test_TC_DM_1_1 : public TestCommand chip::Controller::BasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_3, OnFailureCallback_3, true)); return CHIP_NO_ERROR; @@ -19954,8 +19281,6 @@ class Test_TC_DM_1_1 : public TestCommand chip::Controller::BasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_4, OnFailureCallback_4, true)); return CHIP_NO_ERROR; @@ -19980,8 +19305,6 @@ class Test_TC_DM_1_1 : public TestCommand chip::Controller::BasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_5, OnFailureCallback_5, true)); return CHIP_NO_ERROR; @@ -20005,8 +19328,6 @@ class Test_TC_DM_1_1 : public TestCommand chip::Controller::BasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_6, OnFailureCallback_6, true)); return CHIP_NO_ERROR; @@ -20031,8 +19352,6 @@ class Test_TC_DM_1_1 : public TestCommand chip::Controller::BasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_7, OnFailureCallback_7, true)); return CHIP_NO_ERROR; @@ -20058,8 +19377,6 @@ class Test_TC_DM_1_1 : public TestCommand chip::Controller::BasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_8, OnFailureCallback_8, true)); return CHIP_NO_ERROR; @@ -20083,8 +19400,6 @@ class Test_TC_DM_1_1 : public TestCommand chip::Controller::BasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_9, OnFailureCallback_9, true)); return CHIP_NO_ERROR; @@ -20110,8 +19425,6 @@ class Test_TC_DM_1_1 : public TestCommand chip::Controller::BasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_10, OnFailureCallback_10, true)); return CHIP_NO_ERROR; @@ -20135,8 +19448,6 @@ class Test_TC_DM_1_1 : public TestCommand chip::Controller::BasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_11, OnFailureCallback_11, true)); return CHIP_NO_ERROR; @@ -20163,8 +19474,6 @@ class Test_TC_DM_1_1 : public TestCommand chip::Controller::BasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_12, OnFailureCallback_12, true)); return CHIP_NO_ERROR; @@ -20191,8 +19500,6 @@ class Test_TC_DM_1_1 : public TestCommand chip::Controller::BasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_13, OnFailureCallback_13, true)); return CHIP_NO_ERROR; @@ -20217,8 +19524,6 @@ class Test_TC_DM_1_1 : public TestCommand chip::Controller::BasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_14, OnFailureCallback_14, true)); return CHIP_NO_ERROR; @@ -20244,8 +19549,6 @@ class Test_TC_DM_1_1 : public TestCommand chip::Controller::BasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_15, OnFailureCallback_15, true)); return CHIP_NO_ERROR; @@ -20270,8 +19573,6 @@ class Test_TC_DM_1_1 : public TestCommand chip::Controller::BasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_16, OnFailureCallback_16, true)); return CHIP_NO_ERROR; @@ -20296,8 +19597,6 @@ class Test_TC_DM_1_1 : public TestCommand chip::Controller::BasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_17, OnFailureCallback_17, true)); return CHIP_NO_ERROR; @@ -20321,8 +19620,6 @@ class Test_TC_DM_1_1 : public TestCommand chip::Controller::BasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_18, OnFailureCallback_18, true)); return CHIP_NO_ERROR; @@ -20346,8 +19643,6 @@ class Test_TC_DM_1_1 : public TestCommand chip::Controller::BasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_19, OnFailureCallback_19, true)); return CHIP_NO_ERROR; @@ -20480,8 +19775,6 @@ class Test_TC_DM_3_1 : public TestCommand chip::Controller::NetworkCommissioningClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); return CHIP_NO_ERROR; @@ -20505,8 +19798,6 @@ class Test_TC_DM_3_1 : public TestCommand chip::Controller::NetworkCommissioningClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -20669,8 +19960,6 @@ class Test_TC_DM_2_2 : public TestCommand chip::Controller::OperationalCredentialsClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); return CHIP_NO_ERROR; @@ -20701,8 +19990,6 @@ class Test_TC_DM_2_2 : public TestCommand chip::Controller::OperationalCredentialsClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); @@ -20728,8 +20015,6 @@ class Test_TC_DM_2_2 : public TestCommand chip::Controller::OperationalCredentialsClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_3, OnFailureCallback_3, true)); @@ -20755,8 +20040,6 @@ class Test_TC_DM_2_2 : public TestCommand chip::Controller::OperationalCredentialsClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_4, OnFailureCallback_4, true)); @@ -20926,8 +20209,6 @@ class Test_TC_EMR_1_1 : public TestCommand chip::Controller::ElectricalMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); @@ -20953,8 +20234,6 @@ class Test_TC_EMR_1_1 : public TestCommand chip::Controller::ElectricalMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); @@ -20979,7 +20258,6 @@ class Test_TC_EMR_1_1 : public TestCommand chip::Controller::ElectricalMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t clusterRevisionArgument; clusterRevisionArgument = 1U; @@ -21004,8 +20282,6 @@ class Test_TC_EMR_1_1 : public TestCommand chip::Controller::ElectricalMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_4, OnFailureCallback_4, true)); @@ -21031,8 +20307,6 @@ class Test_TC_EMR_1_1 : public TestCommand chip::Controller::ElectricalMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_5, OnFailureCallback_5, true)); return CHIP_NO_ERROR; @@ -21329,8 +20603,6 @@ class Test_TC_FLW_1_1 : public TestCommand chip::Controller::FlowMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); return CHIP_NO_ERROR; @@ -21354,7 +20626,6 @@ class Test_TC_FLW_1_1 : public TestCommand chip::Controller::FlowMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t clusterRevisionArgument; clusterRevisionArgument = 2U; @@ -21378,8 +20649,6 @@ class Test_TC_FLW_1_1 : public TestCommand chip::Controller::FlowMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_3, OnFailureCallback_3, true)); return CHIP_NO_ERROR; @@ -21650,8 +20919,6 @@ class Test_TC_FLW_2_1 : public TestCommand chip::Controller::FlowMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); return CHIP_NO_ERROR; @@ -21675,8 +20942,6 @@ class Test_TC_FLW_2_1 : public TestCommand chip::Controller::FlowMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -21700,8 +20965,6 @@ class Test_TC_FLW_2_1 : public TestCommand chip::Controller::FlowMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_3, OnFailureCallback_3, true)); return CHIP_NO_ERROR; @@ -21725,7 +20988,6 @@ class Test_TC_FLW_2_1 : public TestCommand chip::Controller::FlowMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable measuredValueArgument; measuredValueArgument.SetNonNull(); measuredValueArgument.Value() = 0U; @@ -21750,7 +21012,6 @@ class Test_TC_FLW_2_1 : public TestCommand chip::Controller::FlowMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable minMeasuredValueArgument; minMeasuredValueArgument.SetNonNull(); minMeasuredValueArgument.Value() = 0U; @@ -21775,7 +21036,6 @@ class Test_TC_FLW_2_1 : public TestCommand chip::Controller::FlowMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable maxMeasuredValueArgument; maxMeasuredValueArgument.SetNonNull(); maxMeasuredValueArgument.Value() = 0U; @@ -21800,8 +21060,6 @@ class Test_TC_FLW_2_1 : public TestCommand chip::Controller::FlowMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_7, OnFailureCallback_7, true)); return CHIP_NO_ERROR; @@ -21825,8 +21083,6 @@ class Test_TC_FLW_2_1 : public TestCommand chip::Controller::FlowMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_8, OnFailureCallback_8, true)); return CHIP_NO_ERROR; @@ -21850,8 +21106,6 @@ class Test_TC_FLW_2_1 : public TestCommand chip::Controller::FlowMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_9, OnFailureCallback_9, true)); return CHIP_NO_ERROR; @@ -21875,8 +21129,6 @@ class Test_TC_FLW_2_1 : public TestCommand chip::Controller::FlowMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_10, OnFailureCallback_10, true)); return CHIP_NO_ERROR; @@ -21901,8 +21153,6 @@ class Test_TC_FLW_2_1 : public TestCommand chip::Controller::FlowMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_11, OnFailureCallback_11, true)); return CHIP_NO_ERROR; @@ -21928,7 +21178,6 @@ class Test_TC_FLW_2_1 : public TestCommand chip::Controller::FlowMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t toleranceArgument; toleranceArgument = 0U; @@ -21952,8 +21201,6 @@ class Test_TC_FLW_2_1 : public TestCommand chip::Controller::FlowMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_13, OnFailureCallback_13, true)); return CHIP_NO_ERROR; @@ -22083,8 +21330,6 @@ class Test_TC_FLW_2_2 : public TestCommand chip::Controller::FlowMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); return CHIP_NO_ERROR; @@ -22108,8 +21353,6 @@ class Test_TC_FLW_2_2 : public TestCommand chip::Controller::FlowMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -22278,8 +21521,6 @@ class Test_TC_ILL_1_1 : public TestCommand chip::Controller::IlluminanceMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); @@ -22305,8 +21546,6 @@ class Test_TC_ILL_1_1 : public TestCommand chip::Controller::IlluminanceMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); @@ -22331,7 +21570,6 @@ class Test_TC_ILL_1_1 : public TestCommand chip::Controller::IlluminanceMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t clusterRevisionArgument; clusterRevisionArgument = 1U; @@ -22356,8 +21594,6 @@ class Test_TC_ILL_1_1 : public TestCommand chip::Controller::IlluminanceMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_4, OnFailureCallback_4, true)); @@ -22383,8 +21619,6 @@ class Test_TC_ILL_1_1 : public TestCommand chip::Controller::IlluminanceMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_5, OnFailureCallback_5, true)); @@ -22579,8 +21813,6 @@ class Test_TC_LVL_1_1 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); return CHIP_NO_ERROR; @@ -22605,8 +21837,6 @@ class Test_TC_LVL_1_1 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -22630,7 +21860,6 @@ class Test_TC_LVL_1_1 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t clusterRevisionArgument; clusterRevisionArgument = 4U; @@ -22654,8 +21883,6 @@ class Test_TC_LVL_1_1 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_4, OnFailureCallback_4, true)); return CHIP_NO_ERROR; @@ -22680,8 +21907,6 @@ class Test_TC_LVL_1_1 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_5, OnFailureCallback_5, true)); return CHIP_NO_ERROR; @@ -22705,8 +21930,6 @@ class Test_TC_LVL_1_1 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_6, OnFailureCallback_6, true)); return CHIP_NO_ERROR; @@ -22730,7 +21953,6 @@ class Test_TC_LVL_1_1 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint32_t featureMapArgument; featureMapArgument = 0UL; @@ -23020,7 +22242,6 @@ class Test_TC_LVL_2_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::LevelControl::Commands::MoveToLevel::Type; - ListFreer listFreer; RequestType request; request.level = 254; request.transitionTime = 0U; @@ -23059,8 +22280,6 @@ class Test_TC_LVL_2_1 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_3, OnFailureCallback_3, true)); return CHIP_NO_ERROR; @@ -23085,8 +22304,6 @@ class Test_TC_LVL_2_1 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_4, OnFailureCallback_4, true)); return CHIP_NO_ERROR; @@ -23111,8 +22328,6 @@ class Test_TC_LVL_2_1 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_5, OnFailureCallback_5, true)); return CHIP_NO_ERROR; @@ -23137,8 +22352,6 @@ class Test_TC_LVL_2_1 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_6, OnFailureCallback_6, true)); return CHIP_NO_ERROR; @@ -23162,8 +22375,6 @@ class Test_TC_LVL_2_1 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_7, OnFailureCallback_7, true)); return CHIP_NO_ERROR; @@ -23188,8 +22399,6 @@ class Test_TC_LVL_2_1 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_8, OnFailureCallback_8, true)); return CHIP_NO_ERROR; @@ -23214,8 +22423,6 @@ class Test_TC_LVL_2_1 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_9, OnFailureCallback_9, true)); return CHIP_NO_ERROR; @@ -23240,8 +22447,6 @@ class Test_TC_LVL_2_1 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_10, OnFailureCallback_10, true)); return CHIP_NO_ERROR; @@ -23266,8 +22471,6 @@ class Test_TC_LVL_2_1 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_11, OnFailureCallback_11, true)); return CHIP_NO_ERROR; @@ -23291,8 +22494,6 @@ class Test_TC_LVL_2_1 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_12, OnFailureCallback_12, true)); return CHIP_NO_ERROR; @@ -23316,8 +22517,6 @@ class Test_TC_LVL_2_1 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_13, OnFailureCallback_13, true)); return CHIP_NO_ERROR; @@ -23341,8 +22540,6 @@ class Test_TC_LVL_2_1 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_14, OnFailureCallback_14, true)); return CHIP_NO_ERROR; @@ -23366,8 +22563,6 @@ class Test_TC_LVL_2_1 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_15, OnFailureCallback_15, true)); return CHIP_NO_ERROR; @@ -23658,8 +22853,6 @@ class Test_TC_LVL_2_2 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); return CHIP_NO_ERROR; @@ -23684,7 +22877,6 @@ class Test_TC_LVL_2_2 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t onOffTransitionTimeArgument; onOffTransitionTimeArgument = 10U; @@ -23707,8 +22899,6 @@ class Test_TC_LVL_2_2 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_3, OnFailureCallback_3, true)); return CHIP_NO_ERROR; @@ -23733,7 +22923,6 @@ class Test_TC_LVL_2_2 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t onOffTransitionTimeArgument; onOffTransitionTimeArgument = 0U; @@ -23756,7 +22945,6 @@ class Test_TC_LVL_2_2 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable onLevelArgument; onLevelArgument.SetNonNull(); onLevelArgument.Value() = 254; @@ -23780,8 +22968,6 @@ class Test_TC_LVL_2_2 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_6, OnFailureCallback_6, true)); return CHIP_NO_ERROR; @@ -23807,7 +22993,6 @@ class Test_TC_LVL_2_2 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable onTransitionTimeArgument; onTransitionTimeArgument.SetNonNull(); onTransitionTimeArgument.Value() = 100U; @@ -23831,8 +23016,6 @@ class Test_TC_LVL_2_2 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_8, OnFailureCallback_8, true)); return CHIP_NO_ERROR; @@ -23858,7 +23041,6 @@ class Test_TC_LVL_2_2 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable offTransitionTimeArgument; offTransitionTimeArgument.SetNonNull(); offTransitionTimeArgument.Value() = 100U; @@ -23882,8 +23064,6 @@ class Test_TC_LVL_2_2 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_10, OnFailureCallback_10, true)); return CHIP_NO_ERROR; @@ -23909,8 +23089,6 @@ class Test_TC_LVL_2_2 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_11, OnFailureCallback_11, true)); return CHIP_NO_ERROR; @@ -23936,7 +23114,6 @@ class Test_TC_LVL_2_2 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable defaultMoveRateArgument; defaultMoveRateArgument.SetNonNull(); defaultMoveRateArgument.Value() = 100; @@ -23960,8 +23137,6 @@ class Test_TC_LVL_2_2 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_13, OnFailureCallback_13, true)); return CHIP_NO_ERROR; @@ -23987,7 +23162,6 @@ class Test_TC_LVL_2_2 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable startUpCurrentLevelArgument; startUpCurrentLevelArgument.SetNonNull(); startUpCurrentLevelArgument.Value() = 254; @@ -24011,8 +23185,6 @@ class Test_TC_LVL_2_2 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_15, OnFailureCallback_15, true)); return CHIP_NO_ERROR; @@ -24245,8 +23417,6 @@ class Test_TC_LVL_3_1 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); return CHIP_NO_ERROR; @@ -24271,8 +23441,6 @@ class Test_TC_LVL_3_1 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -24297,8 +23465,6 @@ class Test_TC_LVL_3_1 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_3, OnFailureCallback_3, true)); return CHIP_NO_ERROR; @@ -24322,7 +23488,6 @@ class Test_TC_LVL_3_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::LevelControl::Commands::MoveToLevel::Type; - ListFreer listFreer; RequestType request; request.level = 64; request.transitionTime = 0U; @@ -24361,8 +23526,6 @@ class Test_TC_LVL_3_1 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_6, OnFailureCallback_6, true)); return CHIP_NO_ERROR; @@ -24386,7 +23549,6 @@ class Test_TC_LVL_3_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::LevelControl::Commands::MoveToLevel::Type; - ListFreer listFreer; RequestType request; request.level = 128; request.transitionTime = 1U; @@ -24425,8 +23587,6 @@ class Test_TC_LVL_3_1 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_9, OnFailureCallback_9, true)); return CHIP_NO_ERROR; @@ -24451,8 +23611,6 @@ class Test_TC_LVL_3_1 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_10, OnFailureCallback_10, true)); return CHIP_NO_ERROR; @@ -24476,7 +23634,6 @@ class Test_TC_LVL_3_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::LevelControl::Commands::MoveToLevel::Type; - ListFreer listFreer; RequestType request; request.level = 254; request.transitionTime = 65535U; @@ -24515,8 +23672,6 @@ class Test_TC_LVL_3_1 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_13, OnFailureCallback_13, true)); return CHIP_NO_ERROR; @@ -24540,7 +23695,6 @@ class Test_TC_LVL_3_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::LevelControl::Commands::MoveToLevel::Type; - ListFreer listFreer; RequestType request; request.level = 254; request.transitionTime = 0U; @@ -24797,8 +23951,6 @@ class Test_TC_LVL_4_1 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); return CHIP_NO_ERROR; @@ -24823,8 +23975,6 @@ class Test_TC_LVL_4_1 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -24848,7 +23998,6 @@ class Test_TC_LVL_4_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::LevelControl::Commands::Move::Type; - ListFreer listFreer; RequestType request; request.moveMode = static_cast(0); request.rate = 200; @@ -24887,8 +24036,6 @@ class Test_TC_LVL_4_1 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_5, OnFailureCallback_5, true)); return CHIP_NO_ERROR; @@ -24913,8 +24060,6 @@ class Test_TC_LVL_4_1 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_6, OnFailureCallback_6, true)); return CHIP_NO_ERROR; @@ -24938,7 +24083,6 @@ class Test_TC_LVL_4_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::LevelControl::Commands::Move::Type; - ListFreer listFreer; RequestType request; request.moveMode = static_cast(1); request.rate = 250; @@ -24977,8 +24121,6 @@ class Test_TC_LVL_4_1 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_9, OnFailureCallback_9, true)); return CHIP_NO_ERROR; @@ -25003,7 +24145,6 @@ class Test_TC_LVL_4_1 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable defaultMoveRateArgument; defaultMoveRateArgument.SetNonNull(); defaultMoveRateArgument.Value() = 20; @@ -25027,8 +24168,6 @@ class Test_TC_LVL_4_1 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_11, OnFailureCallback_11, true)); return CHIP_NO_ERROR; @@ -25053,7 +24192,6 @@ class Test_TC_LVL_4_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::LevelControl::Commands::Move::Type; - ListFreer listFreer; RequestType request; request.moveMode = static_cast(0); request.rate = 255; @@ -25092,8 +24230,6 @@ class Test_TC_LVL_4_1 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_14, OnFailureCallback_14, true)); return CHIP_NO_ERROR; @@ -25117,7 +24253,6 @@ class Test_TC_LVL_4_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::LevelControl::Commands::MoveToLevel::Type; - ListFreer listFreer; RequestType request; request.level = 254; request.transitionTime = 0U; @@ -25314,7 +24449,6 @@ class Test_TC_LVL_5_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::On::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -25342,7 +24476,6 @@ class Test_TC_LVL_5_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::LevelControl::Commands::Step::Type; - ListFreer listFreer; RequestType request; request.stepMode = static_cast(1); request.stepSize = 126; @@ -25382,8 +24515,6 @@ class Test_TC_LVL_5_1 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_4, OnFailureCallback_4, true)); return CHIP_NO_ERROR; @@ -25407,7 +24538,6 @@ class Test_TC_LVL_5_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::LevelControl::Commands::Step::Type; - ListFreer listFreer; RequestType request; request.stepMode = static_cast(1); request.stepSize = 64; @@ -25447,8 +24577,6 @@ class Test_TC_LVL_5_1 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_7, OnFailureCallback_7, true)); return CHIP_NO_ERROR; @@ -25472,7 +24600,6 @@ class Test_TC_LVL_5_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::LevelControl::Commands::Step::Type; - ListFreer listFreer; RequestType request; request.stepMode = static_cast(0); request.stepSize = 64; @@ -25512,8 +24639,6 @@ class Test_TC_LVL_5_1 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_10, OnFailureCallback_10, true)); return CHIP_NO_ERROR; @@ -25537,7 +24662,6 @@ class Test_TC_LVL_5_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::LevelControl::Commands::MoveToLevel::Type; - ListFreer listFreer; RequestType request; request.level = 254; request.transitionTime = 0U; @@ -25575,7 +24699,6 @@ class Test_TC_LVL_5_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::Off::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -25744,7 +24867,6 @@ class Test_TC_LVL_6_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::On::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -25772,7 +24894,6 @@ class Test_TC_LVL_6_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::LevelControl::Commands::MoveToLevel::Type; - ListFreer listFreer; RequestType request; request.level = 0; request.transitionTime = 0U; @@ -25811,8 +24932,6 @@ class Test_TC_LVL_6_1 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_4, OnFailureCallback_4, true)); return CHIP_NO_ERROR; @@ -25836,7 +24955,6 @@ class Test_TC_LVL_6_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::LevelControl::Commands::Move::Type; - ListFreer listFreer; RequestType request; request.moveMode = static_cast(0); request.rate = 1; @@ -25874,7 +24992,6 @@ class Test_TC_LVL_6_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::LevelControl::Commands::Stop::Type; - ListFreer listFreer; RequestType request; request.optionMask = 0; request.optionOverride = 0; @@ -25905,8 +25022,6 @@ class Test_TC_LVL_6_1 : public TestCommand chip::Controller::LevelControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_8, OnFailureCallback_8, true)); return CHIP_NO_ERROR; @@ -25930,7 +25045,6 @@ class Test_TC_LVL_6_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::LevelControl::Commands::MoveToLevel::Type; - ListFreer listFreer; RequestType request; request.level = 254; request.transitionTime = 0U; @@ -25968,7 +25082,6 @@ class Test_TC_LVL_6_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::Off::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -26142,8 +25255,6 @@ class Test_TC_MC_1_1 : public TestCommand chip::Controller::MediaInputClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); return CHIP_NO_ERROR; @@ -26168,8 +25279,6 @@ class Test_TC_MC_1_1 : public TestCommand chip::Controller::MediaInputClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -26193,7 +25302,6 @@ class Test_TC_MC_1_1 : public TestCommand chip::Controller::MediaInputClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t clusterRevisionArgument; clusterRevisionArgument = 1U; @@ -26217,8 +25325,6 @@ class Test_TC_MC_1_1 : public TestCommand chip::Controller::MediaInputClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_4, OnFailureCallback_4, true)); return CHIP_NO_ERROR; @@ -26243,8 +25349,6 @@ class Test_TC_MC_1_1 : public TestCommand chip::Controller::MediaInputClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_5, OnFailureCallback_5, true)); return CHIP_NO_ERROR; @@ -26348,7 +25452,6 @@ class Test_TC_MC_2_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::LowPower::Commands::Sleep::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -27317,8 +26420,6 @@ class Test_TC_MC_5_1 : public TestCommand chip::Controller::ChannelClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); return CHIP_NO_ERROR; @@ -27636,8 +26737,6 @@ class Test_TC_MC_6_1 : public TestCommand chip::Controller::MediaPlaybackClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_3, OnFailureCallback_3, true)); return CHIP_NO_ERROR; @@ -27805,8 +26904,6 @@ class Test_TC_MC_6_2 : public TestCommand chip::Controller::MediaPlaybackClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_3, OnFailureCallback_3, true)); return CHIP_NO_ERROR; @@ -28117,8 +27214,6 @@ class Test_TC_MC_6_4 : public TestCommand chip::Controller::MediaPlaybackClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -28149,8 +27244,6 @@ class Test_TC_MC_6_4 : public TestCommand chip::Controller::MediaPlaybackClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_4, OnFailureCallback_4, true)); return CHIP_NO_ERROR; @@ -28187,8 +27280,6 @@ class Test_TC_MC_6_4 : public TestCommand chip::Controller::MediaPlaybackClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_7, OnFailureCallback_7, true)); return CHIP_NO_ERROR; @@ -28487,8 +27578,6 @@ class Test_TC_MC_8_1 : public TestCommand chip::Controller::TargetNavigatorClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); return CHIP_NO_ERROR; @@ -28512,8 +27601,6 @@ class Test_TC_MC_8_1 : public TestCommand chip::Controller::TargetNavigatorClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -28710,8 +27797,6 @@ class Test_TC_MC_9_1 : public TestCommand chip::Controller::ApplicationBasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -28735,8 +27820,6 @@ class Test_TC_MC_9_1 : public TestCommand chip::Controller::ApplicationBasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_3, OnFailureCallback_3, true)); return CHIP_NO_ERROR; @@ -28761,8 +27844,6 @@ class Test_TC_MC_9_1 : public TestCommand chip::Controller::ApplicationBasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_4, OnFailureCallback_4, true)); return CHIP_NO_ERROR; @@ -28787,8 +27868,6 @@ class Test_TC_MC_9_1 : public TestCommand chip::Controller::ApplicationBasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_5, OnFailureCallback_5, true)); return CHIP_NO_ERROR; @@ -28812,8 +27891,6 @@ class Test_TC_MC_9_1 : public TestCommand chip::Controller::ApplicationBasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_6, OnFailureCallback_6, true)); return CHIP_NO_ERROR; @@ -28838,8 +27915,6 @@ class Test_TC_MC_9_1 : public TestCommand chip::Controller::ApplicationBasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_7, OnFailureCallback_7, true)); return CHIP_NO_ERROR; @@ -28981,8 +28056,6 @@ class Test_TC_OCC_1_1 : public TestCommand chip::Controller::OccupancySensingClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); return CHIP_NO_ERROR; @@ -29006,7 +28079,6 @@ class Test_TC_OCC_1_1 : public TestCommand chip::Controller::OccupancySensingClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t clusterRevisionArgument; clusterRevisionArgument = 3U; @@ -29030,8 +28102,6 @@ class Test_TC_OCC_1_1 : public TestCommand chip::Controller::OccupancySensingClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_3, OnFailureCallback_3, true)); return CHIP_NO_ERROR; @@ -29253,8 +28323,6 @@ class Test_TC_OCC_2_1 : public TestCommand chip::Controller::OccupancySensingClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); return CHIP_NO_ERROR; @@ -29280,7 +28348,6 @@ class Test_TC_OCC_2_1 : public TestCommand chip::Controller::OccupancySensingClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t occupancyArgument; occupancyArgument = 0; @@ -29304,8 +28371,6 @@ class Test_TC_OCC_2_1 : public TestCommand chip::Controller::OccupancySensingClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_3, OnFailureCallback_3, true)); return CHIP_NO_ERROR; @@ -29330,8 +28395,6 @@ class Test_TC_OCC_2_1 : public TestCommand chip::Controller::OccupancySensingClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_4, OnFailureCallback_4, true)); @@ -29358,7 +28421,6 @@ class Test_TC_OCC_2_1 : public TestCommand chip::Controller::OccupancySensingClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t occupancySensorTypeArgument; occupancySensorTypeArgument = 0; @@ -29383,8 +28445,6 @@ class Test_TC_OCC_2_1 : public TestCommand chip::Controller::OccupancySensingClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_6, OnFailureCallback_6, true)); @@ -29410,8 +28470,6 @@ class Test_TC_OCC_2_1 : public TestCommand chip::Controller::OccupancySensingClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_7, OnFailureCallback_7, true)); @@ -29438,7 +28496,6 @@ class Test_TC_OCC_2_1 : public TestCommand chip::Controller::OccupancySensingClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t occupancySensorTypeBitmapArgument; occupancySensorTypeBitmapArgument = 1; @@ -29463,8 +28520,6 @@ class Test_TC_OCC_2_1 : public TestCommand chip::Controller::OccupancySensingClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_9, OnFailureCallback_9, true)); @@ -29605,8 +28660,6 @@ class Test_TC_OCC_2_2 : public TestCommand chip::Controller::OccupancySensingClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); return CHIP_NO_ERROR; @@ -29630,8 +28683,6 @@ class Test_TC_OCC_2_2 : public TestCommand chip::Controller::OccupancySensingClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -29853,8 +28904,6 @@ class Test_TC_OO_1_1 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); return CHIP_NO_ERROR; @@ -29879,8 +28928,6 @@ class Test_TC_OO_1_1 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -29904,7 +28951,6 @@ class Test_TC_OO_1_1 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t clusterRevisionArgument; clusterRevisionArgument = 3U; @@ -29928,8 +28974,6 @@ class Test_TC_OO_1_1 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_4, OnFailureCallback_4, true)); return CHIP_NO_ERROR; @@ -29954,8 +28998,6 @@ class Test_TC_OO_1_1 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_5, OnFailureCallback_5, true)); return CHIP_NO_ERROR; @@ -29979,8 +29021,6 @@ class Test_TC_OO_1_1 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_6, OnFailureCallback_6, true)); return CHIP_NO_ERROR; @@ -30005,8 +29045,6 @@ class Test_TC_OO_1_1 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_7, OnFailureCallback_7, true)); return CHIP_NO_ERROR; @@ -30030,7 +29068,6 @@ class Test_TC_OO_1_1 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint32_t featureMapArgument; featureMapArgument = 0UL; @@ -30054,8 +29091,6 @@ class Test_TC_OO_1_1 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_9, OnFailureCallback_9, true)); return CHIP_NO_ERROR; @@ -30352,8 +29387,6 @@ class Test_TC_OO_2_1 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); return CHIP_NO_ERROR; @@ -30378,7 +29411,6 @@ class Test_TC_OO_2_1 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; bool onOffArgument; onOffArgument = 0; @@ -30402,8 +29434,6 @@ class Test_TC_OO_2_1 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_3, OnFailureCallback_3, true)); return CHIP_NO_ERROR; @@ -30428,8 +29458,6 @@ class Test_TC_OO_2_1 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_4, OnFailureCallback_4, true)); return CHIP_NO_ERROR; @@ -30454,8 +29482,6 @@ class Test_TC_OO_2_1 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_5, OnFailureCallback_5, true)); return CHIP_NO_ERROR; @@ -30480,8 +29506,6 @@ class Test_TC_OO_2_1 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_6, OnFailureCallback_6, true)); return CHIP_NO_ERROR; @@ -30506,8 +29530,6 @@ class Test_TC_OO_2_1 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_7, OnFailureCallback_7, true)); return CHIP_NO_ERROR; @@ -30532,7 +29554,6 @@ class Test_TC_OO_2_1 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; bool globalSceneControlArgument; globalSceneControlArgument = 0; @@ -30556,7 +29577,6 @@ class Test_TC_OO_2_1 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t onTimeArgument; onTimeArgument = 0U; @@ -30579,7 +29599,6 @@ class Test_TC_OO_2_1 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t offWaitTimeArgument; offWaitTimeArgument = 0U; @@ -30602,7 +29621,6 @@ class Test_TC_OO_2_1 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t startUpOnOffArgument; startUpOnOffArgument = 0; @@ -30625,8 +29643,6 @@ class Test_TC_OO_2_1 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_12, OnFailureCallback_12, true)); return CHIP_NO_ERROR; @@ -30651,8 +29667,6 @@ class Test_TC_OO_2_1 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_13, OnFailureCallback_13, true)); return CHIP_NO_ERROR; @@ -30677,8 +29691,6 @@ class Test_TC_OO_2_1 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_14, OnFailureCallback_14, true)); return CHIP_NO_ERROR; @@ -30703,8 +29715,6 @@ class Test_TC_OO_2_1 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_15, OnFailureCallback_15, true)); return CHIP_NO_ERROR; @@ -30931,7 +29941,6 @@ class Test_TC_OO_2_2 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::Off::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -30960,8 +29969,6 @@ class Test_TC_OO_2_2 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -30985,7 +29992,6 @@ class Test_TC_OO_2_2 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::On::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -31014,8 +30020,6 @@ class Test_TC_OO_2_2 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_4, OnFailureCallback_4, true)); return CHIP_NO_ERROR; @@ -31039,7 +30043,6 @@ class Test_TC_OO_2_2 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::Off::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -31068,8 +30071,6 @@ class Test_TC_OO_2_2 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_6, OnFailureCallback_6, true)); return CHIP_NO_ERROR; @@ -31093,7 +30094,6 @@ class Test_TC_OO_2_2 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::Toggle::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -31122,8 +30122,6 @@ class Test_TC_OO_2_2 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_8, OnFailureCallback_8, true)); return CHIP_NO_ERROR; @@ -31147,7 +30145,6 @@ class Test_TC_OO_2_2 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::Toggle::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -31176,8 +30173,6 @@ class Test_TC_OO_2_2 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_10, OnFailureCallback_10, true)); return CHIP_NO_ERROR; @@ -31201,7 +30196,6 @@ class Test_TC_OO_2_2 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::On::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -31230,8 +30224,6 @@ class Test_TC_OO_2_2 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_12, OnFailureCallback_12, true)); return CHIP_NO_ERROR; @@ -31255,7 +30247,6 @@ class Test_TC_OO_2_2 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::Off::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -31284,8 +30275,6 @@ class Test_TC_OO_2_2 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_14, OnFailureCallback_14, true)); return CHIP_NO_ERROR; @@ -32115,7 +31104,6 @@ class Test_TC_OO_2_3 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::On::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -32150,8 +31138,6 @@ class Test_TC_OO_2_3 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_3, OnFailureCallback_3, true)); return CHIP_NO_ERROR; @@ -32176,8 +31162,6 @@ class Test_TC_OO_2_3 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_4, OnFailureCallback_4, true)); return CHIP_NO_ERROR; @@ -32201,7 +31185,6 @@ class Test_TC_OO_2_3 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::On::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -32236,8 +31219,6 @@ class Test_TC_OO_2_3 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_7, OnFailureCallback_7, true)); return CHIP_NO_ERROR; @@ -32262,8 +31243,6 @@ class Test_TC_OO_2_3 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_8, OnFailureCallback_8, true)); return CHIP_NO_ERROR; @@ -32287,7 +31266,6 @@ class Test_TC_OO_2_3 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::On::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -32322,8 +31300,6 @@ class Test_TC_OO_2_3 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_11, OnFailureCallback_11, true)); return CHIP_NO_ERROR; @@ -32348,8 +31324,6 @@ class Test_TC_OO_2_3 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_12, OnFailureCallback_12, true)); return CHIP_NO_ERROR; @@ -32374,8 +31348,6 @@ class Test_TC_OO_2_3 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_13, OnFailureCallback_13, true)); return CHIP_NO_ERROR; @@ -32400,8 +31372,6 @@ class Test_TC_OO_2_3 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_14, OnFailureCallback_14, true)); return CHIP_NO_ERROR; @@ -32425,7 +31395,6 @@ class Test_TC_OO_2_3 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::On::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -32454,8 +31423,6 @@ class Test_TC_OO_2_3 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_16, OnFailureCallback_16, true)); return CHIP_NO_ERROR; @@ -32480,8 +31447,6 @@ class Test_TC_OO_2_3 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_17, OnFailureCallback_17, true)); return CHIP_NO_ERROR; @@ -32506,8 +31471,6 @@ class Test_TC_OO_2_3 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_18, OnFailureCallback_18, true)); return CHIP_NO_ERROR; @@ -32531,7 +31494,6 @@ class Test_TC_OO_2_3 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::Off::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -32560,8 +31522,6 @@ class Test_TC_OO_2_3 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_20, OnFailureCallback_20, true)); return CHIP_NO_ERROR; @@ -32586,8 +31546,6 @@ class Test_TC_OO_2_3 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_21, OnFailureCallback_21, true)); return CHIP_NO_ERROR; @@ -32612,8 +31570,6 @@ class Test_TC_OO_2_3 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_22, OnFailureCallback_22, true)); return CHIP_NO_ERROR; @@ -32638,8 +31594,6 @@ class Test_TC_OO_2_3 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_23, OnFailureCallback_23, true)); return CHIP_NO_ERROR; @@ -32664,8 +31618,6 @@ class Test_TC_OO_2_3 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_24, OnFailureCallback_24, true)); return CHIP_NO_ERROR; @@ -32689,7 +31641,6 @@ class Test_TC_OO_2_3 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::On::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -32718,8 +31669,6 @@ class Test_TC_OO_2_3 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_26, OnFailureCallback_26, true)); return CHIP_NO_ERROR; @@ -32744,8 +31693,6 @@ class Test_TC_OO_2_3 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_27, OnFailureCallback_27, true)); return CHIP_NO_ERROR; @@ -32769,7 +31716,6 @@ class Test_TC_OO_2_3 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::Off::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -32798,8 +31744,6 @@ class Test_TC_OO_2_3 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_29, OnFailureCallback_29, true)); return CHIP_NO_ERROR; @@ -32824,8 +31768,6 @@ class Test_TC_OO_2_3 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_30, OnFailureCallback_30, true)); return CHIP_NO_ERROR; @@ -32850,8 +31792,6 @@ class Test_TC_OO_2_3 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_31, OnFailureCallback_31, true)); return CHIP_NO_ERROR; @@ -32876,8 +31816,6 @@ class Test_TC_OO_2_3 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_32, OnFailureCallback_32, true)); return CHIP_NO_ERROR; @@ -32901,7 +31839,6 @@ class Test_TC_OO_2_3 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::On::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -32930,8 +31867,6 @@ class Test_TC_OO_2_3 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_34, OnFailureCallback_34, true)); return CHIP_NO_ERROR; @@ -32956,8 +31891,6 @@ class Test_TC_OO_2_3 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_35, OnFailureCallback_35, true)); return CHIP_NO_ERROR; @@ -32982,8 +31915,6 @@ class Test_TC_OO_2_3 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_36, OnFailureCallback_36, true)); return CHIP_NO_ERROR; @@ -33007,7 +31938,6 @@ class Test_TC_OO_2_3 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::Off::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -33036,8 +31966,6 @@ class Test_TC_OO_2_3 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_38, OnFailureCallback_38, true)); return CHIP_NO_ERROR; @@ -33062,8 +31990,6 @@ class Test_TC_OO_2_3 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_39, OnFailureCallback_39, true)); return CHIP_NO_ERROR; @@ -33088,8 +32014,6 @@ class Test_TC_OO_2_3 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_40, OnFailureCallback_40, true)); return CHIP_NO_ERROR; @@ -33114,8 +32038,6 @@ class Test_TC_OO_2_3 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_41, OnFailureCallback_41, true)); return CHIP_NO_ERROR; @@ -33140,8 +32062,6 @@ class Test_TC_OO_2_3 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_42, OnFailureCallback_42, true)); return CHIP_NO_ERROR; @@ -33166,8 +32086,6 @@ class Test_TC_OO_2_3 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_43, OnFailureCallback_43, true)); return CHIP_NO_ERROR; @@ -33192,8 +32110,6 @@ class Test_TC_OO_2_3 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_44, OnFailureCallback_44, true)); return CHIP_NO_ERROR; @@ -33218,8 +32134,6 @@ class Test_TC_OO_2_3 : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_45, OnFailureCallback_45, true)); return CHIP_NO_ERROR; @@ -33243,7 +32157,6 @@ class Test_TC_OO_2_3 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::Off::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -33417,8 +32330,6 @@ class Test_TC_PS_1_1 : public TestCommand chip::Controller::PowerSourceClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); return CHIP_NO_ERROR; @@ -33443,8 +32354,6 @@ class Test_TC_PS_1_1 : public TestCommand chip::Controller::PowerSourceClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -33468,7 +32377,6 @@ class Test_TC_PS_1_1 : public TestCommand chip::Controller::PowerSourceClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t clusterRevisionArgument; clusterRevisionArgument = 1U; @@ -33492,8 +32400,6 @@ class Test_TC_PS_1_1 : public TestCommand chip::Controller::PowerSourceClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_4, OnFailureCallback_4, true)); return CHIP_NO_ERROR; @@ -33518,8 +32424,6 @@ class Test_TC_PS_1_1 : public TestCommand chip::Controller::PowerSourceClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_5, OnFailureCallback_5, true)); return CHIP_NO_ERROR; @@ -33660,8 +32564,6 @@ class Test_TC_PRS_1_1 : public TestCommand chip::Controller::PressureMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); return CHIP_NO_ERROR; @@ -33685,7 +32587,6 @@ class Test_TC_PRS_1_1 : public TestCommand chip::Controller::PressureMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t clusterRevisionArgument; clusterRevisionArgument = 3U; @@ -33710,8 +32611,6 @@ class Test_TC_PRS_1_1 : public TestCommand chip::Controller::PressureMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_3, OnFailureCallback_3, true)); return CHIP_NO_ERROR; @@ -33929,8 +32828,6 @@ class Test_TC_PRS_2_1 : public TestCommand chip::Controller::PressureMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); return CHIP_NO_ERROR; @@ -33954,7 +32851,6 @@ class Test_TC_PRS_2_1 : public TestCommand chip::Controller::PressureMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable measuredValueArgument; measuredValueArgument.SetNonNull(); measuredValueArgument.Value() = 0; @@ -33979,8 +32875,6 @@ class Test_TC_PRS_2_1 : public TestCommand chip::Controller::PressureMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_3, OnFailureCallback_3, true)); return CHIP_NO_ERROR; @@ -34006,8 +32900,6 @@ class Test_TC_PRS_2_1 : public TestCommand chip::Controller::PressureMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_4, OnFailureCallback_4, true)); @@ -34032,7 +32924,6 @@ class Test_TC_PRS_2_1 : public TestCommand chip::Controller::PressureMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable minMeasuredValueArgument; minMeasuredValueArgument.SetNonNull(); minMeasuredValueArgument.Value() = 0; @@ -34058,8 +32949,6 @@ class Test_TC_PRS_2_1 : public TestCommand chip::Controller::PressureMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_6, OnFailureCallback_6, true)); @@ -34086,8 +32975,6 @@ class Test_TC_PRS_2_1 : public TestCommand chip::Controller::PressureMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_7, OnFailureCallback_7, true)); @@ -34112,7 +32999,6 @@ class Test_TC_PRS_2_1 : public TestCommand chip::Controller::PressureMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable maxMeasuredValueArgument; maxMeasuredValueArgument.SetNonNull(); maxMeasuredValueArgument.Value() = 0; @@ -34138,8 +33024,6 @@ class Test_TC_PRS_2_1 : public TestCommand chip::Controller::PressureMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_9, OnFailureCallback_9, true)); @@ -34297,8 +33181,6 @@ class Test_TC_PCC_1_1 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); @@ -34323,7 +33205,6 @@ class Test_TC_PCC_1_1 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t clusterRevisionArgument; clusterRevisionArgument = 3U; @@ -34348,8 +33229,6 @@ class Test_TC_PCC_1_1 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_3, OnFailureCallback_3, true)); @@ -34374,8 +33253,6 @@ class Test_TC_PCC_1_1 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_4, OnFailureCallback_4, true)); @@ -35160,8 +34037,6 @@ class Test_TC_PCC_2_1 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); @@ -35186,8 +34061,6 @@ class Test_TC_PCC_2_1 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); @@ -35212,8 +34085,6 @@ class Test_TC_PCC_2_1 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_3, OnFailureCallback_3, true)); return CHIP_NO_ERROR; @@ -35237,8 +34108,6 @@ class Test_TC_PCC_2_1 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_4, OnFailureCallback_4, true)); @@ -35263,8 +34132,6 @@ class Test_TC_PCC_2_1 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_5, OnFailureCallback_5, true)); @@ -35289,8 +34156,6 @@ class Test_TC_PCC_2_1 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_6, OnFailureCallback_6, true)); @@ -35315,8 +34180,6 @@ class Test_TC_PCC_2_1 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_7, OnFailureCallback_7, true)); @@ -35341,8 +34204,6 @@ class Test_TC_PCC_2_1 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_8, OnFailureCallback_8, true)); @@ -35367,8 +34228,6 @@ class Test_TC_PCC_2_1 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_9, OnFailureCallback_9, true)); return CHIP_NO_ERROR; @@ -35392,8 +34251,6 @@ class Test_TC_PCC_2_1 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_10, OnFailureCallback_10, true)); @@ -35418,8 +34275,6 @@ class Test_TC_PCC_2_1 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_11, OnFailureCallback_11, true)); @@ -35444,8 +34299,6 @@ class Test_TC_PCC_2_1 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_12, OnFailureCallback_12, true)); @@ -35470,8 +34323,6 @@ class Test_TC_PCC_2_1 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_13, OnFailureCallback_13, true)); @@ -35496,8 +34347,6 @@ class Test_TC_PCC_2_1 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_14, OnFailureCallback_14, true)); @@ -35522,8 +34371,6 @@ class Test_TC_PCC_2_1 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_15, OnFailureCallback_15, true)); @@ -35548,8 +34395,6 @@ class Test_TC_PCC_2_1 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_16, OnFailureCallback_16, true)); @@ -35574,8 +34419,6 @@ class Test_TC_PCC_2_1 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_17, OnFailureCallback_17, true)); @@ -35600,8 +34443,6 @@ class Test_TC_PCC_2_1 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_18, OnFailureCallback_18, true)); @@ -35626,8 +34467,6 @@ class Test_TC_PCC_2_1 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_19, OnFailureCallback_19, true)); @@ -35652,8 +34491,6 @@ class Test_TC_PCC_2_1 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_20, OnFailureCallback_20, true)); @@ -35678,8 +34515,6 @@ class Test_TC_PCC_2_1 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_21, OnFailureCallback_21, true)); @@ -35705,8 +34540,6 @@ class Test_TC_PCC_2_1 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_22, OnFailureCallback_22, true)); @@ -35732,8 +34565,6 @@ class Test_TC_PCC_2_1 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_23, OnFailureCallback_23, true)); @@ -35759,8 +34590,6 @@ class Test_TC_PCC_2_1 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_24, OnFailureCallback_24, true)); @@ -35785,8 +34614,6 @@ class Test_TC_PCC_2_1 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_25, OnFailureCallback_25, true)); return CHIP_NO_ERROR; @@ -35810,8 +34637,6 @@ class Test_TC_PCC_2_1 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_26, OnFailureCallback_26, true)); @@ -35838,8 +34663,6 @@ class Test_TC_PCC_2_1 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_27, OnFailureCallback_27, true)); @@ -35864,8 +34687,6 @@ class Test_TC_PCC_2_1 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_28, OnFailureCallback_28, true)); return CHIP_NO_ERROR; @@ -35889,8 +34710,6 @@ class Test_TC_PCC_2_1 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_29, OnFailureCallback_29, true)); @@ -35917,8 +34736,6 @@ class Test_TC_PCC_2_1 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_30, OnFailureCallback_30, true)); @@ -35943,7 +34760,6 @@ class Test_TC_PCC_2_1 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable lifetimeEnergyConsumedArgument; lifetimeEnergyConsumedArgument.SetNonNull(); lifetimeEnergyConsumedArgument.Value() = 0UL; @@ -35968,8 +34784,6 @@ class Test_TC_PCC_2_1 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_32, OnFailureCallback_32, true)); @@ -35994,8 +34808,6 @@ class Test_TC_PCC_2_1 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_33, OnFailureCallback_33, true)); @@ -36020,8 +34832,6 @@ class Test_TC_PCC_2_1 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_34, OnFailureCallback_34, true)); @@ -36046,8 +34856,6 @@ class Test_TC_PCC_2_1 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_35, OnFailureCallback_35, true)); @@ -36072,8 +34880,6 @@ class Test_TC_PCC_2_1 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_36, OnFailureCallback_36, true)); @@ -36098,8 +34904,6 @@ class Test_TC_PCC_2_1 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_37, OnFailureCallback_37, true)); @@ -36124,8 +34928,6 @@ class Test_TC_PCC_2_1 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_38, OnFailureCallback_38, true)); @@ -36150,8 +34952,6 @@ class Test_TC_PCC_2_1 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_39, OnFailureCallback_39, true)); @@ -36176,8 +34976,6 @@ class Test_TC_PCC_2_1 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_40, OnFailureCallback_40, true)); @@ -36203,8 +35001,6 @@ class Test_TC_PCC_2_1 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_41, OnFailureCallback_41, true)); @@ -36230,8 +35026,6 @@ class Test_TC_PCC_2_1 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_42, OnFailureCallback_42, true)); @@ -36257,8 +35051,6 @@ class Test_TC_PCC_2_1 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_43, OnFailureCallback_43, true)); @@ -36283,8 +35075,6 @@ class Test_TC_PCC_2_1 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_44, OnFailureCallback_44, true)); return CHIP_NO_ERROR; @@ -36308,8 +35098,6 @@ class Test_TC_PCC_2_1 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_45, OnFailureCallback_45, true)); @@ -36336,8 +35124,6 @@ class Test_TC_PCC_2_1 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_46, OnFailureCallback_46, true)); @@ -36362,8 +35148,6 @@ class Test_TC_PCC_2_1 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_47, OnFailureCallback_47, true)); return CHIP_NO_ERROR; @@ -36387,8 +35171,6 @@ class Test_TC_PCC_2_1 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_48, OnFailureCallback_48, true)); @@ -36415,8 +35197,6 @@ class Test_TC_PCC_2_1 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_49, OnFailureCallback_49, true)); @@ -36566,7 +35346,6 @@ class Test_TC_PCC_2_2 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t operationModeArgument; operationModeArgument = 1; @@ -36590,7 +35369,6 @@ class Test_TC_PCC_2_2 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t operationModeArgument; operationModeArgument = 2; @@ -36614,7 +35392,6 @@ class Test_TC_PCC_2_2 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t operationModeArgument; operationModeArgument = 3; @@ -36865,7 +35642,6 @@ class Test_TC_PCC_2_3 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t operationModeArgument; operationModeArgument = 0; @@ -36889,8 +35665,6 @@ class Test_TC_PCC_2_3 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); @@ -36916,7 +35690,6 @@ class Test_TC_PCC_2_3 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t controlModeArgument; controlModeArgument = 0; @@ -36940,8 +35713,6 @@ class Test_TC_PCC_2_3 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_4, OnFailureCallback_4, true)); @@ -36967,7 +35738,6 @@ class Test_TC_PCC_2_3 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t controlModeArgument; controlModeArgument = 1; @@ -36991,7 +35761,6 @@ class Test_TC_PCC_2_3 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t controlModeArgument; controlModeArgument = 2; @@ -37015,7 +35784,6 @@ class Test_TC_PCC_2_3 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t controlModeArgument; controlModeArgument = 3; @@ -37039,7 +35807,6 @@ class Test_TC_PCC_2_3 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t controlModeArgument; controlModeArgument = 5; @@ -37063,7 +35830,6 @@ class Test_TC_PCC_2_3 : public TestCommand chip::Controller::PumpConfigurationAndControlClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t controlModeArgument; controlModeArgument = 7; @@ -37204,8 +35970,6 @@ class Test_TC_RH_1_1 : public TestCommand chip::Controller::RelativeHumidityMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); @@ -37230,7 +35994,6 @@ class Test_TC_RH_1_1 : public TestCommand chip::Controller::RelativeHumidityMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t clusterRevisionArgument; clusterRevisionArgument = 1U; @@ -37255,8 +36018,6 @@ class Test_TC_RH_1_1 : public TestCommand chip::Controller::RelativeHumidityMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_3, OnFailureCallback_3, true)); @@ -37414,8 +36175,6 @@ class Test_TC_RH_2_1 : public TestCommand chip::Controller::RelativeHumidityMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); @@ -37440,8 +36199,6 @@ class Test_TC_RH_2_1 : public TestCommand chip::Controller::RelativeHumidityMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); @@ -37468,8 +36225,6 @@ class Test_TC_RH_2_1 : public TestCommand chip::Controller::RelativeHumidityMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_3, OnFailureCallback_3, true)); @@ -37495,8 +36250,6 @@ class Test_TC_RH_2_1 : public TestCommand chip::Controller::RelativeHumidityMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_4, OnFailureCallback_4, true)); @@ -37638,8 +36391,6 @@ class Test_TC_RH_2_2 : public TestCommand chip::Controller::RelativeHumidityMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); @@ -37664,8 +36415,6 @@ class Test_TC_RH_2_2 : public TestCommand chip::Controller::RelativeHumidityMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); @@ -37852,8 +36601,6 @@ class Test_TC_SWTCH_2_1 : public TestCommand chip::Controller::SwitchClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); return CHIP_NO_ERROR; @@ -37878,8 +36625,6 @@ class Test_TC_SWTCH_2_1 : public TestCommand chip::Controller::SwitchClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -37904,8 +36649,6 @@ class Test_TC_SWTCH_2_1 : public TestCommand chip::Controller::SwitchClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_3, OnFailureCallback_3, true)); return CHIP_NO_ERROR; @@ -37930,8 +36673,6 @@ class Test_TC_SWTCH_2_1 : public TestCommand chip::Controller::SwitchClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_4, OnFailureCallback_4, true)); return CHIP_NO_ERROR; @@ -37956,8 +36697,6 @@ class Test_TC_SWTCH_2_1 : public TestCommand chip::Controller::SwitchClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_5, OnFailureCallback_5, true)); return CHIP_NO_ERROR; @@ -37982,8 +36721,6 @@ class Test_TC_SWTCH_2_1 : public TestCommand chip::Controller::SwitchClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_6, OnFailureCallback_6, true)); return CHIP_NO_ERROR; @@ -38266,8 +37003,6 @@ class Test_TC_SWTCH_2_2 : public TestCommand chip::Controller::SwitchClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_3, OnFailureCallback_3, true)); return CHIP_NO_ERROR; @@ -38310,8 +37045,6 @@ class Test_TC_SWTCH_2_2 : public TestCommand chip::Controller::SwitchClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_7, OnFailureCallback_7, true)); return CHIP_NO_ERROR; @@ -38633,8 +37366,6 @@ class Test_TC_TM_1_1 : public TestCommand chip::Controller::TemperatureMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); @@ -38659,7 +37390,6 @@ class Test_TC_TM_1_1 : public TestCommand chip::Controller::TemperatureMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t clusterRevisionArgument; clusterRevisionArgument = 4U; @@ -38684,8 +37414,6 @@ class Test_TC_TM_1_1 : public TestCommand chip::Controller::TemperatureMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_3, OnFailureCallback_3, true)); @@ -38815,8 +37543,6 @@ class Test_TC_TM_2_1 : public TestCommand chip::Controller::TemperatureMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); @@ -38841,8 +37567,6 @@ class Test_TC_TM_2_1 : public TestCommand chip::Controller::TemperatureMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -38983,8 +37707,6 @@ class Test_TC_TM_2_2 : public TestCommand chip::Controller::TemperatureMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); @@ -39009,8 +37731,6 @@ class Test_TC_TM_2_2 : public TestCommand chip::Controller::TemperatureMeasurementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); @@ -39167,8 +37887,6 @@ class Test_TC_TSTAT_1_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); return CHIP_NO_ERROR; @@ -39192,7 +37910,6 @@ class Test_TC_TSTAT_1_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t clusterRevisionArgument; clusterRevisionArgument = 5U; @@ -39216,8 +37933,6 @@ class Test_TC_TSTAT_1_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_3, OnFailureCallback_3, true)); return CHIP_NO_ERROR; @@ -39241,8 +37956,6 @@ class Test_TC_TSTAT_1_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_4, OnFailureCallback_4, true)); return CHIP_NO_ERROR; @@ -40182,8 +38895,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); return CHIP_NO_ERROR; @@ -40207,8 +38918,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -40233,8 +38942,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_3, OnFailureCallback_3, true)); return CHIP_NO_ERROR; @@ -40260,7 +38967,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t absMinHeatSetpointLimitArgument; absMinHeatSetpointLimitArgument = 700; @@ -40284,8 +38990,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_5, OnFailureCallback_5, true)); return CHIP_NO_ERROR; @@ -40310,8 +39014,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_6, OnFailureCallback_6, true)); return CHIP_NO_ERROR; @@ -40336,8 +39038,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_7, OnFailureCallback_7, true)); return CHIP_NO_ERROR; @@ -40363,7 +39063,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t absMaxHeatSetpointLimitArgument; absMaxHeatSetpointLimitArgument = 3000; @@ -40387,8 +39086,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_9, OnFailureCallback_9, true)); return CHIP_NO_ERROR; @@ -40413,8 +39110,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_10, OnFailureCallback_10, true)); return CHIP_NO_ERROR; @@ -40439,8 +39134,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_11, OnFailureCallback_11, true)); return CHIP_NO_ERROR; @@ -40466,7 +39159,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t absMinCoolSetpointLimitArgument; absMinCoolSetpointLimitArgument = 1600; @@ -40490,8 +39182,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_13, OnFailureCallback_13, true)); return CHIP_NO_ERROR; @@ -40516,8 +39206,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_14, OnFailureCallback_14, true)); return CHIP_NO_ERROR; @@ -40542,8 +39230,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_15, OnFailureCallback_15, true)); return CHIP_NO_ERROR; @@ -40569,7 +39255,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t absMaxCoolSetpointLimitArgument; absMaxCoolSetpointLimitArgument = 3200; @@ -40593,8 +39278,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_17, OnFailureCallback_17, true)); return CHIP_NO_ERROR; @@ -40619,8 +39302,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_18, OnFailureCallback_18, true)); return CHIP_NO_ERROR; @@ -40645,8 +39326,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_19, OnFailureCallback_19, true)); return CHIP_NO_ERROR; @@ -40672,7 +39351,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t occupiedCoolingSetpointArgument; occupiedCoolingSetpointArgument = 2600; @@ -40695,8 +39373,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_21, OnFailureCallback_21, true)); return CHIP_NO_ERROR; @@ -40721,8 +39397,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_22, OnFailureCallback_22, true)); return CHIP_NO_ERROR; @@ -40747,8 +39421,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_23, OnFailureCallback_23, true)); return CHIP_NO_ERROR; @@ -40774,7 +39446,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t occupiedHeatingSetpointArgument; occupiedHeatingSetpointArgument = 2000; @@ -40797,8 +39468,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_25, OnFailureCallback_25, true)); return CHIP_NO_ERROR; @@ -40823,8 +39492,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_26, OnFailureCallback_26, true)); return CHIP_NO_ERROR; @@ -40849,8 +39516,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_27, OnFailureCallback_27, true)); return CHIP_NO_ERROR; @@ -40876,7 +39541,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t minHeatSetpointLimitArgument; minHeatSetpointLimitArgument = 700; @@ -40899,8 +39563,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_29, OnFailureCallback_29, true)); return CHIP_NO_ERROR; @@ -40925,8 +39587,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_30, OnFailureCallback_30, true)); return CHIP_NO_ERROR; @@ -40951,8 +39611,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_31, OnFailureCallback_31, true)); return CHIP_NO_ERROR; @@ -40978,7 +39636,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t maxHeatSetpointLimitArgument; maxHeatSetpointLimitArgument = 3000; @@ -41001,8 +39658,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_33, OnFailureCallback_33, true)); return CHIP_NO_ERROR; @@ -41027,8 +39682,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_34, OnFailureCallback_34, true)); return CHIP_NO_ERROR; @@ -41053,8 +39706,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_35, OnFailureCallback_35, true)); return CHIP_NO_ERROR; @@ -41080,7 +39731,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t minCoolSetpointLimitArgument; minCoolSetpointLimitArgument = 1600; @@ -41103,8 +39753,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_37, OnFailureCallback_37, true)); return CHIP_NO_ERROR; @@ -41129,8 +39777,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_38, OnFailureCallback_38, true)); return CHIP_NO_ERROR; @@ -41155,8 +39801,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_39, OnFailureCallback_39, true)); return CHIP_NO_ERROR; @@ -41182,7 +39826,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t maxCoolSetpointLimitArgument; maxCoolSetpointLimitArgument = 3200; @@ -41205,8 +39848,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_41, OnFailureCallback_41, true)); return CHIP_NO_ERROR; @@ -41231,8 +39872,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_42, OnFailureCallback_42, true)); @@ -41258,8 +39897,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_43, OnFailureCallback_43, true)); @@ -41286,7 +39923,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t controlSequenceOfOperationArgument; controlSequenceOfOperationArgument = 4; @@ -41310,8 +39946,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_45, OnFailureCallback_45, true)); @@ -41337,8 +39971,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_46, OnFailureCallback_46, true)); return CHIP_NO_ERROR; @@ -41363,8 +39995,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_47, OnFailureCallback_47, true)); return CHIP_NO_ERROR; @@ -41390,7 +40020,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t systemModeArgument; systemModeArgument = 1; @@ -41413,8 +40042,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_49, OnFailureCallback_49, true)); return CHIP_NO_ERROR; @@ -41439,8 +40066,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_50, OnFailureCallback_50, true)); return CHIP_NO_ERROR; @@ -41465,8 +40090,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_51, OnFailureCallback_51, true)); return CHIP_NO_ERROR; @@ -41492,7 +40115,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int8_t minSetpointDeadBandArgument; minSetpointDeadBandArgument = 25; @@ -41515,8 +40137,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_53, OnFailureCallback_53, true)); return CHIP_NO_ERROR; @@ -41541,8 +40161,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_54, OnFailureCallback_54, true)); return CHIP_NO_ERROR; @@ -41568,7 +40186,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t startOfWeekArgument; startOfWeekArgument = 0; @@ -41592,8 +40209,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_56, OnFailureCallback_56, true)); return CHIP_NO_ERROR; @@ -41618,8 +40233,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_57, OnFailureCallback_57, true)); @@ -41644,7 +40257,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t numberOfWeeklyTransitionsArgument; numberOfWeeklyTransitionsArgument = 0; @@ -41669,8 +40281,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_59, OnFailureCallback_59, true)); return CHIP_NO_ERROR; @@ -41694,7 +40304,6 @@ class Test_TC_TSTAT_2_1 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t numberOfDailyTransitionsArgument; numberOfDailyTransitionsArgument = 0; @@ -42690,8 +41299,6 @@ class Test_TC_TSTAT_2_2 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); return CHIP_NO_ERROR; @@ -42718,7 +41325,6 @@ class Test_TC_TSTAT_2_2 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t occupiedCoolingSetpointArgument; occupiedCoolingSetpointArgument = 2000; @@ -42741,8 +41347,6 @@ class Test_TC_TSTAT_2_2 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_3, OnFailureCallback_3, true)); return CHIP_NO_ERROR; @@ -42767,7 +41371,6 @@ class Test_TC_TSTAT_2_2 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t occupiedCoolingSetpointArgument; occupiedCoolingSetpointArgument = 1600; @@ -42790,7 +41393,6 @@ class Test_TC_TSTAT_2_2 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t occupiedCoolingSetpointArgument; occupiedCoolingSetpointArgument = 2600; @@ -42813,8 +41415,6 @@ class Test_TC_TSTAT_2_2 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_6, OnFailureCallback_6, true)); return CHIP_NO_ERROR; @@ -42841,7 +41441,6 @@ class Test_TC_TSTAT_2_2 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t occupiedHeatingSetpointArgument; occupiedHeatingSetpointArgument = 2100; @@ -42864,8 +41463,6 @@ class Test_TC_TSTAT_2_2 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_8, OnFailureCallback_8, true)); return CHIP_NO_ERROR; @@ -42890,7 +41487,6 @@ class Test_TC_TSTAT_2_2 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t occupiedHeatingSetpointArgument; occupiedHeatingSetpointArgument = 700; @@ -42913,7 +41509,6 @@ class Test_TC_TSTAT_2_2 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t occupiedHeatingSetpointArgument; occupiedHeatingSetpointArgument = 3000; @@ -42936,8 +41531,6 @@ class Test_TC_TSTAT_2_2 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_11, OnFailureCallback_11, true)); return CHIP_NO_ERROR; @@ -42964,7 +41557,6 @@ class Test_TC_TSTAT_2_2 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t minHeatSetpointLimitArgument; minHeatSetpointLimitArgument = 2000; @@ -42987,8 +41579,6 @@ class Test_TC_TSTAT_2_2 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_13, OnFailureCallback_13, true)); return CHIP_NO_ERROR; @@ -43013,7 +41603,6 @@ class Test_TC_TSTAT_2_2 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t minHeatSetpointLimitArgument; minHeatSetpointLimitArgument = 700; @@ -43036,7 +41625,6 @@ class Test_TC_TSTAT_2_2 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t minHeatSetpointLimitArgument; minHeatSetpointLimitArgument = 3000; @@ -43059,8 +41647,6 @@ class Test_TC_TSTAT_2_2 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_16, OnFailureCallback_16, true)); return CHIP_NO_ERROR; @@ -43087,7 +41673,6 @@ class Test_TC_TSTAT_2_2 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t maxHeatSetpointLimitArgument; maxHeatSetpointLimitArgument = 2000; @@ -43110,8 +41695,6 @@ class Test_TC_TSTAT_2_2 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_18, OnFailureCallback_18, true)); return CHIP_NO_ERROR; @@ -43136,7 +41719,6 @@ class Test_TC_TSTAT_2_2 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t maxHeatSetpointLimitArgument; maxHeatSetpointLimitArgument = 700; @@ -43159,7 +41741,6 @@ class Test_TC_TSTAT_2_2 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t maxHeatSetpointLimitArgument; maxHeatSetpointLimitArgument = 3000; @@ -43182,8 +41763,6 @@ class Test_TC_TSTAT_2_2 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_21, OnFailureCallback_21, true)); return CHIP_NO_ERROR; @@ -43210,7 +41789,6 @@ class Test_TC_TSTAT_2_2 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t minCoolSetpointLimitArgument; minCoolSetpointLimitArgument = 2000; @@ -43233,8 +41811,6 @@ class Test_TC_TSTAT_2_2 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_23, OnFailureCallback_23, true)); return CHIP_NO_ERROR; @@ -43259,7 +41835,6 @@ class Test_TC_TSTAT_2_2 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t minCoolSetpointLimitArgument; minCoolSetpointLimitArgument = 1600; @@ -43282,7 +41857,6 @@ class Test_TC_TSTAT_2_2 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t minCoolSetpointLimitArgument; minCoolSetpointLimitArgument = 3200; @@ -43305,8 +41879,6 @@ class Test_TC_TSTAT_2_2 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_26, OnFailureCallback_26, true)); return CHIP_NO_ERROR; @@ -43333,7 +41905,6 @@ class Test_TC_TSTAT_2_2 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t maxCoolSetpointLimitArgument; maxCoolSetpointLimitArgument = 2000; @@ -43356,8 +41927,6 @@ class Test_TC_TSTAT_2_2 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_28, OnFailureCallback_28, true)); return CHIP_NO_ERROR; @@ -43382,7 +41951,6 @@ class Test_TC_TSTAT_2_2 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t maxCoolSetpointLimitArgument; maxCoolSetpointLimitArgument = 1600; @@ -43405,7 +41973,6 @@ class Test_TC_TSTAT_2_2 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t maxCoolSetpointLimitArgument; maxCoolSetpointLimitArgument = 3200; @@ -43428,7 +41995,6 @@ class Test_TC_TSTAT_2_2 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t minHeatSetpointLimitArgument; minHeatSetpointLimitArgument = 700; @@ -43451,7 +42017,6 @@ class Test_TC_TSTAT_2_2 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t minHeatSetpointLimitArgument; minHeatSetpointLimitArgument = 3000; @@ -43474,7 +42039,6 @@ class Test_TC_TSTAT_2_2 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t maxHeatSetpointLimitArgument; maxHeatSetpointLimitArgument = 700; @@ -43497,7 +42061,6 @@ class Test_TC_TSTAT_2_2 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t maxHeatSetpointLimitArgument; maxHeatSetpointLimitArgument = 3000; @@ -43520,7 +42083,6 @@ class Test_TC_TSTAT_2_2 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t minCoolSetpointLimitArgument; minCoolSetpointLimitArgument = 1600; @@ -43543,7 +42105,6 @@ class Test_TC_TSTAT_2_2 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t minCoolSetpointLimitArgument; minCoolSetpointLimitArgument = 3200; @@ -43566,7 +42127,6 @@ class Test_TC_TSTAT_2_2 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t maxCoolSetpointLimitArgument; maxCoolSetpointLimitArgument = 1600; @@ -43589,7 +42149,6 @@ class Test_TC_TSTAT_2_2 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t maxCoolSetpointLimitArgument; maxCoolSetpointLimitArgument = 3200; @@ -43612,8 +42171,6 @@ class Test_TC_TSTAT_2_2 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_39, OnFailureCallback_39, true)); @@ -43641,7 +42198,6 @@ class Test_TC_TSTAT_2_2 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t controlSequenceOfOperationArgument; controlSequenceOfOperationArgument = 2; @@ -43665,8 +42221,6 @@ class Test_TC_TSTAT_2_2 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_41, OnFailureCallback_41, true)); @@ -43692,7 +42246,6 @@ class Test_TC_TSTAT_2_2 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t occupiedHeatingSetpointArgument; occupiedHeatingSetpointArgument = 2000; @@ -43715,7 +42268,6 @@ class Test_TC_TSTAT_2_2 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t occupiedHeatingSetpointArgument; occupiedHeatingSetpointArgument = 2000; @@ -43738,7 +42290,6 @@ class Test_TC_TSTAT_2_2 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t occupiedCoolingSetpointArgument; occupiedCoolingSetpointArgument = 2600; @@ -43761,7 +42312,6 @@ class Test_TC_TSTAT_2_2 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t occupiedCoolingSetpointArgument; occupiedCoolingSetpointArgument = 2600; @@ -43784,7 +42334,6 @@ class Test_TC_TSTAT_2_2 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t occupiedCoolingSetpointArgument; occupiedCoolingSetpointArgument = 2600; @@ -43807,7 +42356,6 @@ class Test_TC_TSTAT_2_2 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t occupiedHeatingSetpointArgument; occupiedHeatingSetpointArgument = 2000; @@ -43830,7 +42378,6 @@ class Test_TC_TSTAT_2_2 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t occupiedCoolingSetpointArgument; occupiedCoolingSetpointArgument = 2600; @@ -43853,7 +42400,6 @@ class Test_TC_TSTAT_2_2 : public TestCommand chip::Controller::ThermostatClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t occupiedHeatingSetpointArgument; occupiedHeatingSetpointArgument = 2000; @@ -43994,8 +42540,6 @@ class Test_TC_TSUIC_1_1 : public TestCommand chip::Controller::ThermostatUserInterfaceConfigurationClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); @@ -44020,7 +42564,6 @@ class Test_TC_TSUIC_1_1 : public TestCommand chip::Controller::ThermostatUserInterfaceConfigurationClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t clusterRevisionArgument; clusterRevisionArgument = 2U; @@ -44046,8 +42589,6 @@ class Test_TC_TSUIC_1_1 : public TestCommand chip::Controller::ThermostatUserInterfaceConfigurationClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_3, OnFailureCallback_3, true)); @@ -44351,8 +42892,6 @@ class Test_TC_TSUIC_2_1 : public TestCommand chip::Controller::ThermostatUserInterfaceConfigurationClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute< chip::app::Clusters::ThermostatUserInterfaceConfiguration::Attributes::TemperatureDisplayMode::TypeInfo>( @@ -44379,8 +42918,6 @@ class Test_TC_TSUIC_2_1 : public TestCommand chip::Controller::ThermostatUserInterfaceConfigurationClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute< chip::app::Clusters::ThermostatUserInterfaceConfiguration::Attributes::TemperatureDisplayMode::TypeInfo>( @@ -44406,7 +42943,6 @@ class Test_TC_TSUIC_2_1 : public TestCommand chip::Controller::ThermostatUserInterfaceConfigurationClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t temperatureDisplayModeArgument; temperatureDisplayModeArgument = 0; @@ -44431,8 +42967,6 @@ class Test_TC_TSUIC_2_1 : public TestCommand chip::Controller::ThermostatUserInterfaceConfigurationClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute< chip::app::Clusters::ThermostatUserInterfaceConfiguration::Attributes::TemperatureDisplayMode::TypeInfo>( @@ -44459,8 +42993,6 @@ class Test_TC_TSUIC_2_1 : public TestCommand chip::Controller::ThermostatUserInterfaceConfigurationClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute< chip::app::Clusters::ThermostatUserInterfaceConfiguration::Attributes::TemperatureDisplayMode::TypeInfo>( @@ -44486,8 +43018,6 @@ class Test_TC_TSUIC_2_1 : public TestCommand chip::Controller::ThermostatUserInterfaceConfigurationClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_6, OnFailureCallback_6, true)); @@ -44513,8 +43043,6 @@ class Test_TC_TSUIC_2_1 : public TestCommand chip::Controller::ThermostatUserInterfaceConfigurationClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_7, OnFailureCallback_7, true)); @@ -44539,7 +43067,6 @@ class Test_TC_TSUIC_2_1 : public TestCommand chip::Controller::ThermostatUserInterfaceConfigurationClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t keypadLockoutArgument; keypadLockoutArgument = 0; @@ -44563,8 +43090,6 @@ class Test_TC_TSUIC_2_1 : public TestCommand chip::Controller::ThermostatUserInterfaceConfigurationClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_9, OnFailureCallback_9, true)); @@ -44590,8 +43115,6 @@ class Test_TC_TSUIC_2_1 : public TestCommand chip::Controller::ThermostatUserInterfaceConfigurationClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_10, OnFailureCallback_10, true)); @@ -44616,8 +43139,6 @@ class Test_TC_TSUIC_2_1 : public TestCommand chip::Controller::ThermostatUserInterfaceConfigurationClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute< chip::app::Clusters::ThermostatUserInterfaceConfiguration::Attributes::ScheduleProgrammingVisibility::TypeInfo>( @@ -44644,8 +43165,6 @@ class Test_TC_TSUIC_2_1 : public TestCommand chip::Controller::ThermostatUserInterfaceConfigurationClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute< chip::app::Clusters::ThermostatUserInterfaceConfiguration::Attributes::ScheduleProgrammingVisibility::TypeInfo>( @@ -44671,7 +43190,6 @@ class Test_TC_TSUIC_2_1 : public TestCommand chip::Controller::ThermostatUserInterfaceConfigurationClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t scheduleProgrammingVisibilityArgument; scheduleProgrammingVisibilityArgument = 0; @@ -44696,8 +43214,6 @@ class Test_TC_TSUIC_2_1 : public TestCommand chip::Controller::ThermostatUserInterfaceConfigurationClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute< chip::app::Clusters::ThermostatUserInterfaceConfiguration::Attributes::ScheduleProgrammingVisibility::TypeInfo>( @@ -44724,8 +43240,6 @@ class Test_TC_TSUIC_2_1 : public TestCommand chip::Controller::ThermostatUserInterfaceConfigurationClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute< chip::app::Clusters::ThermostatUserInterfaceConfiguration::Attributes::ScheduleProgrammingVisibility::TypeInfo>( @@ -44991,7 +43505,6 @@ class Test_TC_TSUIC_2_2 : public TestCommand chip::Controller::ThermostatUserInterfaceConfigurationClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t temperatureDisplayModeArgument; temperatureDisplayModeArgument = 0; @@ -45016,7 +43529,6 @@ class Test_TC_TSUIC_2_2 : public TestCommand chip::Controller::ThermostatUserInterfaceConfigurationClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t temperatureDisplayModeArgument; temperatureDisplayModeArgument = 1; @@ -45041,7 +43553,6 @@ class Test_TC_TSUIC_2_2 : public TestCommand chip::Controller::ThermostatUserInterfaceConfigurationClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t keypadLockoutArgument; keypadLockoutArgument = 0; @@ -45065,7 +43576,6 @@ class Test_TC_TSUIC_2_2 : public TestCommand chip::Controller::ThermostatUserInterfaceConfigurationClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t keypadLockoutArgument; keypadLockoutArgument = 1; @@ -45089,7 +43599,6 @@ class Test_TC_TSUIC_2_2 : public TestCommand chip::Controller::ThermostatUserInterfaceConfigurationClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t keypadLockoutArgument; keypadLockoutArgument = 2; @@ -45113,7 +43622,6 @@ class Test_TC_TSUIC_2_2 : public TestCommand chip::Controller::ThermostatUserInterfaceConfigurationClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t keypadLockoutArgument; keypadLockoutArgument = 3; @@ -45137,7 +43645,6 @@ class Test_TC_TSUIC_2_2 : public TestCommand chip::Controller::ThermostatUserInterfaceConfigurationClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t keypadLockoutArgument; keypadLockoutArgument = 4; @@ -45161,7 +43668,6 @@ class Test_TC_TSUIC_2_2 : public TestCommand chip::Controller::ThermostatUserInterfaceConfigurationClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t keypadLockoutArgument; keypadLockoutArgument = 5; @@ -45185,7 +43691,6 @@ class Test_TC_TSUIC_2_2 : public TestCommand chip::Controller::ThermostatUserInterfaceConfigurationClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t scheduleProgrammingVisibilityArgument; scheduleProgrammingVisibilityArgument = 0; @@ -45210,7 +43715,6 @@ class Test_TC_TSUIC_2_2 : public TestCommand chip::Controller::ThermostatUserInterfaceConfigurationClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t scheduleProgrammingVisibilityArgument; scheduleProgrammingVisibilityArgument = 1; @@ -45330,7 +43834,6 @@ class Test_TC_DIAG_TH_NW_1_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 0; using RequestType = chip::app::Clusters::ThreadNetworkDiagnostics::Commands::ResetCounts::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -45359,8 +43862,6 @@ class Test_TC_DIAG_TH_NW_1_1 : public TestCommand chip::Controller::ThreadNetworkDiagnosticsClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); @@ -45481,8 +43982,6 @@ class Test_TC_WIFIDIAG_1_1 : public TestCommand chip::Controller::GeneralDiagnosticsClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); @@ -45759,8 +44258,6 @@ class Test_TC_WNCV_1_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); return CHIP_NO_ERROR; @@ -45786,7 +44283,6 @@ class Test_TC_WNCV_1_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t clusterRevisionArgument; clusterRevisionArgument = 201U; @@ -45810,8 +44306,6 @@ class Test_TC_WNCV_1_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_3, OnFailureCallback_3, true)); return CHIP_NO_ERROR; @@ -45837,8 +44331,6 @@ class Test_TC_WNCV_1_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_4, OnFailureCallback_4, true)); return CHIP_NO_ERROR; @@ -45862,8 +44354,6 @@ class Test_TC_WNCV_1_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_5, OnFailureCallback_5, true)); return CHIP_NO_ERROR; @@ -45889,7 +44379,6 @@ class Test_TC_WNCV_1_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint32_t featureMapArgument; featureMapArgument = 32769UL; @@ -45913,8 +44402,6 @@ class Test_TC_WNCV_1_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_7, OnFailureCallback_7, true)); return CHIP_NO_ERROR; @@ -46765,8 +45252,6 @@ class Test_TC_WNCV_2_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); return CHIP_NO_ERROR; @@ -46792,7 +45277,6 @@ class Test_TC_WNCV_2_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t typeArgument; typeArgument = 250; @@ -46816,8 +45300,6 @@ class Test_TC_WNCV_2_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_3, OnFailureCallback_3, true)); return CHIP_NO_ERROR; @@ -46843,8 +45325,6 @@ class Test_TC_WNCV_2_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_4, OnFailureCallback_4, true)); return CHIP_NO_ERROR; @@ -46870,7 +45350,6 @@ class Test_TC_WNCV_2_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t configStatusArgument; configStatusArgument = 128; @@ -46894,8 +45373,6 @@ class Test_TC_WNCV_2_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_6, OnFailureCallback_6, true)); return CHIP_NO_ERROR; @@ -46921,8 +45398,6 @@ class Test_TC_WNCV_2_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_7, OnFailureCallback_7, true)); return CHIP_NO_ERROR; @@ -46948,7 +45423,6 @@ class Test_TC_WNCV_2_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t operationalStatusArgument; operationalStatusArgument = 128; @@ -46972,8 +45446,6 @@ class Test_TC_WNCV_2_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_9, OnFailureCallback_9, true)); return CHIP_NO_ERROR; @@ -46999,8 +45471,6 @@ class Test_TC_WNCV_2_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_10, OnFailureCallback_10, true)); return CHIP_NO_ERROR; @@ -47026,7 +45496,6 @@ class Test_TC_WNCV_2_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t endProductTypeArgument; endProductTypeArgument = 250; @@ -47050,8 +45519,6 @@ class Test_TC_WNCV_2_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_12, OnFailureCallback_12, true)); return CHIP_NO_ERROR; @@ -47077,8 +45544,6 @@ class Test_TC_WNCV_2_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_13, OnFailureCallback_13, true)); return CHIP_NO_ERROR; @@ -47104,7 +45569,6 @@ class Test_TC_WNCV_2_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t modeArgument; modeArgument = 8; @@ -47127,8 +45591,6 @@ class Test_TC_WNCV_2_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_15, OnFailureCallback_15, true)); return CHIP_NO_ERROR; @@ -47153,8 +45615,6 @@ class Test_TC_WNCV_2_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_16, OnFailureCallback_16, true)); @@ -47183,7 +45643,6 @@ class Test_TC_WNCV_2_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable targetPositionLiftPercent100thsArgument; targetPositionLiftPercent100thsArgument.SetNonNull(); targetPositionLiftPercent100thsArgument.Value() = 20000U; @@ -47209,8 +45668,6 @@ class Test_TC_WNCV_2_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_18, OnFailureCallback_18, true)); @@ -47237,8 +45694,6 @@ class Test_TC_WNCV_2_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_19, OnFailureCallback_19, true)); @@ -47267,7 +45722,6 @@ class Test_TC_WNCV_2_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable targetPositionTiltPercent100thsArgument; targetPositionTiltPercent100thsArgument.SetNonNull(); targetPositionTiltPercent100thsArgument.Value() = 20000U; @@ -47293,8 +45747,6 @@ class Test_TC_WNCV_2_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_21, OnFailureCallback_21, true)); @@ -47321,8 +45773,6 @@ class Test_TC_WNCV_2_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_22, OnFailureCallback_22, true)); @@ -47351,7 +45801,6 @@ class Test_TC_WNCV_2_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable currentPositionLiftPercent100thsArgument; currentPositionLiftPercent100thsArgument.SetNonNull(); currentPositionLiftPercent100thsArgument.Value() = 20000U; @@ -47377,8 +45826,6 @@ class Test_TC_WNCV_2_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_24, OnFailureCallback_24, true)); @@ -47405,8 +45852,6 @@ class Test_TC_WNCV_2_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_25, OnFailureCallback_25, true)); @@ -47435,7 +45880,6 @@ class Test_TC_WNCV_2_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable currentPositionTiltPercent100thsArgument; currentPositionTiltPercent100thsArgument.SetNonNull(); currentPositionTiltPercent100thsArgument.Value() = 20000U; @@ -47461,8 +45905,6 @@ class Test_TC_WNCV_2_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_27, OnFailureCallback_27, true)); @@ -47489,8 +45931,6 @@ class Test_TC_WNCV_2_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_28, OnFailureCallback_28, true)); @@ -47517,7 +45957,6 @@ class Test_TC_WNCV_2_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t installedOpenLimitLiftArgument; installedOpenLimitLiftArgument = 255U; @@ -47542,8 +45981,6 @@ class Test_TC_WNCV_2_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_30, OnFailureCallback_30, true)); @@ -47570,8 +46007,6 @@ class Test_TC_WNCV_2_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_31, OnFailureCallback_31, true)); @@ -47598,7 +46033,6 @@ class Test_TC_WNCV_2_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t installedClosedLimitLiftArgument; installedClosedLimitLiftArgument = 255U; @@ -47623,8 +46057,6 @@ class Test_TC_WNCV_2_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_33, OnFailureCallback_33, true)); @@ -47651,8 +46083,6 @@ class Test_TC_WNCV_2_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_34, OnFailureCallback_34, true)); @@ -47679,7 +46109,6 @@ class Test_TC_WNCV_2_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t installedOpenLimitTiltArgument; installedOpenLimitTiltArgument = 255U; @@ -47704,8 +46133,6 @@ class Test_TC_WNCV_2_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_36, OnFailureCallback_36, true)); @@ -47732,8 +46159,6 @@ class Test_TC_WNCV_2_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_37, OnFailureCallback_37, true)); @@ -47760,7 +46185,6 @@ class Test_TC_WNCV_2_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t installedClosedLimitTiltArgument; installedClosedLimitTiltArgument = 255U; @@ -47785,8 +46209,6 @@ class Test_TC_WNCV_2_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_39, OnFailureCallback_39, true)); @@ -47813,8 +46235,6 @@ class Test_TC_WNCV_2_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_40, OnFailureCallback_40, true)); return CHIP_NO_ERROR; @@ -47840,7 +46260,6 @@ class Test_TC_WNCV_2_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t safetyStatusArgument; safetyStatusArgument = 4096U; @@ -47864,8 +46283,6 @@ class Test_TC_WNCV_2_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_42, OnFailureCallback_42, true)); return CHIP_NO_ERROR; @@ -47891,8 +46308,6 @@ class Test_TC_WNCV_2_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_43, OnFailureCallback_43, true)); return CHIP_NO_ERROR; @@ -47918,7 +46333,6 @@ class Test_TC_WNCV_2_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable currentPositionLiftArgument; currentPositionLiftArgument.SetNonNull(); currentPositionLiftArgument.Value() = 255U; @@ -47943,8 +46357,6 @@ class Test_TC_WNCV_2_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_45, OnFailureCallback_45, true)); return CHIP_NO_ERROR; @@ -47970,8 +46382,6 @@ class Test_TC_WNCV_2_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_46, OnFailureCallback_46, true)); return CHIP_NO_ERROR; @@ -47997,7 +46407,6 @@ class Test_TC_WNCV_2_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable currentPositionTiltArgument; currentPositionTiltArgument.SetNonNull(); currentPositionTiltArgument.Value() = 255U; @@ -48022,8 +46431,6 @@ class Test_TC_WNCV_2_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_48, OnFailureCallback_48, true)); return CHIP_NO_ERROR; @@ -48049,8 +46456,6 @@ class Test_TC_WNCV_2_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_49, OnFailureCallback_49, true)); @@ -48077,7 +46482,6 @@ class Test_TC_WNCV_2_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable currentPositionLiftPercentageArgument; currentPositionLiftPercentageArgument.SetNonNull(); currentPositionLiftPercentageArgument.Value() = 200; @@ -48103,8 +46507,6 @@ class Test_TC_WNCV_2_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_51, OnFailureCallback_51, true)); @@ -48131,8 +46533,6 @@ class Test_TC_WNCV_2_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_52, OnFailureCallback_52, true)); @@ -48159,7 +46559,6 @@ class Test_TC_WNCV_2_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable currentPositionTiltPercentageArgument; currentPositionTiltPercentageArgument.SetNonNull(); currentPositionTiltPercentageArgument.Value() = 200; @@ -48185,8 +46584,6 @@ class Test_TC_WNCV_2_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_54, OnFailureCallback_54, true)); @@ -48407,8 +46804,6 @@ class Test_TC_WNCV_2_4 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); return CHIP_NO_ERROR; @@ -48433,8 +46828,6 @@ class Test_TC_WNCV_2_4 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -48576,8 +46969,6 @@ class Test_TC_WNCV_2_5 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); return CHIP_NO_ERROR; @@ -48602,8 +46993,6 @@ class Test_TC_WNCV_2_5 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -49050,7 +47439,6 @@ class Test_TC_WNCV_3_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::WindowCovering::Commands::DownOrClose::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -49085,8 +47473,6 @@ class Test_TC_WNCV_3_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_3, OnFailureCallback_3, true)); @@ -49115,8 +47501,6 @@ class Test_TC_WNCV_3_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_4, OnFailureCallback_4, true)); @@ -49143,8 +47527,6 @@ class Test_TC_WNCV_3_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_5, OnFailureCallback_5, true)); @@ -49173,8 +47555,6 @@ class Test_TC_WNCV_3_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_6, OnFailureCallback_6, true)); @@ -49201,8 +47581,6 @@ class Test_TC_WNCV_3_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - mTest_Test_TC_WNCV_3_1_OperationalStatus_Reported = OnSuccessCallback_7; return WaitForMs(0); } @@ -49226,7 +47604,6 @@ class Test_TC_WNCV_3_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t minIntervalArgument; minIntervalArgument = 4U; uint16_t maxIntervalArgument; @@ -49266,7 +47643,6 @@ class Test_TC_WNCV_3_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::WindowCovering::Commands::UpOrOpen::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -49301,8 +47677,6 @@ class Test_TC_WNCV_3_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_11, OnFailureCallback_11, true)); @@ -49335,8 +47709,6 @@ class Test_TC_WNCV_3_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - mTest_Test_TC_WNCV_3_1_OperationalStatus_Reported = OnSuccessCallback_13; return CHIP_NO_ERROR; } @@ -49369,8 +47741,6 @@ class Test_TC_WNCV_3_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_15, OnFailureCallback_15, true)); @@ -49399,8 +47769,6 @@ class Test_TC_WNCV_3_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_16, OnFailureCallback_16, true)); @@ -49427,8 +47795,6 @@ class Test_TC_WNCV_3_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_17, OnFailureCallback_17, true)); @@ -49457,8 +47823,6 @@ class Test_TC_WNCV_3_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_18, OnFailureCallback_18, true)); @@ -49484,7 +47848,6 @@ class Test_TC_WNCV_3_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::WindowCovering::Commands::StopMotion::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -49519,8 +47882,6 @@ class Test_TC_WNCV_3_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_21, OnFailureCallback_21, true)); return CHIP_NO_ERROR; @@ -49551,8 +47912,6 @@ class Test_TC_WNCV_3_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_23, OnFailureCallback_23, true)); @@ -49581,8 +47940,6 @@ class Test_TC_WNCV_3_1 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_24, OnFailureCallback_24, true)); @@ -50031,7 +48388,6 @@ class Test_TC_WNCV_3_2 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::WindowCovering::Commands::UpOrOpen::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -50066,8 +48422,6 @@ class Test_TC_WNCV_3_2 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_3, OnFailureCallback_3, true)); @@ -50096,8 +48450,6 @@ class Test_TC_WNCV_3_2 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_4, OnFailureCallback_4, true)); @@ -50124,8 +48476,6 @@ class Test_TC_WNCV_3_2 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_5, OnFailureCallback_5, true)); @@ -50154,8 +48504,6 @@ class Test_TC_WNCV_3_2 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_6, OnFailureCallback_6, true)); @@ -50182,8 +48530,6 @@ class Test_TC_WNCV_3_2 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - mTest_Test_TC_WNCV_3_2_OperationalStatus_Reported = OnSuccessCallback_7; return WaitForMs(0); } @@ -50207,7 +48553,6 @@ class Test_TC_WNCV_3_2 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t minIntervalArgument; minIntervalArgument = 4U; uint16_t maxIntervalArgument; @@ -50247,7 +48592,6 @@ class Test_TC_WNCV_3_2 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::WindowCovering::Commands::DownOrClose::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -50282,8 +48626,6 @@ class Test_TC_WNCV_3_2 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_11, OnFailureCallback_11, true)); @@ -50316,8 +48658,6 @@ class Test_TC_WNCV_3_2 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - mTest_Test_TC_WNCV_3_2_OperationalStatus_Reported = OnSuccessCallback_13; return CHIP_NO_ERROR; } @@ -50350,8 +48690,6 @@ class Test_TC_WNCV_3_2 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_15, OnFailureCallback_15, true)); @@ -50380,8 +48718,6 @@ class Test_TC_WNCV_3_2 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_16, OnFailureCallback_16, true)); @@ -50408,8 +48744,6 @@ class Test_TC_WNCV_3_2 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_17, OnFailureCallback_17, true)); @@ -50438,8 +48772,6 @@ class Test_TC_WNCV_3_2 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_18, OnFailureCallback_18, true)); @@ -50465,7 +48797,6 @@ class Test_TC_WNCV_3_2 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::WindowCovering::Commands::StopMotion::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -50500,8 +48831,6 @@ class Test_TC_WNCV_3_2 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_21, OnFailureCallback_21, true)); return CHIP_NO_ERROR; @@ -50532,8 +48861,6 @@ class Test_TC_WNCV_3_2 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_23, OnFailureCallback_23, true)); @@ -50562,8 +48889,6 @@ class Test_TC_WNCV_3_2 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_24, OnFailureCallback_24, true)); @@ -50861,7 +49186,6 @@ class Test_TC_WNCV_3_3 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::WindowCovering::Commands::DownOrClose::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -50895,7 +49219,6 @@ class Test_TC_WNCV_3_3 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::WindowCovering::Commands::UpOrOpen::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -50930,8 +49253,6 @@ class Test_TC_WNCV_3_3 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - mTest_Test_TC_WNCV_3_3_OperationalStatus_Reported = OnSuccessCallback_5; return WaitForMs(0); } @@ -50955,7 +49276,6 @@ class Test_TC_WNCV_3_3 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t minIntervalArgument; minIntervalArgument = 4U; uint16_t maxIntervalArgument; @@ -50995,7 +49315,6 @@ class Test_TC_WNCV_3_3 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::WindowCovering::Commands::StopMotion::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -51030,8 +49349,6 @@ class Test_TC_WNCV_3_3 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - mTest_Test_TC_WNCV_3_3_OperationalStatus_Reported = OnSuccessCallback_9; return CHIP_NO_ERROR; } @@ -51063,8 +49380,6 @@ class Test_TC_WNCV_3_3 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_11, OnFailureCallback_11, true)); return CHIP_NO_ERROR; @@ -51089,8 +49404,6 @@ class Test_TC_WNCV_3_3 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_12, OnFailureCallback_12, true)); @@ -51120,8 +49433,6 @@ class Test_TC_WNCV_3_3 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_13, OnFailureCallback_13, true)); @@ -51156,8 +49467,6 @@ class Test_TC_WNCV_3_3 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_14, OnFailureCallback_14, true)); @@ -51187,8 +49496,6 @@ class Test_TC_WNCV_3_3 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_15, OnFailureCallback_15, true)); @@ -51410,7 +49717,6 @@ class Test_TC_WNCV_3_4 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::WindowCovering::Commands::DownOrClose::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -51444,7 +49750,6 @@ class Test_TC_WNCV_3_4 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::WindowCovering::Commands::UpOrOpen::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -51479,8 +49784,6 @@ class Test_TC_WNCV_3_4 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_5, OnFailureCallback_5, true)); @@ -51507,8 +49810,6 @@ class Test_TC_WNCV_3_4 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_6, OnFailureCallback_6, true)); @@ -51535,8 +49836,6 @@ class Test_TC_WNCV_3_4 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_7, OnFailureCallback_7, true)); @@ -51563,8 +49862,6 @@ class Test_TC_WNCV_3_4 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_8, OnFailureCallback_8, true)); @@ -51777,7 +50074,6 @@ class Test_TC_WNCV_3_5 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::WindowCovering::Commands::UpOrOpen::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -51811,7 +50107,6 @@ class Test_TC_WNCV_3_5 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::WindowCovering::Commands::DownOrClose::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -51846,8 +50141,6 @@ class Test_TC_WNCV_3_5 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_5, OnFailureCallback_5, true)); @@ -51874,8 +50167,6 @@ class Test_TC_WNCV_3_5 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_6, OnFailureCallback_6, true)); @@ -51902,8 +50193,6 @@ class Test_TC_WNCV_3_5 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_7, OnFailureCallback_7, true)); @@ -51930,8 +50219,6 @@ class Test_TC_WNCV_3_5 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_8, OnFailureCallback_8, true)); @@ -52107,8 +50394,6 @@ class Test_TC_WNCV_4_3 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); @@ -52137,8 +50422,6 @@ class Test_TC_WNCV_4_3 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); @@ -52164,7 +50447,6 @@ class Test_TC_WNCV_4_3 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::WindowCovering::Commands::GoToLiftPercentage::Type; - ListFreer listFreer; RequestType request; request.liftPercentageValue = 63; request.liftPercent100thsValue = 12288U; @@ -52195,7 +50477,6 @@ class Test_TC_WNCV_4_3 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::WindowCovering::Commands::GoToLiftPercentage::Type; - ListFreer listFreer; RequestType request; request.liftPercentageValue = 100; request.liftPercent100thsValue = 10001U; @@ -52226,7 +50507,6 @@ class Test_TC_WNCV_4_3 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::WindowCovering::Commands::GoToLiftPercentage::Type; - ListFreer listFreer; RequestType request; request.liftPercentageValue = 255; request.liftPercent100thsValue = 65535U; @@ -52407,8 +50687,6 @@ class Test_TC_WNCV_4_4 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); @@ -52437,8 +50715,6 @@ class Test_TC_WNCV_4_4 : public TestCommand chip::Controller::WindowCoveringClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); @@ -52464,7 +50740,6 @@ class Test_TC_WNCV_4_4 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::WindowCovering::Commands::GoToTiltPercentage::Type; - ListFreer listFreer; RequestType request; request.tiltPercentageValue = 63; request.tiltPercent100thsValue = 12288U; @@ -52495,7 +50770,6 @@ class Test_TC_WNCV_4_4 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::WindowCovering::Commands::GoToTiltPercentage::Type; - ListFreer listFreer; RequestType request; request.tiltPercentageValue = 100; request.tiltPercent100thsValue = 10001U; @@ -52526,7 +50800,6 @@ class Test_TC_WNCV_4_4 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::WindowCovering::Commands::GoToTiltPercentage::Type; - ListFreer listFreer; RequestType request; request.tiltPercentageValue = 255; request.tiltPercent100thsValue = 65535U; @@ -52671,8 +50944,6 @@ class TV_TargetNavigatorCluster : public TestCommand chip::Controller::TargetNavigatorClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); return CHIP_NO_ERROR; @@ -52708,8 +50979,6 @@ class TV_TargetNavigatorCluster : public TestCommand chip::Controller::TargetNavigatorClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -52733,7 +51002,6 @@ class TV_TargetNavigatorCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::TargetNavigator::Commands::NavigateTarget::Type; - ListFreer listFreer; RequestType request; request.target = 1; request.data.Emplace(); @@ -52907,8 +51175,6 @@ class TV_AudioOutputCluster : public TestCommand chip::Controller::AudioOutputClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); return CHIP_NO_ERROR; @@ -52950,8 +51216,6 @@ class TV_AudioOutputCluster : public TestCommand chip::Controller::AudioOutputClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -52975,7 +51239,6 @@ class TV_AudioOutputCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 2; using RequestType = chip::app::Clusters::AudioOutput::Commands::SelectOutput::Type; - ListFreer listFreer; RequestType request; request.index = 1; @@ -53004,7 +51267,6 @@ class TV_AudioOutputCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 2; using RequestType = chip::app::Clusters::AudioOutput::Commands::RenameOutput::Type; - ListFreer listFreer; RequestType request; request.index = 1; request.name = chip::Span("HDMI Testgarbage: not in length on purpose", 9); @@ -53035,8 +51297,6 @@ class TV_AudioOutputCluster : public TestCommand chip::Controller::AudioOutputClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_5, OnFailureCallback_5, true)); return CHIP_NO_ERROR; @@ -53199,8 +51459,6 @@ class TV_ApplicationLauncherCluster : public TestCommand chip::Controller::ApplicationLauncherClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); return CHIP_NO_ERROR; @@ -53232,8 +51490,6 @@ class TV_ApplicationLauncherCluster : public TestCommand chip::Controller::ApplicationLauncherClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -53259,7 +51515,6 @@ class TV_ApplicationLauncherCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ApplicationLauncher::Commands::LaunchApp::Type; - ListFreer listFreer; RequestType request; request.application.catalogVendorId = 123U; @@ -53300,7 +51555,6 @@ class TV_ApplicationLauncherCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ApplicationLauncher::Commands::StopApp::Type; - ListFreer listFreer; RequestType request; request.application.catalogVendorId = 123U; @@ -53338,7 +51592,6 @@ class TV_ApplicationLauncherCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ApplicationLauncher::Commands::HideApp::Type; - ListFreer listFreer; RequestType request; request.application.catalogVendorId = 123U; @@ -53458,7 +51711,6 @@ class TV_KeypadInputCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::KeypadInput::Commands::SendKey::Type; - ListFreer listFreer; RequestType request; request.keyCode = static_cast(3); @@ -53582,7 +51834,6 @@ class TV_AccountLoginCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 3; using RequestType = chip::app::Clusters::AccountLogin::Commands::GetSetupPIN::Type; - ListFreer listFreer; RequestType request; request.tempAccountIdentifier = chip::Span("asdfgarbage: not in length on purpose", 4); @@ -53617,7 +51868,6 @@ class TV_AccountLoginCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 3; using RequestType = chip::app::Clusters::AccountLogin::Commands::Login::Type; - ListFreer listFreer; RequestType request; request.tempAccountIdentifier = chip::Span("asdfgarbage: not in length on purpose", 4); request.setupPIN = chip::Span("tempPin123garbage: not in length on purpose", 10); @@ -53648,7 +51898,6 @@ class TV_AccountLoginCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 3; using RequestType = chip::app::Clusters::AccountLogin::Commands::Logout::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -53770,8 +52019,6 @@ class TV_WakeOnLanCluster : public TestCommand chip::Controller::WakeOnLanClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); return CHIP_NO_ERROR; @@ -53988,8 +52235,6 @@ class TV_ApplicationBasicCluster : public TestCommand chip::Controller::ApplicationBasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); return CHIP_NO_ERROR; @@ -54014,8 +52259,6 @@ class TV_ApplicationBasicCluster : public TestCommand chip::Controller::ApplicationBasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -54040,8 +52283,6 @@ class TV_ApplicationBasicCluster : public TestCommand chip::Controller::ApplicationBasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_3, OnFailureCallback_3, true)); return CHIP_NO_ERROR; @@ -54066,8 +52307,6 @@ class TV_ApplicationBasicCluster : public TestCommand chip::Controller::ApplicationBasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_4, OnFailureCallback_4, true)); return CHIP_NO_ERROR; @@ -54092,8 +52331,6 @@ class TV_ApplicationBasicCluster : public TestCommand chip::Controller::ApplicationBasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_5, OnFailureCallback_5, true)); return CHIP_NO_ERROR; @@ -54118,8 +52355,6 @@ class TV_ApplicationBasicCluster : public TestCommand chip::Controller::ApplicationBasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_6, OnFailureCallback_6, true)); return CHIP_NO_ERROR; @@ -54147,8 +52382,6 @@ class TV_ApplicationBasicCluster : public TestCommand chip::Controller::ApplicationBasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_7, OnFailureCallback_7, true)); return CHIP_NO_ERROR; @@ -54173,8 +52406,6 @@ class TV_ApplicationBasicCluster : public TestCommand chip::Controller::ApplicationBasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_8, OnFailureCallback_8, true)); return CHIP_NO_ERROR; @@ -54480,8 +52711,6 @@ class TV_MediaPlaybackCluster : public TestCommand chip::Controller::MediaPlaybackClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); return CHIP_NO_ERROR; @@ -54506,8 +52735,6 @@ class TV_MediaPlaybackCluster : public TestCommand chip::Controller::MediaPlaybackClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -54533,8 +52760,6 @@ class TV_MediaPlaybackCluster : public TestCommand chip::Controller::MediaPlaybackClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_3, OnFailureCallback_3, true)); return CHIP_NO_ERROR; @@ -54560,8 +52785,6 @@ class TV_MediaPlaybackCluster : public TestCommand chip::Controller::MediaPlaybackClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_4, OnFailureCallback_4, true)); return CHIP_NO_ERROR; @@ -54591,8 +52814,6 @@ class TV_MediaPlaybackCluster : public TestCommand chip::Controller::MediaPlaybackClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_5, OnFailureCallback_5, true)); return CHIP_NO_ERROR; @@ -54617,8 +52838,6 @@ class TV_MediaPlaybackCluster : public TestCommand chip::Controller::MediaPlaybackClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_6, OnFailureCallback_6, true)); return CHIP_NO_ERROR; @@ -54644,8 +52863,6 @@ class TV_MediaPlaybackCluster : public TestCommand chip::Controller::MediaPlaybackClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_7, OnFailureCallback_7, true)); return CHIP_NO_ERROR; @@ -54670,7 +52887,6 @@ class TV_MediaPlaybackCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 3; using RequestType = chip::app::Clusters::MediaPlayback::Commands::Play::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -54703,7 +52919,6 @@ class TV_MediaPlaybackCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 3; using RequestType = chip::app::Clusters::MediaPlayback::Commands::Pause::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -54736,7 +52951,6 @@ class TV_MediaPlaybackCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 3; using RequestType = chip::app::Clusters::MediaPlayback::Commands::StopPlayback::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -54769,7 +52983,6 @@ class TV_MediaPlaybackCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 3; using RequestType = chip::app::Clusters::MediaPlayback::Commands::StartOver::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -54802,7 +53015,6 @@ class TV_MediaPlaybackCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 3; using RequestType = chip::app::Clusters::MediaPlayback::Commands::Previous::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -54835,7 +53047,6 @@ class TV_MediaPlaybackCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 3; using RequestType = chip::app::Clusters::MediaPlayback::Commands::Next::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -54868,7 +53079,6 @@ class TV_MediaPlaybackCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 3; using RequestType = chip::app::Clusters::MediaPlayback::Commands::Rewind::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -54901,7 +53111,6 @@ class TV_MediaPlaybackCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 3; using RequestType = chip::app::Clusters::MediaPlayback::Commands::FastForward::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -54934,7 +53143,6 @@ class TV_MediaPlaybackCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 3; using RequestType = chip::app::Clusters::MediaPlayback::Commands::SkipForward::Type; - ListFreer listFreer; RequestType request; request.deltaPositionMilliseconds = 500ULL; @@ -54969,8 +53177,6 @@ class TV_MediaPlaybackCluster : public TestCommand chip::Controller::MediaPlaybackClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_17, OnFailureCallback_17, true)); return CHIP_NO_ERROR; @@ -54999,7 +53205,6 @@ class TV_MediaPlaybackCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 3; using RequestType = chip::app::Clusters::MediaPlayback::Commands::SkipBackward::Type; - ListFreer listFreer; RequestType request; request.deltaPositionMilliseconds = 100ULL; @@ -55034,8 +53239,6 @@ class TV_MediaPlaybackCluster : public TestCommand chip::Controller::MediaPlaybackClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_19, OnFailureCallback_19, true)); return CHIP_NO_ERROR; @@ -55064,7 +53267,6 @@ class TV_MediaPlaybackCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 3; using RequestType = chip::app::Clusters::MediaPlayback::Commands::Seek::Type; - ListFreer listFreer; RequestType request; request.position = 1000ULL; @@ -55099,8 +53301,6 @@ class TV_MediaPlaybackCluster : public TestCommand chip::Controller::MediaPlaybackClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_21, OnFailureCallback_21, true)); return CHIP_NO_ERROR; @@ -55268,8 +53468,6 @@ class TV_ChannelCluster : public TestCommand chip::Controller::ChannelClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); return CHIP_NO_ERROR; @@ -55346,8 +53544,6 @@ class TV_ChannelCluster : public TestCommand chip::Controller::ChannelClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -55382,8 +53578,6 @@ class TV_ChannelCluster : public TestCommand chip::Controller::ChannelClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_3, OnFailureCallback_3, true)); return CHIP_NO_ERROR; @@ -55419,7 +53613,6 @@ class TV_ChannelCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::Channel::Commands::ChangeChannel::Type; - ListFreer listFreer; RequestType request; request.match = chip::Span("PBSgarbage: not in length on purpose", 3); @@ -55465,7 +53658,6 @@ class TV_ChannelCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::Channel::Commands::ChangeChannelByNumber::Type; - ListFreer listFreer; RequestType request; request.majorNumber = 6U; request.minorNumber = 0U; @@ -55495,7 +53687,6 @@ class TV_ChannelCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::Channel::Commands::SkipChannel::Type; - ListFreer listFreer; RequestType request; request.count = 1U; @@ -55606,7 +53797,6 @@ class TV_LowPowerCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::LowPower::Commands::Sleep::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -55749,8 +53939,6 @@ class TV_ContentLauncherCluster : public TestCommand chip::Controller::ContentLauncherClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); return CHIP_NO_ERROR; @@ -55782,8 +53970,6 @@ class TV_ContentLauncherCluster : public TestCommand chip::Controller::ContentLauncherClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); @@ -55872,7 +54058,6 @@ class TV_ContentLauncherCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ContentLauncher::Commands::LaunchURL::Type; - ListFreer listFreer; RequestType request; request.contentURL = chip::Span("exampleUrlgarbage: not in length on purpose", 10); request.displayString.Emplace(); @@ -56130,8 +54315,6 @@ class TV_MediaInputCluster : public TestCommand chip::Controller::MediaInputClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); return CHIP_NO_ERROR; @@ -56172,8 +54355,6 @@ class TV_MediaInputCluster : public TestCommand chip::Controller::MediaInputClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -56197,7 +54378,6 @@ class TV_MediaInputCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::MediaInput::Commands::SelectInput::Type; - ListFreer listFreer; RequestType request; request.index = 1; @@ -56226,7 +54406,6 @@ class TV_MediaInputCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::MediaInput::Commands::HideInputStatus::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -56254,7 +54433,6 @@ class TV_MediaInputCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::MediaInput::Commands::ShowInputStatus::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -56282,7 +54460,6 @@ class TV_MediaInputCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::MediaInput::Commands::RenameInput::Type; - ListFreer listFreer; RequestType request; request.index = 1; request.name = chip::Span("HDMI Testgarbage: not in length on purpose", 9); @@ -56313,8 +54490,6 @@ class TV_MediaInputCluster : public TestCommand chip::Controller::MediaInputClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_7, OnFailureCallback_7, true)); return CHIP_NO_ERROR; @@ -62428,7 +60603,6 @@ class TestCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::TestCluster::Commands::Test::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -62454,7 +60628,6 @@ class TestCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::TestCluster::Commands::TestNotHandled::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -62481,7 +60654,6 @@ class TestCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::TestCluster::Commands::TestSpecific::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -62512,7 +60684,6 @@ class TestCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::TestCluster::Commands::TestAddArguments::Type; - ListFreer listFreer; RequestType request; request.arg1 = 3; request.arg2 = 17; @@ -62545,7 +60716,6 @@ class TestCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::TestCluster::Commands::TestAddArguments::Type; - ListFreer listFreer; RequestType request; request.arg1 = 250; request.arg2 = 6; @@ -62575,8 +60745,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_6, OnFailureCallback_6, true)); return CHIP_NO_ERROR; @@ -62601,7 +60769,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; bool booleanArgument; booleanArgument = 1; @@ -62624,8 +60791,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_8, OnFailureCallback_8, true)); return CHIP_NO_ERROR; @@ -62650,7 +60815,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; bool booleanArgument; booleanArgument = 0; @@ -62673,8 +60837,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_10, OnFailureCallback_10, true)); return CHIP_NO_ERROR; @@ -62699,8 +60861,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_11, OnFailureCallback_11, true)); return CHIP_NO_ERROR; @@ -62725,7 +60885,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t bitmap8Argument; bitmap8Argument = 255; @@ -62748,8 +60907,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_13, OnFailureCallback_13, true)); return CHIP_NO_ERROR; @@ -62774,7 +60931,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t bitmap8Argument; bitmap8Argument = 0; @@ -62797,8 +60953,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_15, OnFailureCallback_15, true)); return CHIP_NO_ERROR; @@ -62823,8 +60977,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_16, OnFailureCallback_16, true)); return CHIP_NO_ERROR; @@ -62849,7 +61001,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t bitmap16Argument; bitmap16Argument = 65535U; @@ -62872,8 +61023,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_18, OnFailureCallback_18, true)); return CHIP_NO_ERROR; @@ -62898,7 +61047,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t bitmap16Argument; bitmap16Argument = 0U; @@ -62921,8 +61069,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_20, OnFailureCallback_20, true)); return CHIP_NO_ERROR; @@ -62947,8 +61093,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_21, OnFailureCallback_21, true)); return CHIP_NO_ERROR; @@ -62973,7 +61117,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint32_t bitmap32Argument; bitmap32Argument = 4294967295UL; @@ -62996,8 +61139,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_23, OnFailureCallback_23, true)); return CHIP_NO_ERROR; @@ -63022,7 +61163,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint32_t bitmap32Argument; bitmap32Argument = 0UL; @@ -63045,8 +61185,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_25, OnFailureCallback_25, true)); return CHIP_NO_ERROR; @@ -63071,8 +61209,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_26, OnFailureCallback_26, true)); return CHIP_NO_ERROR; @@ -63097,7 +61233,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint64_t bitmap64Argument; bitmap64Argument = 18446744073709551615ULL; @@ -63120,8 +61255,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_28, OnFailureCallback_28, true)); return CHIP_NO_ERROR; @@ -63146,7 +61279,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint64_t bitmap64Argument; bitmap64Argument = 0ULL; @@ -63169,8 +61301,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_30, OnFailureCallback_30, true)); return CHIP_NO_ERROR; @@ -63195,8 +61325,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_31, OnFailureCallback_31, true)); return CHIP_NO_ERROR; @@ -63221,7 +61349,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t int8uArgument; int8uArgument = 255; @@ -63244,8 +61371,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_33, OnFailureCallback_33, true)); return CHIP_NO_ERROR; @@ -63270,7 +61395,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t int8uArgument; int8uArgument = 0; @@ -63293,8 +61417,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_35, OnFailureCallback_35, true)); return CHIP_NO_ERROR; @@ -63319,8 +61441,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_36, OnFailureCallback_36, true)); return CHIP_NO_ERROR; @@ -63345,7 +61465,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t int16uArgument; int16uArgument = 65535U; @@ -63368,8 +61487,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_38, OnFailureCallback_38, true)); return CHIP_NO_ERROR; @@ -63394,7 +61511,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t int16uArgument; int16uArgument = 0U; @@ -63417,8 +61533,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_40, OnFailureCallback_40, true)); return CHIP_NO_ERROR; @@ -63443,8 +61557,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_41, OnFailureCallback_41, true)); return CHIP_NO_ERROR; @@ -63469,7 +61581,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint32_t int32uArgument; int32uArgument = 4294967295UL; @@ -63492,8 +61603,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_43, OnFailureCallback_43, true)); return CHIP_NO_ERROR; @@ -63518,7 +61627,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint32_t int32uArgument; int32uArgument = 0UL; @@ -63541,8 +61649,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_45, OnFailureCallback_45, true)); return CHIP_NO_ERROR; @@ -63567,8 +61673,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_46, OnFailureCallback_46, true)); return CHIP_NO_ERROR; @@ -63593,7 +61697,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint64_t int64uArgument; int64uArgument = 18446744073709551615ULL; @@ -63616,8 +61719,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_48, OnFailureCallback_48, true)); return CHIP_NO_ERROR; @@ -63642,7 +61743,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint64_t int64uArgument; int64uArgument = 0ULL; @@ -63665,8 +61765,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_50, OnFailureCallback_50, true)); return CHIP_NO_ERROR; @@ -63691,8 +61789,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_51, OnFailureCallback_51, true)); return CHIP_NO_ERROR; @@ -63717,7 +61813,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int8_t int8sArgument; int8sArgument = 127; @@ -63740,8 +61835,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_53, OnFailureCallback_53, true)); return CHIP_NO_ERROR; @@ -63766,7 +61859,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int8_t int8sArgument; int8sArgument = -128; @@ -63789,8 +61881,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_55, OnFailureCallback_55, true)); return CHIP_NO_ERROR; @@ -63815,7 +61905,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int8_t int8sArgument; int8sArgument = 0; @@ -63838,8 +61927,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_57, OnFailureCallback_57, true)); return CHIP_NO_ERROR; @@ -63864,8 +61951,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_58, OnFailureCallback_58, true)); return CHIP_NO_ERROR; @@ -63890,7 +61975,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t int16sArgument; int16sArgument = 32767; @@ -63913,8 +61997,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_60, OnFailureCallback_60, true)); return CHIP_NO_ERROR; @@ -63939,7 +62021,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t int16sArgument; int16sArgument = -32768; @@ -63962,8 +62043,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_62, OnFailureCallback_62, true)); return CHIP_NO_ERROR; @@ -63988,7 +62067,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t int16sArgument; int16sArgument = 0; @@ -64011,8 +62089,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_64, OnFailureCallback_64, true)); return CHIP_NO_ERROR; @@ -64037,8 +62113,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_65, OnFailureCallback_65, true)); return CHIP_NO_ERROR; @@ -64063,7 +62137,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int32_t int32sArgument; int32sArgument = 2147483647L; @@ -64086,8 +62159,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_67, OnFailureCallback_67, true)); return CHIP_NO_ERROR; @@ -64112,7 +62183,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int32_t int32sArgument; int32sArgument = -2147483648L; @@ -64135,8 +62205,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_69, OnFailureCallback_69, true)); return CHIP_NO_ERROR; @@ -64161,7 +62229,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int32_t int32sArgument; int32sArgument = 0L; @@ -64184,8 +62251,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_71, OnFailureCallback_71, true)); return CHIP_NO_ERROR; @@ -64210,8 +62275,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_72, OnFailureCallback_72, true)); return CHIP_NO_ERROR; @@ -64236,7 +62299,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int64_t int64sArgument; int64sArgument = 9223372036854775807LL; @@ -64259,8 +62321,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_74, OnFailureCallback_74, true)); return CHIP_NO_ERROR; @@ -64285,7 +62345,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int64_t int64sArgument; int64sArgument = -9223372036854775807LL; @@ -64308,8 +62367,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_76, OnFailureCallback_76, true)); return CHIP_NO_ERROR; @@ -64334,7 +62391,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int64_t int64sArgument; int64sArgument = 0LL; @@ -64357,8 +62413,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_78, OnFailureCallback_78, true)); return CHIP_NO_ERROR; @@ -64383,8 +62437,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_79, OnFailureCallback_79, true)); return CHIP_NO_ERROR; @@ -64409,7 +62461,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; float floatSingleArgument; floatSingleArgument = 0.1f; @@ -64432,8 +62483,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_81, OnFailureCallback_81, true)); return CHIP_NO_ERROR; @@ -64458,7 +62507,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; float floatSingleArgument; floatSingleArgument = 17000000000.0f; @@ -64481,8 +62529,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_83, OnFailureCallback_83, true)); return CHIP_NO_ERROR; @@ -64507,7 +62553,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; float floatSingleArgument; floatSingleArgument = 1.7e-10f; @@ -64530,8 +62575,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_85, OnFailureCallback_85, true)); return CHIP_NO_ERROR; @@ -64556,7 +62599,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; float floatSingleArgument; floatSingleArgument = 0.0f; @@ -64579,8 +62621,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_87, OnFailureCallback_87, true)); return CHIP_NO_ERROR; @@ -64605,8 +62645,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_88, OnFailureCallback_88, true)); return CHIP_NO_ERROR; @@ -64631,7 +62669,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; double floatDoubleArgument; floatDoubleArgument = 0.1234567890123; @@ -64654,8 +62691,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_90, OnFailureCallback_90, true)); return CHIP_NO_ERROR; @@ -64680,7 +62715,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; double floatDoubleArgument; floatDoubleArgument = 1.7e+200; @@ -64703,8 +62737,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_92, OnFailureCallback_92, true)); return CHIP_NO_ERROR; @@ -64729,7 +62761,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; double floatDoubleArgument; floatDoubleArgument = 1.7e-200; @@ -64752,8 +62783,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_94, OnFailureCallback_94, true)); return CHIP_NO_ERROR; @@ -64778,7 +62807,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; double floatDoubleArgument; floatDoubleArgument = 0; @@ -64801,8 +62829,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_96, OnFailureCallback_96, true)); return CHIP_NO_ERROR; @@ -64827,8 +62853,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_97, OnFailureCallback_97, true)); return CHIP_NO_ERROR; @@ -64853,7 +62877,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t enum8Argument; enum8Argument = 255; @@ -64876,8 +62899,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_99, OnFailureCallback_99, true)); return CHIP_NO_ERROR; @@ -64902,7 +62923,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t enum8Argument; enum8Argument = 0; @@ -64925,8 +62945,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_101, OnFailureCallback_101, true)); return CHIP_NO_ERROR; @@ -64951,8 +62969,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_102, OnFailureCallback_102, true)); return CHIP_NO_ERROR; @@ -64977,7 +62993,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t enum16Argument; enum16Argument = 65535U; @@ -65000,8 +63015,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_104, OnFailureCallback_104, true)); return CHIP_NO_ERROR; @@ -65026,7 +63039,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t enum16Argument; enum16Argument = 0U; @@ -65049,8 +63061,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_106, OnFailureCallback_106, true)); return CHIP_NO_ERROR; @@ -65075,8 +63085,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_107, OnFailureCallback_107, true)); return CHIP_NO_ERROR; @@ -65101,7 +63109,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::ByteSpan octetStringArgument; octetStringArgument = chip::ByteSpan(chip::Uint8::from_const_char("Tes\x00ti\x00nggarbage: not in length on purpose"), 9); @@ -65124,8 +63131,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_109, OnFailureCallback_109, true)); return CHIP_NO_ERROR; @@ -65151,7 +63156,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::ByteSpan octetStringArgument; octetStringArgument = chip::ByteSpan(chip::Uint8::from_const_char("\x0d\x0a\xff\x22\xa0garbage: not in length on purpose"), 5); @@ -65175,8 +63179,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_111, OnFailureCallback_111, true)); return CHIP_NO_ERROR; @@ -65202,7 +63204,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::ByteSpan octetStringArgument; octetStringArgument = chip::ByteSpan(chip::Uint8::from_const_char("TestValuegarbage: not in length on purpose"), 9); @@ -65225,8 +63226,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_113, OnFailureCallback_113, true)); return CHIP_NO_ERROR; @@ -65252,7 +63251,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::ByteSpan octetStringArgument; octetStringArgument = chip::ByteSpan(chip::Uint8::from_const_char("TestValueLongerThan10garbage: not in length on purpose"), 21); @@ -65277,8 +63275,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_115, OnFailureCallback_115, true)); return CHIP_NO_ERROR; @@ -65304,7 +63300,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::ByteSpan octetStringArgument; octetStringArgument = chip::ByteSpan(chip::Uint8::from_const_char("garbage: not in length on purpose"), 0); @@ -65327,8 +63322,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_117, OnFailureCallback_117, true)); return CHIP_NO_ERROR; @@ -65353,7 +63346,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::ByteSpan longOctetStringArgument; longOctetStringArgument = chip::ByteSpan( chip::Uint8::from_const_char( @@ -65381,8 +63373,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_119, OnFailureCallback_119, true)); return CHIP_NO_ERROR; @@ -65414,7 +63404,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::ByteSpan longOctetStringArgument; longOctetStringArgument = chip::ByteSpan(chip::Uint8::from_const_char("garbage: not in length on purpose"), 0); @@ -65437,8 +63426,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_121, OnFailureCallback_121, true)); return CHIP_NO_ERROR; @@ -65463,7 +63450,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::CharSpan charStringArgument; charStringArgument = chip::Span("☉T☉garbage: not in length on purpose", 7); @@ -65486,8 +63472,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_123, OnFailureCallback_123, true)); return CHIP_NO_ERROR; @@ -65512,7 +63496,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::CharSpan charStringArgument; charStringArgument = chip::Span("☉TestValueLongerThan10☉garbage: not in length on purpose", 27); @@ -65536,8 +63519,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_125, OnFailureCallback_125, true)); return CHIP_NO_ERROR; @@ -65562,7 +63543,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::CharSpan charStringArgument; charStringArgument = chip::Span("garbage: not in length on purpose", 0); @@ -65585,8 +63565,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_127, OnFailureCallback_127, true)); return CHIP_NO_ERROR; @@ -65611,7 +63589,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::CharSpan longCharStringArgument; longCharStringArgument = chip::Span( "☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉☉" @@ -65638,8 +63615,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_129, OnFailureCallback_129, true)); return CHIP_NO_ERROR; @@ -65669,7 +63644,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::CharSpan longCharStringArgument; longCharStringArgument = chip::Span("garbage: not in length on purpose", 0); @@ -65692,8 +63666,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_131, OnFailureCallback_131, true)); return CHIP_NO_ERROR; @@ -65833,8 +63805,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_133, OnFailureCallback_133, true)); return CHIP_NO_ERROR; @@ -65917,8 +63887,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_134, OnFailureCallback_134, true)); return CHIP_NO_ERROR; @@ -65943,7 +63911,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint64_t epochUsArgument; epochUsArgument = 18446744073709551615ULL; @@ -65966,8 +63933,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_136, OnFailureCallback_136, true)); return CHIP_NO_ERROR; @@ -65992,7 +63957,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint64_t epochUsArgument; epochUsArgument = 0ULL; @@ -66015,8 +63979,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_138, OnFailureCallback_138, true)); return CHIP_NO_ERROR; @@ -66041,8 +64003,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_139, OnFailureCallback_139, true)); return CHIP_NO_ERROR; @@ -66067,7 +64027,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint32_t epochSArgument; epochSArgument = 4294967295UL; @@ -66090,8 +64049,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_141, OnFailureCallback_141, true)); return CHIP_NO_ERROR; @@ -66116,7 +64073,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint32_t epochSArgument; epochSArgument = 0UL; @@ -66139,8 +64095,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_143, OnFailureCallback_143, true)); return CHIP_NO_ERROR; @@ -66165,8 +64119,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_144, OnFailureCallback_144, true)); return CHIP_NO_ERROR; @@ -66191,7 +64143,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; bool unsupportedArgument; unsupportedArgument = 0; @@ -66213,7 +64164,6 @@ class TestCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 200; using RequestType = chip::app::Clusters::TestCluster::Commands::Test::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -66242,7 +64192,6 @@ class TestCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 0; using RequestType = chip::app::Clusters::TestCluster::Commands::Test::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -66272,8 +64221,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_148, OnFailureCallback_148, true)); return CHIP_NO_ERROR; @@ -66298,7 +64245,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::VendorId vendorIdArgument; vendorIdArgument = static_cast(17); @@ -66321,8 +64267,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_150, OnFailureCallback_150, true)); return CHIP_NO_ERROR; @@ -66347,7 +64291,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::VendorId vendorIdArgument; vendorIdArgument = static_cast(0); @@ -66369,7 +64312,6 @@ class TestCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::TestCluster::Commands::TestEnumsRequest::Type; - ListFreer listFreer; RequestType request; request.arg1 = static_cast(20003); request.arg2 = static_cast(101); @@ -66406,7 +64348,6 @@ class TestCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::TestCluster::Commands::TestStructArgumentRequest::Type; - ListFreer listFreer; RequestType request; request.arg1.a = 0; @@ -66448,7 +64389,6 @@ class TestCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::TestCluster::Commands::TestStructArgumentRequest::Type; - ListFreer listFreer; RequestType request; request.arg1.a = 0; @@ -66490,7 +64430,6 @@ class TestCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::TestCluster::Commands::TestNestedStructArgumentRequest::Type; - ListFreer listFreer; RequestType request; request.arg1.a = 0; @@ -66535,7 +64474,6 @@ class TestCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::TestCluster::Commands::TestNestedStructArgumentRequest::Type; - ListFreer listFreer; RequestType request; request.arg1.a = 0; @@ -66784,7 +64722,6 @@ class TestCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::TestCluster::Commands::SimpleStructEchoRequest::Type; - ListFreer listFreer; RequestType request; request.arg1.a = 17; @@ -67416,8 +65353,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_169, OnFailureCallback_169, true)); return CHIP_NO_ERROR; @@ -67485,8 +65420,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_171, OnFailureCallback_171, true)); return CHIP_NO_ERROR; @@ -67574,8 +65507,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_173, OnFailureCallback_173, true)); return CHIP_NO_ERROR; @@ -67620,7 +65551,6 @@ class TestCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::TestCluster::Commands::TestNullableOptionalRequest::Type; - ListFreer listFreer; RequestType request; request.arg1.Emplace(); request.arg1.Value().SetNonNull(); @@ -67668,7 +65598,6 @@ class TestCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::TestCluster::Commands::TestNullableOptionalRequest::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -67704,8 +65633,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_176, OnFailureCallback_176, true)); @@ -67790,8 +65717,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_178, OnFailureCallback_178, true)); @@ -67840,7 +65765,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableBooleanArgument; nullableBooleanArgument.SetNull(); @@ -67863,8 +65787,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_180, OnFailureCallback_180, true)); return CHIP_NO_ERROR; @@ -67889,7 +65811,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableBooleanArgument; nullableBooleanArgument.SetNonNull(); nullableBooleanArgument.Value() = true; @@ -67913,8 +65834,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_182, OnFailureCallback_182, true)); return CHIP_NO_ERROR; @@ -67940,7 +65859,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableBitmap8Argument; nullableBitmap8Argument.SetNonNull(); nullableBitmap8Argument.Value() = 254; @@ -67964,8 +65882,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_184, OnFailureCallback_184, true)); return CHIP_NO_ERROR; @@ -67991,7 +65907,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableBitmap8Argument; nullableBitmap8Argument.SetNonNull(); nullableBitmap8Argument.Value() = 255; @@ -68016,8 +65931,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_186, OnFailureCallback_186, true)); return CHIP_NO_ERROR; @@ -68043,7 +65956,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableBitmap8Argument; nullableBitmap8Argument.SetNull(); @@ -68066,8 +65978,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_188, OnFailureCallback_188, true)); return CHIP_NO_ERROR; @@ -68092,7 +66002,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableBitmap16Argument; nullableBitmap16Argument.SetNonNull(); nullableBitmap16Argument.Value() = 65534U; @@ -68116,8 +66025,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_190, OnFailureCallback_190, true)); return CHIP_NO_ERROR; @@ -68143,7 +66050,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableBitmap16Argument; nullableBitmap16Argument.SetNonNull(); nullableBitmap16Argument.Value() = 65535U; @@ -68168,8 +66074,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_192, OnFailureCallback_192, true)); return CHIP_NO_ERROR; @@ -68195,7 +66099,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableBitmap16Argument; nullableBitmap16Argument.SetNull(); @@ -68218,8 +66121,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_194, OnFailureCallback_194, true)); return CHIP_NO_ERROR; @@ -68244,7 +66145,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableBitmap32Argument; nullableBitmap32Argument.SetNonNull(); nullableBitmap32Argument.Value() = 4294967294UL; @@ -68268,8 +66168,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_196, OnFailureCallback_196, true)); return CHIP_NO_ERROR; @@ -68295,7 +66193,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableBitmap32Argument; nullableBitmap32Argument.SetNonNull(); nullableBitmap32Argument.Value() = 4294967295UL; @@ -68320,8 +66217,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_198, OnFailureCallback_198, true)); return CHIP_NO_ERROR; @@ -68347,7 +66242,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableBitmap32Argument; nullableBitmap32Argument.SetNull(); @@ -68370,8 +66264,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_200, OnFailureCallback_200, true)); return CHIP_NO_ERROR; @@ -68396,7 +66288,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableBitmap64Argument; nullableBitmap64Argument.SetNonNull(); nullableBitmap64Argument.Value() = 18446744073709551614ULL; @@ -68420,8 +66311,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_202, OnFailureCallback_202, true)); return CHIP_NO_ERROR; @@ -68447,7 +66336,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableBitmap64Argument; nullableBitmap64Argument.SetNonNull(); nullableBitmap64Argument.Value() = 18446744073709551615ULL; @@ -68472,8 +66360,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_204, OnFailureCallback_204, true)); return CHIP_NO_ERROR; @@ -68499,7 +66385,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableBitmap64Argument; nullableBitmap64Argument.SetNull(); @@ -68522,8 +66407,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_206, OnFailureCallback_206, true)); return CHIP_NO_ERROR; @@ -68548,7 +66431,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableInt8uArgument; nullableInt8uArgument.SetNonNull(); nullableInt8uArgument.Value() = 0; @@ -68572,8 +66454,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_208, OnFailureCallback_208, true)); return CHIP_NO_ERROR; @@ -68599,7 +66479,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableInt8uArgument; nullableInt8uArgument.SetNonNull(); nullableInt8uArgument.Value() = 254; @@ -68623,8 +66502,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_210, OnFailureCallback_210, true)); return CHIP_NO_ERROR; @@ -68650,7 +66527,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableInt8uArgument; nullableInt8uArgument.SetNonNull(); nullableInt8uArgument.Value() = 255; @@ -68675,8 +66551,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_212, OnFailureCallback_212, true)); return CHIP_NO_ERROR; @@ -68702,8 +66576,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_213, OnFailureCallback_213, true)); return CHIP_NO_ERROR; @@ -68728,7 +66600,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableInt8uArgument; nullableInt8uArgument.SetNull(); @@ -68751,8 +66622,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_215, OnFailureCallback_215, true)); return CHIP_NO_ERROR; @@ -68777,8 +66646,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_216, OnFailureCallback_216, true)); return CHIP_NO_ERROR; @@ -68803,8 +66670,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_217, OnFailureCallback_217, true)); return CHIP_NO_ERROR; @@ -68829,7 +66694,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableInt8uArgument; nullableInt8uArgument.SetNonNull(); nullableInt8uArgument.Value() = 128; @@ -68853,8 +66717,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_219, OnFailureCallback_219, true)); return CHIP_NO_ERROR; @@ -68879,8 +66741,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_220, OnFailureCallback_220, true)); return CHIP_NO_ERROR; @@ -68905,7 +66765,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableInt16uArgument; nullableInt16uArgument.SetNonNull(); nullableInt16uArgument.Value() = 0U; @@ -68929,8 +66788,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_222, OnFailureCallback_222, true)); return CHIP_NO_ERROR; @@ -68956,7 +66813,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableInt16uArgument; nullableInt16uArgument.SetNonNull(); nullableInt16uArgument.Value() = 65534U; @@ -68980,8 +66836,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_224, OnFailureCallback_224, true)); return CHIP_NO_ERROR; @@ -69007,7 +66861,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableInt16uArgument; nullableInt16uArgument.SetNonNull(); nullableInt16uArgument.Value() = 65535U; @@ -69032,8 +66885,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_226, OnFailureCallback_226, true)); return CHIP_NO_ERROR; @@ -69059,7 +66910,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableInt16uArgument; nullableInt16uArgument.SetNull(); @@ -69082,8 +66932,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_228, OnFailureCallback_228, true)); return CHIP_NO_ERROR; @@ -69108,8 +66956,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_229, OnFailureCallback_229, true)); return CHIP_NO_ERROR; @@ -69134,8 +66980,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_230, OnFailureCallback_230, true)); return CHIP_NO_ERROR; @@ -69160,7 +67004,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableInt16uArgument; nullableInt16uArgument.SetNonNull(); nullableInt16uArgument.Value() = 32000U; @@ -69184,8 +67027,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_232, OnFailureCallback_232, true)); return CHIP_NO_ERROR; @@ -69210,8 +67051,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_233, OnFailureCallback_233, true)); return CHIP_NO_ERROR; @@ -69236,7 +67075,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableInt32uArgument; nullableInt32uArgument.SetNonNull(); nullableInt32uArgument.Value() = 0UL; @@ -69260,8 +67098,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_235, OnFailureCallback_235, true)); return CHIP_NO_ERROR; @@ -69287,7 +67123,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableInt32uArgument; nullableInt32uArgument.SetNonNull(); nullableInt32uArgument.Value() = 4294967294UL; @@ -69311,8 +67146,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_237, OnFailureCallback_237, true)); return CHIP_NO_ERROR; @@ -69338,7 +67171,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableInt32uArgument; nullableInt32uArgument.SetNonNull(); nullableInt32uArgument.Value() = 4294967295UL; @@ -69363,8 +67195,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_239, OnFailureCallback_239, true)); return CHIP_NO_ERROR; @@ -69390,7 +67220,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableInt32uArgument; nullableInt32uArgument.SetNull(); @@ -69413,8 +67242,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_241, OnFailureCallback_241, true)); return CHIP_NO_ERROR; @@ -69439,8 +67266,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_242, OnFailureCallback_242, true)); return CHIP_NO_ERROR; @@ -69465,8 +67290,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_243, OnFailureCallback_243, true)); return CHIP_NO_ERROR; @@ -69491,7 +67314,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableInt32uArgument; nullableInt32uArgument.SetNonNull(); nullableInt32uArgument.Value() = 2147483647UL; @@ -69515,8 +67337,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_245, OnFailureCallback_245, true)); return CHIP_NO_ERROR; @@ -69541,8 +67361,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_246, OnFailureCallback_246, true)); return CHIP_NO_ERROR; @@ -69567,7 +67385,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableInt64uArgument; nullableInt64uArgument.SetNonNull(); nullableInt64uArgument.Value() = 0ULL; @@ -69591,8 +67408,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_248, OnFailureCallback_248, true)); return CHIP_NO_ERROR; @@ -69618,7 +67433,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableInt64uArgument; nullableInt64uArgument.SetNonNull(); nullableInt64uArgument.Value() = 18446744073709551614ULL; @@ -69642,8 +67456,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_250, OnFailureCallback_250, true)); return CHIP_NO_ERROR; @@ -69669,7 +67481,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableInt64uArgument; nullableInt64uArgument.SetNonNull(); nullableInt64uArgument.Value() = 18446744073709551615ULL; @@ -69694,8 +67505,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_252, OnFailureCallback_252, true)); return CHIP_NO_ERROR; @@ -69721,7 +67530,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableInt64uArgument; nullableInt64uArgument.SetNull(); @@ -69744,8 +67552,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_254, OnFailureCallback_254, true)); return CHIP_NO_ERROR; @@ -69770,8 +67576,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_255, OnFailureCallback_255, true)); return CHIP_NO_ERROR; @@ -69796,8 +67600,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_256, OnFailureCallback_256, true)); return CHIP_NO_ERROR; @@ -69822,7 +67624,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableInt64uArgument; nullableInt64uArgument.SetNonNull(); nullableInt64uArgument.Value() = 18000000000000000000ULL; @@ -69846,8 +67647,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_258, OnFailureCallback_258, true)); return CHIP_NO_ERROR; @@ -69872,8 +67671,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_259, OnFailureCallback_259, true)); return CHIP_NO_ERROR; @@ -69898,7 +67695,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableInt8sArgument; nullableInt8sArgument.SetNonNull(); nullableInt8sArgument.Value() = -127; @@ -69922,8 +67718,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_261, OnFailureCallback_261, true)); return CHIP_NO_ERROR; @@ -69949,7 +67743,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableInt8sArgument; nullableInt8sArgument.SetNonNull(); nullableInt8sArgument.Value() = -128; @@ -69974,8 +67767,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_263, OnFailureCallback_263, true)); return CHIP_NO_ERROR; @@ -70001,7 +67792,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableInt8sArgument; nullableInt8sArgument.SetNull(); @@ -70024,8 +67814,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_265, OnFailureCallback_265, true)); return CHIP_NO_ERROR; @@ -70050,8 +67838,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_266, OnFailureCallback_266, true)); return CHIP_NO_ERROR; @@ -70076,8 +67862,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_267, OnFailureCallback_267, true)); return CHIP_NO_ERROR; @@ -70102,7 +67886,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableInt8sArgument; nullableInt8sArgument.SetNonNull(); nullableInt8sArgument.Value() = -127; @@ -70126,8 +67909,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_269, OnFailureCallback_269, true)); return CHIP_NO_ERROR; @@ -70152,8 +67933,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_270, OnFailureCallback_270, true)); return CHIP_NO_ERROR; @@ -70178,7 +67957,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableInt16sArgument; nullableInt16sArgument.SetNonNull(); nullableInt16sArgument.Value() = -32767; @@ -70202,8 +67980,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_272, OnFailureCallback_272, true)); return CHIP_NO_ERROR; @@ -70229,7 +68005,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableInt16sArgument; nullableInt16sArgument.SetNonNull(); nullableInt16sArgument.Value() = -32768; @@ -70254,8 +68029,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_274, OnFailureCallback_274, true)); return CHIP_NO_ERROR; @@ -70281,7 +68054,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableInt16sArgument; nullableInt16sArgument.SetNull(); @@ -70304,8 +68076,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_276, OnFailureCallback_276, true)); return CHIP_NO_ERROR; @@ -70330,8 +68100,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_277, OnFailureCallback_277, true)); return CHIP_NO_ERROR; @@ -70356,8 +68124,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_278, OnFailureCallback_278, true)); return CHIP_NO_ERROR; @@ -70382,7 +68148,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableInt16sArgument; nullableInt16sArgument.SetNonNull(); nullableInt16sArgument.Value() = -32767; @@ -70406,8 +68171,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_280, OnFailureCallback_280, true)); return CHIP_NO_ERROR; @@ -70432,8 +68195,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_281, OnFailureCallback_281, true)); return CHIP_NO_ERROR; @@ -70458,7 +68219,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableInt32sArgument; nullableInt32sArgument.SetNonNull(); nullableInt32sArgument.Value() = -2147483647L; @@ -70482,8 +68242,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_283, OnFailureCallback_283, true)); return CHIP_NO_ERROR; @@ -70509,7 +68267,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableInt32sArgument; nullableInt32sArgument.SetNonNull(); nullableInt32sArgument.Value() = -2147483648L; @@ -70534,8 +68291,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_285, OnFailureCallback_285, true)); return CHIP_NO_ERROR; @@ -70561,7 +68316,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableInt32sArgument; nullableInt32sArgument.SetNull(); @@ -70584,8 +68338,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_287, OnFailureCallback_287, true)); return CHIP_NO_ERROR; @@ -70610,8 +68362,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_288, OnFailureCallback_288, true)); return CHIP_NO_ERROR; @@ -70636,8 +68386,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_289, OnFailureCallback_289, true)); return CHIP_NO_ERROR; @@ -70662,7 +68410,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableInt32sArgument; nullableInt32sArgument.SetNonNull(); nullableInt32sArgument.Value() = -2147483647L; @@ -70686,8 +68433,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_291, OnFailureCallback_291, true)); return CHIP_NO_ERROR; @@ -70712,8 +68457,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_292, OnFailureCallback_292, true)); return CHIP_NO_ERROR; @@ -70738,7 +68481,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableInt64sArgument; nullableInt64sArgument.SetNonNull(); nullableInt64sArgument.Value() = -9223372036854775807LL; @@ -70762,8 +68504,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_294, OnFailureCallback_294, true)); return CHIP_NO_ERROR; @@ -70789,7 +68529,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableInt64sArgument; nullableInt64sArgument.SetNonNull(); nullableInt64sArgument.Value() = -9223372036854775807LL - 1; @@ -70814,8 +68553,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_296, OnFailureCallback_296, true)); return CHIP_NO_ERROR; @@ -70841,7 +68578,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableInt64sArgument; nullableInt64sArgument.SetNull(); @@ -70864,8 +68600,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_298, OnFailureCallback_298, true)); return CHIP_NO_ERROR; @@ -70890,8 +68624,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_299, OnFailureCallback_299, true)); return CHIP_NO_ERROR; @@ -70916,8 +68648,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_300, OnFailureCallback_300, true)); return CHIP_NO_ERROR; @@ -70942,7 +68672,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableInt64sArgument; nullableInt64sArgument.SetNonNull(); nullableInt64sArgument.Value() = -9223372036854775807LL; @@ -70966,8 +68695,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_302, OnFailureCallback_302, true)); return CHIP_NO_ERROR; @@ -70992,8 +68719,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_303, OnFailureCallback_303, true)); return CHIP_NO_ERROR; @@ -71018,7 +68743,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableFloatSingleArgument; nullableFloatSingleArgument.SetNonNull(); nullableFloatSingleArgument.Value() = 0.1f; @@ -71042,8 +68766,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_305, OnFailureCallback_305, true)); return CHIP_NO_ERROR; @@ -71069,7 +68791,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableFloatSingleArgument; nullableFloatSingleArgument.SetNonNull(); nullableFloatSingleArgument.Value() = INFINITY; @@ -71093,8 +68814,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_307, OnFailureCallback_307, true)); return CHIP_NO_ERROR; @@ -71120,7 +68839,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableFloatSingleArgument; nullableFloatSingleArgument.SetNonNull(); nullableFloatSingleArgument.Value() = -INFINITY; @@ -71144,8 +68862,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_309, OnFailureCallback_309, true)); return CHIP_NO_ERROR; @@ -71171,7 +68887,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableFloatSingleArgument; nullableFloatSingleArgument.SetNull(); @@ -71194,8 +68909,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_311, OnFailureCallback_311, true)); return CHIP_NO_ERROR; @@ -71220,7 +68933,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableFloatSingleArgument; nullableFloatSingleArgument.SetNonNull(); nullableFloatSingleArgument.Value() = 0.0f; @@ -71244,8 +68956,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_313, OnFailureCallback_313, true)); return CHIP_NO_ERROR; @@ -71271,7 +68981,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableFloatDoubleArgument; nullableFloatDoubleArgument.SetNonNull(); nullableFloatDoubleArgument.Value() = 0.1234567890123; @@ -71295,8 +69004,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_315, OnFailureCallback_315, true)); return CHIP_NO_ERROR; @@ -71322,7 +69029,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableFloatDoubleArgument; nullableFloatDoubleArgument.SetNonNull(); nullableFloatDoubleArgument.Value() = INFINITY; @@ -71346,8 +69052,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_317, OnFailureCallback_317, true)); return CHIP_NO_ERROR; @@ -71373,7 +69077,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableFloatDoubleArgument; nullableFloatDoubleArgument.SetNonNull(); nullableFloatDoubleArgument.Value() = -INFINITY; @@ -71397,8 +69100,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_319, OnFailureCallback_319, true)); return CHIP_NO_ERROR; @@ -71424,7 +69125,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableFloatDoubleArgument; nullableFloatDoubleArgument.SetNull(); @@ -71447,8 +69147,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_321, OnFailureCallback_321, true)); return CHIP_NO_ERROR; @@ -71473,7 +69171,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableFloatDoubleArgument; nullableFloatDoubleArgument.SetNonNull(); nullableFloatDoubleArgument.Value() = 0; @@ -71497,8 +69194,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_323, OnFailureCallback_323, true)); return CHIP_NO_ERROR; @@ -71524,7 +69219,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableEnum8Argument; nullableEnum8Argument.SetNonNull(); nullableEnum8Argument.Value() = 0; @@ -71548,8 +69242,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_325, OnFailureCallback_325, true)); return CHIP_NO_ERROR; @@ -71575,7 +69267,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableEnum8Argument; nullableEnum8Argument.SetNonNull(); nullableEnum8Argument.Value() = 254; @@ -71599,8 +69290,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_327, OnFailureCallback_327, true)); return CHIP_NO_ERROR; @@ -71626,7 +69315,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableEnum8Argument; nullableEnum8Argument.SetNonNull(); nullableEnum8Argument.Value() = 255; @@ -71651,8 +69339,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_329, OnFailureCallback_329, true)); return CHIP_NO_ERROR; @@ -71678,7 +69364,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableEnum8Argument; nullableEnum8Argument.SetNull(); @@ -71701,8 +69386,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_331, OnFailureCallback_331, true)); return CHIP_NO_ERROR; @@ -71727,7 +69410,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableEnum16Argument; nullableEnum16Argument.SetNonNull(); nullableEnum16Argument.Value() = 0U; @@ -71751,8 +69433,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_333, OnFailureCallback_333, true)); return CHIP_NO_ERROR; @@ -71778,7 +69458,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableEnum16Argument; nullableEnum16Argument.SetNonNull(); nullableEnum16Argument.Value() = 65534U; @@ -71802,8 +69481,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_335, OnFailureCallback_335, true)); return CHIP_NO_ERROR; @@ -71829,7 +69506,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableEnum16Argument; nullableEnum16Argument.SetNonNull(); nullableEnum16Argument.Value() = 65535U; @@ -71854,8 +69530,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_337, OnFailureCallback_337, true)); return CHIP_NO_ERROR; @@ -71881,7 +69555,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableEnum16Argument; nullableEnum16Argument.SetNull(); @@ -71904,8 +69577,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_339, OnFailureCallback_339, true)); return CHIP_NO_ERROR; @@ -71930,7 +69601,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableEnumAttrArgument; nullableEnumAttrArgument.SetNonNull(); nullableEnumAttrArgument.Value() = static_cast(0); @@ -71954,8 +69624,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_341, OnFailureCallback_341, true)); return CHIP_NO_ERROR; @@ -71982,7 +69650,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableEnumAttrArgument; nullableEnumAttrArgument.SetNonNull(); nullableEnumAttrArgument.Value() = static_cast(254); @@ -72006,8 +69673,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_343, OnFailureCallback_343, true)); return CHIP_NO_ERROR; @@ -72034,7 +69699,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableEnumAttrArgument; nullableEnumAttrArgument.SetNonNull(); nullableEnumAttrArgument.Value() = static_cast(255); @@ -72059,8 +69723,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_345, OnFailureCallback_345, true)); return CHIP_NO_ERROR; @@ -72087,7 +69749,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableEnumAttrArgument; nullableEnumAttrArgument.SetNull(); @@ -72110,8 +69771,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_347, OnFailureCallback_347, true)); return CHIP_NO_ERROR; @@ -72137,8 +69796,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_348, OnFailureCallback_348, true)); return CHIP_NO_ERROR; @@ -72165,7 +69822,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableOctetStringArgument; nullableOctetStringArgument.SetNonNull(); nullableOctetStringArgument.Value() = @@ -72190,8 +69846,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_350, OnFailureCallback_350, true)); return CHIP_NO_ERROR; @@ -72218,7 +69872,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableOctetStringArgument; nullableOctetStringArgument.SetNull(); @@ -72241,8 +69894,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_352, OnFailureCallback_352, true)); return CHIP_NO_ERROR; @@ -72267,7 +69918,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableOctetStringArgument; nullableOctetStringArgument.SetNonNull(); nullableOctetStringArgument.Value() = chip::ByteSpan(chip::Uint8::from_const_char("garbage: not in length on purpose"), 0); @@ -72291,8 +69941,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_354, OnFailureCallback_354, true)); return CHIP_NO_ERROR; @@ -72319,8 +69967,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_355, OnFailureCallback_355, true)); return CHIP_NO_ERROR; @@ -72346,7 +69992,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableCharStringArgument; nullableCharStringArgument.SetNonNull(); nullableCharStringArgument.Value() = chip::Span("☉T☉garbage: not in length on purpose", 7); @@ -72370,8 +70015,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_357, OnFailureCallback_357, true)); return CHIP_NO_ERROR; @@ -72397,7 +70040,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableCharStringArgument; nullableCharStringArgument.SetNull(); @@ -72420,8 +70062,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_359, OnFailureCallback_359, true)); return CHIP_NO_ERROR; @@ -72446,7 +70086,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableCharStringArgument; nullableCharStringArgument.SetNonNull(); nullableCharStringArgument.Value() = chip::Span("garbage: not in length on purpose", 0); @@ -72470,8 +70109,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_361, OnFailureCallback_361, true)); return CHIP_NO_ERROR; @@ -72497,8 +70134,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_362, OnFailureCallback_362, true)); return CHIP_NO_ERROR; @@ -72519,8 +70154,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_363, OnFailureCallback_363, true)); return CHIP_NO_ERROR; @@ -72540,7 +70173,6 @@ class TestCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::TestCluster::Commands::TestSimpleOptionalArgumentRequest::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -72569,7 +70201,6 @@ class TestCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::TestCluster::Commands::TestSimpleOptionalArgumentRequest::Type; - ListFreer listFreer; RequestType request; request.arg1.Emplace(); request.arg1.Value() = 1; @@ -72600,8 +70231,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - mTest_TestCluster_list_int8u_Reported = OnSuccessCallback_366; return WaitForMs(0); } @@ -72636,7 +70265,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t minIntervalArgument; minIntervalArgument = 2U; uint16_t maxIntervalArgument; @@ -72708,8 +70336,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - mTest_TestCluster_list_int8u_Reported = OnSuccessCallback_369; return CHIP_NO_ERROR; } @@ -72746,8 +70372,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_370, OnFailureCallback_370, true)); return CHIP_NO_ERROR; @@ -72772,7 +70396,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t rangeRestrictedInt8uArgument; rangeRestrictedInt8uArgument = 0; @@ -72796,7 +70419,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t rangeRestrictedInt8uArgument; rangeRestrictedInt8uArgument = 19; @@ -72820,7 +70442,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t rangeRestrictedInt8uArgument; rangeRestrictedInt8uArgument = 101; @@ -72844,7 +70465,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t rangeRestrictedInt8uArgument; rangeRestrictedInt8uArgument = 255; @@ -72868,8 +70488,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_375, OnFailureCallback_375, true)); return CHIP_NO_ERROR; @@ -72894,7 +70512,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t rangeRestrictedInt8uArgument; rangeRestrictedInt8uArgument = 20; @@ -72917,8 +70534,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_377, OnFailureCallback_377, true)); return CHIP_NO_ERROR; @@ -72943,7 +70558,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t rangeRestrictedInt8uArgument; rangeRestrictedInt8uArgument = 100; @@ -72966,8 +70580,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_379, OnFailureCallback_379, true)); return CHIP_NO_ERROR; @@ -72992,7 +70604,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t rangeRestrictedInt8uArgument; rangeRestrictedInt8uArgument = 50; @@ -73015,8 +70626,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_381, OnFailureCallback_381, true)); return CHIP_NO_ERROR; @@ -73041,8 +70650,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_382, OnFailureCallback_382, true)); return CHIP_NO_ERROR; @@ -73067,7 +70674,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t rangeRestrictedInt16uArgument; rangeRestrictedInt16uArgument = 0U; @@ -73091,7 +70697,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t rangeRestrictedInt16uArgument; rangeRestrictedInt16uArgument = 99U; @@ -73115,7 +70720,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t rangeRestrictedInt16uArgument; rangeRestrictedInt16uArgument = 1001U; @@ -73139,7 +70743,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t rangeRestrictedInt16uArgument; rangeRestrictedInt16uArgument = 65535U; @@ -73163,8 +70766,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_387, OnFailureCallback_387, true)); return CHIP_NO_ERROR; @@ -73189,7 +70790,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t rangeRestrictedInt16uArgument; rangeRestrictedInt16uArgument = 100U; @@ -73212,8 +70812,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_389, OnFailureCallback_389, true)); return CHIP_NO_ERROR; @@ -73238,7 +70836,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t rangeRestrictedInt16uArgument; rangeRestrictedInt16uArgument = 1000U; @@ -73261,8 +70858,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_391, OnFailureCallback_391, true)); return CHIP_NO_ERROR; @@ -73287,7 +70882,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t rangeRestrictedInt16uArgument; rangeRestrictedInt16uArgument = 500U; @@ -73310,8 +70904,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_393, OnFailureCallback_393, true)); return CHIP_NO_ERROR; @@ -73336,8 +70928,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_394, OnFailureCallback_394, true)); return CHIP_NO_ERROR; @@ -73362,7 +70952,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int8_t rangeRestrictedInt8sArgument; rangeRestrictedInt8sArgument = -128; @@ -73386,7 +70975,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int8_t rangeRestrictedInt8sArgument; rangeRestrictedInt8sArgument = -41; @@ -73410,7 +70998,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int8_t rangeRestrictedInt8sArgument; rangeRestrictedInt8sArgument = 51; @@ -73434,7 +71021,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int8_t rangeRestrictedInt8sArgument; rangeRestrictedInt8sArgument = 127; @@ -73458,8 +71044,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_399, OnFailureCallback_399, true)); return CHIP_NO_ERROR; @@ -73484,7 +71068,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int8_t rangeRestrictedInt8sArgument; rangeRestrictedInt8sArgument = -40; @@ -73507,8 +71090,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_401, OnFailureCallback_401, true)); return CHIP_NO_ERROR; @@ -73533,7 +71114,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int8_t rangeRestrictedInt8sArgument; rangeRestrictedInt8sArgument = 50; @@ -73556,8 +71136,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_403, OnFailureCallback_403, true)); return CHIP_NO_ERROR; @@ -73582,7 +71160,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int8_t rangeRestrictedInt8sArgument; rangeRestrictedInt8sArgument = 6; @@ -73605,8 +71182,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_405, OnFailureCallback_405, true)); return CHIP_NO_ERROR; @@ -73631,8 +71206,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_406, OnFailureCallback_406, true)); return CHIP_NO_ERROR; @@ -73657,7 +71230,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t rangeRestrictedInt16sArgument; rangeRestrictedInt16sArgument = -32768; @@ -73681,7 +71253,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t rangeRestrictedInt16sArgument; rangeRestrictedInt16sArgument = -151; @@ -73705,7 +71276,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t rangeRestrictedInt16sArgument; rangeRestrictedInt16sArgument = 201; @@ -73729,7 +71299,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t rangeRestrictedInt16sArgument; rangeRestrictedInt16sArgument = 32767; @@ -73753,8 +71322,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_411, OnFailureCallback_411, true)); return CHIP_NO_ERROR; @@ -73779,7 +71346,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t rangeRestrictedInt16sArgument; rangeRestrictedInt16sArgument = -150; @@ -73802,8 +71368,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_413, OnFailureCallback_413, true)); return CHIP_NO_ERROR; @@ -73828,7 +71392,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t rangeRestrictedInt16sArgument; rangeRestrictedInt16sArgument = 200; @@ -73851,8 +71414,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_415, OnFailureCallback_415, true)); return CHIP_NO_ERROR; @@ -73877,7 +71438,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t rangeRestrictedInt16sArgument; rangeRestrictedInt16sArgument = 7; @@ -73900,8 +71460,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_417, OnFailureCallback_417, true)); return CHIP_NO_ERROR; @@ -73926,8 +71484,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_418, OnFailureCallback_418, true)); @@ -73954,7 +71510,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableRangeRestrictedInt8uArgument; nullableRangeRestrictedInt8uArgument.SetNonNull(); nullableRangeRestrictedInt8uArgument.Value() = 0; @@ -73980,7 +71535,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableRangeRestrictedInt8uArgument; nullableRangeRestrictedInt8uArgument.SetNonNull(); nullableRangeRestrictedInt8uArgument.Value() = 19; @@ -74006,7 +71560,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableRangeRestrictedInt8uArgument; nullableRangeRestrictedInt8uArgument.SetNonNull(); nullableRangeRestrictedInt8uArgument.Value() = 101; @@ -74032,7 +71585,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableRangeRestrictedInt8uArgument; nullableRangeRestrictedInt8uArgument.SetNonNull(); nullableRangeRestrictedInt8uArgument.Value() = 254; @@ -74058,8 +71610,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_423, OnFailureCallback_423, true)); @@ -74086,7 +71636,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableRangeRestrictedInt8uArgument; nullableRangeRestrictedInt8uArgument.SetNonNull(); nullableRangeRestrictedInt8uArgument.Value() = 20; @@ -74111,8 +71660,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_425, OnFailureCallback_425, true)); @@ -74139,7 +71686,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableRangeRestrictedInt8uArgument; nullableRangeRestrictedInt8uArgument.SetNonNull(); nullableRangeRestrictedInt8uArgument.Value() = 100; @@ -74164,8 +71710,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_427, OnFailureCallback_427, true)); @@ -74192,7 +71736,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableRangeRestrictedInt8uArgument; nullableRangeRestrictedInt8uArgument.SetNonNull(); nullableRangeRestrictedInt8uArgument.Value() = 50; @@ -74217,8 +71760,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_429, OnFailureCallback_429, true)); @@ -74245,7 +71786,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableRangeRestrictedInt8uArgument; nullableRangeRestrictedInt8uArgument.SetNull(); @@ -74269,8 +71809,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_431, OnFailureCallback_431, true)); @@ -74296,8 +71834,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_432, OnFailureCallback_432, true)); @@ -74324,7 +71860,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableRangeRestrictedInt16uArgument; nullableRangeRestrictedInt16uArgument.SetNonNull(); nullableRangeRestrictedInt16uArgument.Value() = 0U; @@ -74350,7 +71885,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableRangeRestrictedInt16uArgument; nullableRangeRestrictedInt16uArgument.SetNonNull(); nullableRangeRestrictedInt16uArgument.Value() = 99U; @@ -74376,7 +71910,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableRangeRestrictedInt16uArgument; nullableRangeRestrictedInt16uArgument.SetNonNull(); nullableRangeRestrictedInt16uArgument.Value() = 1001U; @@ -74402,7 +71935,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableRangeRestrictedInt16uArgument; nullableRangeRestrictedInt16uArgument.SetNonNull(); nullableRangeRestrictedInt16uArgument.Value() = 65534U; @@ -74428,8 +71960,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_437, OnFailureCallback_437, true)); @@ -74456,7 +71986,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableRangeRestrictedInt16uArgument; nullableRangeRestrictedInt16uArgument.SetNonNull(); nullableRangeRestrictedInt16uArgument.Value() = 100U; @@ -74481,8 +72010,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_439, OnFailureCallback_439, true)); @@ -74509,7 +72036,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableRangeRestrictedInt16uArgument; nullableRangeRestrictedInt16uArgument.SetNonNull(); nullableRangeRestrictedInt16uArgument.Value() = 1000U; @@ -74534,8 +72060,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_441, OnFailureCallback_441, true)); @@ -74562,7 +72086,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableRangeRestrictedInt16uArgument; nullableRangeRestrictedInt16uArgument.SetNonNull(); nullableRangeRestrictedInt16uArgument.Value() = 500U; @@ -74587,8 +72110,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_443, OnFailureCallback_443, true)); @@ -74615,7 +72136,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableRangeRestrictedInt16uArgument; nullableRangeRestrictedInt16uArgument.SetNull(); @@ -74639,8 +72159,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_445, OnFailureCallback_445, true)); @@ -74666,8 +72184,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_446, OnFailureCallback_446, true)); @@ -74694,7 +72210,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableRangeRestrictedInt8sArgument; nullableRangeRestrictedInt8sArgument.SetNonNull(); nullableRangeRestrictedInt8sArgument.Value() = -127; @@ -74720,7 +72235,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableRangeRestrictedInt8sArgument; nullableRangeRestrictedInt8sArgument.SetNonNull(); nullableRangeRestrictedInt8sArgument.Value() = -41; @@ -74746,7 +72260,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableRangeRestrictedInt8sArgument; nullableRangeRestrictedInt8sArgument.SetNonNull(); nullableRangeRestrictedInt8sArgument.Value() = 51; @@ -74772,7 +72285,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableRangeRestrictedInt8sArgument; nullableRangeRestrictedInt8sArgument.SetNonNull(); nullableRangeRestrictedInt8sArgument.Value() = 127; @@ -74798,8 +72310,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_451, OnFailureCallback_451, true)); @@ -74826,7 +72336,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableRangeRestrictedInt8sArgument; nullableRangeRestrictedInt8sArgument.SetNonNull(); nullableRangeRestrictedInt8sArgument.Value() = -40; @@ -74851,8 +72360,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_453, OnFailureCallback_453, true)); @@ -74879,7 +72386,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableRangeRestrictedInt8sArgument; nullableRangeRestrictedInt8sArgument.SetNonNull(); nullableRangeRestrictedInt8sArgument.Value() = 50; @@ -74904,8 +72410,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_455, OnFailureCallback_455, true)); @@ -74932,7 +72436,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableRangeRestrictedInt8sArgument; nullableRangeRestrictedInt8sArgument.SetNonNull(); nullableRangeRestrictedInt8sArgument.Value() = 6; @@ -74957,8 +72460,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_457, OnFailureCallback_457, true)); @@ -74985,7 +72486,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableRangeRestrictedInt8sArgument; nullableRangeRestrictedInt8sArgument.SetNull(); @@ -75009,8 +72509,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_459, OnFailureCallback_459, true)); @@ -75036,8 +72534,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_460, OnFailureCallback_460, true)); @@ -75064,7 +72560,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableRangeRestrictedInt16sArgument; nullableRangeRestrictedInt16sArgument.SetNonNull(); nullableRangeRestrictedInt16sArgument.Value() = -32767; @@ -75090,7 +72585,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableRangeRestrictedInt16sArgument; nullableRangeRestrictedInt16sArgument.SetNonNull(); nullableRangeRestrictedInt16sArgument.Value() = -151; @@ -75116,7 +72610,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableRangeRestrictedInt16sArgument; nullableRangeRestrictedInt16sArgument.SetNonNull(); nullableRangeRestrictedInt16sArgument.Value() = 201; @@ -75142,7 +72635,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableRangeRestrictedInt16sArgument; nullableRangeRestrictedInt16sArgument.SetNonNull(); nullableRangeRestrictedInt16sArgument.Value() = 32767; @@ -75168,8 +72660,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_465, OnFailureCallback_465, true)); @@ -75196,7 +72686,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableRangeRestrictedInt16sArgument; nullableRangeRestrictedInt16sArgument.SetNonNull(); nullableRangeRestrictedInt16sArgument.Value() = -150; @@ -75221,8 +72710,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_467, OnFailureCallback_467, true)); @@ -75249,7 +72736,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableRangeRestrictedInt16sArgument; nullableRangeRestrictedInt16sArgument.SetNonNull(); nullableRangeRestrictedInt16sArgument.Value() = 200; @@ -75274,8 +72760,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_469, OnFailureCallback_469, true)); @@ -75302,7 +72786,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableRangeRestrictedInt16sArgument; nullableRangeRestrictedInt16sArgument.SetNonNull(); nullableRangeRestrictedInt16sArgument.Value() = 7; @@ -75327,8 +72810,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_471, OnFailureCallback_471, true)); @@ -75355,7 +72836,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::DataModel::Nullable nullableRangeRestrictedInt16sArgument; nullableRangeRestrictedInt16sArgument.SetNull(); @@ -75379,8 +72859,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_473, OnFailureCallback_473, true)); @@ -75406,7 +72884,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; bool generalErrorBooleanArgument; generalErrorBooleanArgument = false; @@ -75430,7 +72907,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; bool clusterErrorBooleanArgument; clusterErrorBooleanArgument = false; @@ -75454,8 +72930,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_476, OnFailureCallback_476, true)); return CHIP_NO_ERROR; @@ -75476,8 +72950,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_477, OnFailureCallback_477, true)); return CHIP_NO_ERROR; @@ -75498,8 +72970,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_478, OnFailureCallback_478, true)); @@ -75572,8 +73042,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_479, OnFailureCallback_479, true)); @@ -75618,7 +73086,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::app::Clusters::TestCluster::Structs::SimpleStruct::Type structAttrArgument; structAttrArgument.a = 5; @@ -75649,8 +73116,6 @@ class TestCluster : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_481, OnFailureCallback_481, true)); return CHIP_NO_ERROR; @@ -75963,7 +73428,6 @@ class TestClusterComplexTypes : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::TestCluster::Commands::TestNullableOptionalRequest::Type; - ListFreer listFreer; RequestType request; request.arg1.Emplace(); request.arg1.Value().SetNull(); @@ -76006,7 +73470,6 @@ class TestClusterComplexTypes : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::TestCluster::Commands::TimedInvokeRequest::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -76036,7 +73499,6 @@ class TestClusterComplexTypes : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::TestCluster::Commands::TimedInvokeRequest::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -76065,7 +73527,6 @@ class TestClusterComplexTypes : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::TestCluster::Commands::TimedInvokeRequest::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -76103,7 +73564,6 @@ class TestClusterComplexTypes : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::TestCluster::Commands::Test::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -76132,7 +73592,6 @@ class TestClusterComplexTypes : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::TestCluster::Commands::Test::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -76171,8 +73630,6 @@ class TestClusterComplexTypes : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_7, OnFailureCallback_7, true)); return CHIP_NO_ERROR; @@ -76197,7 +73654,6 @@ class TestClusterComplexTypes : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; bool timedWriteBooleanArgument; timedWriteBooleanArgument = true; @@ -76221,8 +73677,6 @@ class TestClusterComplexTypes : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_9, OnFailureCallback_9, true)); return CHIP_NO_ERROR; @@ -76247,7 +73701,6 @@ class TestClusterComplexTypes : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; bool timedWriteBooleanArgument; timedWriteBooleanArgument = true; @@ -76279,8 +73732,6 @@ class TestClusterComplexTypes : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_11, OnFailureCallback_11, true)); return CHIP_NO_ERROR; @@ -76305,7 +73756,6 @@ class TestClusterComplexTypes : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; bool timedWriteBooleanArgument; timedWriteBooleanArgument = true; @@ -76328,8 +73778,6 @@ class TestClusterComplexTypes : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_13, OnFailureCallback_13, true)); return CHIP_NO_ERROR; @@ -76354,7 +73802,6 @@ class TestClusterComplexTypes : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; bool timedWriteBooleanArgument; timedWriteBooleanArgument = false; @@ -76377,8 +73824,6 @@ class TestClusterComplexTypes : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_15, OnFailureCallback_15, true)); return CHIP_NO_ERROR; @@ -76403,7 +73848,6 @@ class TestClusterComplexTypes : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; bool booleanArgument; booleanArgument = true; @@ -76435,8 +73879,6 @@ class TestClusterComplexTypes : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_17, OnFailureCallback_17, true)); return CHIP_NO_ERROR; @@ -76461,7 +73903,6 @@ class TestClusterComplexTypes : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; bool booleanArgument; booleanArgument = true; @@ -76484,8 +73925,6 @@ class TestClusterComplexTypes : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_19, OnFailureCallback_19, true)); return CHIP_NO_ERROR; @@ -76510,7 +73949,6 @@ class TestClusterComplexTypes : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; bool booleanArgument; booleanArgument = false; @@ -76880,7 +74318,6 @@ class TestConstraints : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint32_t int32uArgument; int32uArgument = 5UL; @@ -76903,8 +74340,6 @@ class TestConstraints : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -76928,8 +74363,6 @@ class TestConstraints : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_3, OnFailureCallback_3, true)); return CHIP_NO_ERROR; @@ -76953,8 +74386,6 @@ class TestConstraints : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_4, OnFailureCallback_4, true)); return CHIP_NO_ERROR; @@ -76979,7 +74410,6 @@ class TestConstraints : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint32_t int32uArgument; int32uArgument = 0UL; @@ -77002,7 +74432,6 @@ class TestConstraints : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::CharSpan charStringArgument; charStringArgument = chip::Span("** Test **garbage: not in length on purpose", 10); @@ -77025,8 +74454,6 @@ class TestConstraints : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_7, OnFailureCallback_7, true)); return CHIP_NO_ERROR; @@ -77050,8 +74477,6 @@ class TestConstraints : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_8, OnFailureCallback_8, true)); return CHIP_NO_ERROR; @@ -77075,8 +74500,6 @@ class TestConstraints : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_9, OnFailureCallback_9, true)); return CHIP_NO_ERROR; @@ -77100,8 +74523,6 @@ class TestConstraints : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_10, OnFailureCallback_10, true)); return CHIP_NO_ERROR; @@ -77125,7 +74546,6 @@ class TestConstraints : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::CharSpan charStringArgument; charStringArgument = chip::Span("lowercasegarbage: not in length on purpose", 9); @@ -77148,8 +74568,6 @@ class TestConstraints : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_12, OnFailureCallback_12, true)); return CHIP_NO_ERROR; @@ -77174,7 +74592,6 @@ class TestConstraints : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::CharSpan charStringArgument; charStringArgument = chip::Span("UPPERCASEgarbage: not in length on purpose", 9); @@ -77197,8 +74614,6 @@ class TestConstraints : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_14, OnFailureCallback_14, true)); return CHIP_NO_ERROR; @@ -77223,7 +74638,6 @@ class TestConstraints : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::CharSpan charStringArgument; charStringArgument = chip::Span("lowUPPERgarbage: not in length on purpose", 8); @@ -77246,8 +74660,6 @@ class TestConstraints : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_16, OnFailureCallback_16, true)); return CHIP_NO_ERROR; @@ -77272,7 +74684,6 @@ class TestConstraints : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::CharSpan charStringArgument; charStringArgument = chip::Span("ABCDEF012Vgarbage: not in length on purpose", 10); @@ -77295,8 +74706,6 @@ class TestConstraints : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_18, OnFailureCallback_18, true)); return CHIP_NO_ERROR; @@ -77320,7 +74729,6 @@ class TestConstraints : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::CharSpan charStringArgument; charStringArgument = chip::Span("ABCDEF0123garbage: not in length on purpose", 10); @@ -77343,8 +74751,6 @@ class TestConstraints : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_20, OnFailureCallback_20, true)); return CHIP_NO_ERROR; @@ -77368,7 +74774,6 @@ class TestConstraints : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::CharSpan charStringArgument; charStringArgument = chip::Span("garbage: not in length on purpose", 0); @@ -79078,7 +76483,6 @@ class TestSaveAs : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::TestCluster::Commands::TestAddArguments::Type; - ListFreer listFreer; RequestType request; request.arg1 = 3; request.arg2 = 17; @@ -79112,7 +76516,6 @@ class TestSaveAs : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::TestCluster::Commands::TestAddArguments::Type; - ListFreer listFreer; RequestType request; request.arg1 = 3; request.arg2 = 17; @@ -79145,7 +76548,6 @@ class TestSaveAs : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::TestCluster::Commands::TestAddArguments::Type; - ListFreer listFreer; RequestType request; request.arg1 = 3; request.arg2 = TestAddArgumentDefaultValue; @@ -79179,8 +76581,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_4, OnFailureCallback_4, true)); return CHIP_NO_ERROR; @@ -79206,7 +76606,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; bool booleanArgument; booleanArgument = 1; @@ -79229,8 +76628,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_6, OnFailureCallback_6, true)); return CHIP_NO_ERROR; @@ -79255,7 +76652,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; bool booleanArgument; booleanArgument = readAttributeBooleanDefaultValue; @@ -79278,8 +76674,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_8, OnFailureCallback_8, true)); return CHIP_NO_ERROR; @@ -79304,8 +76698,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_9, OnFailureCallback_9, true)); return CHIP_NO_ERROR; @@ -79331,7 +76723,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t bitmap8Argument; bitmap8Argument = 1; @@ -79354,8 +76745,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_11, OnFailureCallback_11, true)); return CHIP_NO_ERROR; @@ -79380,7 +76769,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t bitmap8Argument; bitmap8Argument = readAttributeBitmap8DefaultValue; @@ -79403,8 +76791,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_13, OnFailureCallback_13, true)); return CHIP_NO_ERROR; @@ -79429,8 +76815,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_14, OnFailureCallback_14, true)); return CHIP_NO_ERROR; @@ -79456,7 +76840,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t bitmap16Argument; bitmap16Argument = 1U; @@ -79479,8 +76862,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_16, OnFailureCallback_16, true)); return CHIP_NO_ERROR; @@ -79505,7 +76886,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t bitmap16Argument; bitmap16Argument = readAttributeBitmap16DefaultValue; @@ -79528,8 +76908,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_18, OnFailureCallback_18, true)); return CHIP_NO_ERROR; @@ -79554,8 +76932,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_19, OnFailureCallback_19, true)); return CHIP_NO_ERROR; @@ -79581,7 +76957,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint32_t bitmap32Argument; bitmap32Argument = 1UL; @@ -79604,8 +76979,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_21, OnFailureCallback_21, true)); return CHIP_NO_ERROR; @@ -79630,7 +77003,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint32_t bitmap32Argument; bitmap32Argument = readAttributeBitmap32DefaultValue; @@ -79653,8 +77025,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_23, OnFailureCallback_23, true)); return CHIP_NO_ERROR; @@ -79679,8 +77049,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_24, OnFailureCallback_24, true)); return CHIP_NO_ERROR; @@ -79706,7 +77074,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint64_t bitmap64Argument; bitmap64Argument = 1ULL; @@ -79729,8 +77096,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_26, OnFailureCallback_26, true)); return CHIP_NO_ERROR; @@ -79755,7 +77120,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint64_t bitmap64Argument; bitmap64Argument = readAttributeBitmap64DefaultValue; @@ -79778,8 +77142,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_28, OnFailureCallback_28, true)); return CHIP_NO_ERROR; @@ -79804,8 +77166,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_29, OnFailureCallback_29, true)); return CHIP_NO_ERROR; @@ -79831,7 +77191,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t int8uArgument; int8uArgument = 1; @@ -79854,8 +77213,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_31, OnFailureCallback_31, true)); return CHIP_NO_ERROR; @@ -79880,7 +77237,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t int8uArgument; int8uArgument = readAttributeInt8uDefaultValue; @@ -79903,8 +77259,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_33, OnFailureCallback_33, true)); return CHIP_NO_ERROR; @@ -79929,8 +77283,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_34, OnFailureCallback_34, true)); return CHIP_NO_ERROR; @@ -79956,7 +77308,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t int16uArgument; int16uArgument = 1U; @@ -79979,8 +77330,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_36, OnFailureCallback_36, true)); return CHIP_NO_ERROR; @@ -80005,7 +77354,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t int16uArgument; int16uArgument = readAttributeInt16uDefaultValue; @@ -80028,8 +77376,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_38, OnFailureCallback_38, true)); return CHIP_NO_ERROR; @@ -80054,8 +77400,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_39, OnFailureCallback_39, true)); return CHIP_NO_ERROR; @@ -80081,7 +77425,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint32_t int32uArgument; int32uArgument = 1UL; @@ -80104,8 +77447,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_41, OnFailureCallback_41, true)); return CHIP_NO_ERROR; @@ -80130,7 +77471,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint32_t int32uArgument; int32uArgument = readAttributeInt32uDefaultValue; @@ -80153,8 +77493,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_43, OnFailureCallback_43, true)); return CHIP_NO_ERROR; @@ -80179,8 +77517,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_44, OnFailureCallback_44, true)); return CHIP_NO_ERROR; @@ -80206,7 +77542,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint64_t int64uArgument; int64uArgument = 1ULL; @@ -80229,8 +77564,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_46, OnFailureCallback_46, true)); return CHIP_NO_ERROR; @@ -80255,7 +77588,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint64_t int64uArgument; int64uArgument = readAttributeInt64uDefaultValue; @@ -80278,8 +77610,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_48, OnFailureCallback_48, true)); return CHIP_NO_ERROR; @@ -80304,8 +77634,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_49, OnFailureCallback_49, true)); return CHIP_NO_ERROR; @@ -80331,7 +77659,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int8_t int8sArgument; int8sArgument = 1; @@ -80354,8 +77681,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_51, OnFailureCallback_51, true)); return CHIP_NO_ERROR; @@ -80380,7 +77705,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int8_t int8sArgument; int8sArgument = readAttributeInt8sDefaultValue; @@ -80403,8 +77727,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_53, OnFailureCallback_53, true)); return CHIP_NO_ERROR; @@ -80429,8 +77751,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_54, OnFailureCallback_54, true)); return CHIP_NO_ERROR; @@ -80456,7 +77776,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t int16sArgument; int16sArgument = 1; @@ -80479,8 +77798,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_56, OnFailureCallback_56, true)); return CHIP_NO_ERROR; @@ -80505,7 +77822,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int16_t int16sArgument; int16sArgument = readAttributeInt16sDefaultValue; @@ -80528,8 +77844,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_58, OnFailureCallback_58, true)); return CHIP_NO_ERROR; @@ -80554,8 +77868,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_59, OnFailureCallback_59, true)); return CHIP_NO_ERROR; @@ -80581,7 +77893,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int32_t int32sArgument; int32sArgument = 1L; @@ -80604,8 +77915,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_61, OnFailureCallback_61, true)); return CHIP_NO_ERROR; @@ -80630,7 +77939,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int32_t int32sArgument; int32sArgument = readAttributeInt32sDefaultValue; @@ -80653,8 +77961,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_63, OnFailureCallback_63, true)); return CHIP_NO_ERROR; @@ -80679,8 +77985,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_64, OnFailureCallback_64, true)); return CHIP_NO_ERROR; @@ -80706,7 +78010,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int64_t int64sArgument; int64sArgument = 1LL; @@ -80729,8 +78032,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_66, OnFailureCallback_66, true)); return CHIP_NO_ERROR; @@ -80755,7 +78056,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; int64_t int64sArgument; int64sArgument = readAttributeInt64sDefaultValue; @@ -80778,8 +78078,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_68, OnFailureCallback_68, true)); return CHIP_NO_ERROR; @@ -80804,8 +78102,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_69, OnFailureCallback_69, true)); return CHIP_NO_ERROR; @@ -80831,7 +78127,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t enum8Argument; enum8Argument = 1; @@ -80854,8 +78149,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_71, OnFailureCallback_71, true)); return CHIP_NO_ERROR; @@ -80880,7 +78173,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint8_t enum8Argument; enum8Argument = readAttributeEnum8DefaultValue; @@ -80903,8 +78195,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_73, OnFailureCallback_73, true)); return CHIP_NO_ERROR; @@ -80929,8 +78219,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_74, OnFailureCallback_74, true)); return CHIP_NO_ERROR; @@ -80956,7 +78244,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t enum16Argument; enum16Argument = 1U; @@ -80979,8 +78266,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_76, OnFailureCallback_76, true)); return CHIP_NO_ERROR; @@ -81005,7 +78290,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t enum16Argument; enum16Argument = readAttributeEnum16DefaultValue; @@ -81028,8 +78312,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_78, OnFailureCallback_78, true)); return CHIP_NO_ERROR; @@ -81054,8 +78336,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_79, OnFailureCallback_79, true)); return CHIP_NO_ERROR; @@ -81081,7 +78361,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint64_t epochUsArgument; epochUsArgument = 1ULL; @@ -81104,8 +78383,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_81, OnFailureCallback_81, true)); return CHIP_NO_ERROR; @@ -81130,7 +78407,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint64_t epochUsArgument; epochUsArgument = readAttributeEpochUSDefaultValue; @@ -81153,8 +78429,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_83, OnFailureCallback_83, true)); return CHIP_NO_ERROR; @@ -81179,8 +78453,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_84, OnFailureCallback_84, true)); return CHIP_NO_ERROR; @@ -81206,7 +78478,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint32_t epochSArgument; epochSArgument = 1UL; @@ -81229,8 +78500,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_86, OnFailureCallback_86, true)); return CHIP_NO_ERROR; @@ -81255,7 +78524,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint32_t epochSArgument; epochSArgument = readAttributeEpochSDefaultValue; @@ -81278,8 +78546,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_88, OnFailureCallback_88, true)); return CHIP_NO_ERROR; @@ -81304,8 +78570,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_89, OnFailureCallback_89, true)); return CHIP_NO_ERROR; @@ -81331,7 +78595,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::VendorId vendorIdArgument; vendorIdArgument = static_cast(1); @@ -81354,8 +78617,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_91, OnFailureCallback_91, true)); return CHIP_NO_ERROR; @@ -81380,7 +78641,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::VendorId vendorIdArgument; vendorIdArgument = readAttributeVendorIdDefaultValue; @@ -81403,8 +78663,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_93, OnFailureCallback_93, true)); return CHIP_NO_ERROR; @@ -81429,8 +78687,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_94, OnFailureCallback_94, true)); return CHIP_NO_ERROR; @@ -81462,8 +78718,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_95, OnFailureCallback_95, true)); return CHIP_NO_ERROR; @@ -81488,7 +78742,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::CharSpan charStringArgument; charStringArgument = chip::Span("NotDefaultgarbage: not in length on purpose", 10); @@ -81511,8 +78764,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_97, OnFailureCallback_97, true)); return CHIP_NO_ERROR; @@ -81545,8 +78796,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_98, OnFailureCallback_98, true)); return CHIP_NO_ERROR; @@ -81572,7 +78821,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::CharSpan charStringArgument; charStringArgument = readAttributeCharStringNotDefaultValue; @@ -81595,8 +78843,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_100, OnFailureCallback_100, true)); return CHIP_NO_ERROR; @@ -81621,7 +78867,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::CharSpan charStringArgument; charStringArgument = readAttributeCharStringDefaultValue; @@ -81644,8 +78889,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_102, OnFailureCallback_102, true)); return CHIP_NO_ERROR; @@ -81677,8 +78920,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_103, OnFailureCallback_103, true)); return CHIP_NO_ERROR; @@ -81703,7 +78944,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::ByteSpan octetStringArgument; octetStringArgument = chip::ByteSpan(chip::Uint8::from_const_char("NotDefaultgarbage: not in length on purpose"), 10); @@ -81726,8 +78966,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_105, OnFailureCallback_105, true)); return CHIP_NO_ERROR; @@ -81761,8 +78999,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_106, OnFailureCallback_106, true)); return CHIP_NO_ERROR; @@ -81788,7 +79024,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::ByteSpan octetStringArgument; octetStringArgument = readAttributeOctetStringNotDefaultValue; @@ -81811,8 +79046,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_108, OnFailureCallback_108, true)); return CHIP_NO_ERROR; @@ -81838,7 +79071,6 @@ class TestSaveAs : public TestCommand chip::Controller::TestClusterClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::ByteSpan octetStringArgument; octetStringArgument = readAttributeOctetStringDefaultValue; @@ -81952,7 +79184,6 @@ class TestConfigVariables : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::TestCluster::Commands::TestAddArguments::Type; - ListFreer listFreer; RequestType request; request.arg1 = 3; request.arg2 = 17; @@ -81988,7 +79219,6 @@ class TestConfigVariables : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::TestCluster::Commands::TestAddArguments::Type; - ListFreer listFreer; RequestType request; request.arg1 = mArg1.HasValue() ? mArg1.Value() : 5; request.arg2 = TestAddArgumentDefaultValue; @@ -82160,8 +79390,6 @@ class TestDescriptorCluster : public TestCommand chip::Controller::DescriptorClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); return CHIP_NO_ERROR; @@ -82193,8 +79421,6 @@ class TestDescriptorCluster : public TestCommand chip::Controller::DescriptorClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -82272,8 +79498,6 @@ class TestDescriptorCluster : public TestCommand chip::Controller::DescriptorClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_3, OnFailureCallback_3, true)); return CHIP_NO_ERROR; @@ -82303,8 +79527,6 @@ class TestDescriptorCluster : public TestCommand chip::Controller::DescriptorClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_4, OnFailureCallback_4, true)); return CHIP_NO_ERROR; @@ -82478,8 +79700,6 @@ class TestBasicInformation : public TestCommand chip::Controller::BasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); return CHIP_NO_ERROR; @@ -82504,7 +79724,6 @@ class TestBasicInformation : public TestCommand chip::Controller::BasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::CharSpan locationArgument; locationArgument = chip::Span("USgarbage: not in length on purpose", 2); @@ -82527,8 +79746,6 @@ class TestBasicInformation : public TestCommand chip::Controller::BasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_3, OnFailureCallback_3, true)); return CHIP_NO_ERROR; @@ -82553,7 +79770,6 @@ class TestBasicInformation : public TestCommand chip::Controller::BasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; chip::CharSpan locationArgument; locationArgument = chip::Span("XXgarbage: not in length on purpose", 2); @@ -82576,8 +79792,6 @@ class TestBasicInformation : public TestCommand chip::Controller::BasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_5, OnFailureCallback_5, true)); return CHIP_NO_ERROR; @@ -82732,7 +79946,6 @@ class TestIdentifyCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 0; using RequestType = chip::app::Clusters::Identify::Commands::Identify::Type; - ListFreer listFreer; RequestType request; request.identifyTime = 0U; @@ -82926,8 +80139,6 @@ class TestOperationalCredentialsCluster : public TestCommand chip::Controller::OperationalCredentialsClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); @@ -82953,8 +80164,6 @@ class TestOperationalCredentialsCluster : public TestCommand chip::Controller::OperationalCredentialsClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); @@ -82980,8 +80189,6 @@ class TestOperationalCredentialsCluster : public TestCommand chip::Controller::OperationalCredentialsClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_3, OnFailureCallback_3, true)); @@ -83007,7 +80214,6 @@ class TestOperationalCredentialsCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 0; using RequestType = chip::app::Clusters::OperationalCredentials::Commands::RemoveFabric::Type; - ListFreer listFreer; RequestType request; request.fabricIndex = 243; @@ -83045,8 +80251,6 @@ class TestOperationalCredentialsCluster : public TestCommand chip::Controller::OperationalCredentialsClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_5, OnFailureCallback_5, true)); return CHIP_NO_ERROR; @@ -83077,7 +80281,6 @@ class TestOperationalCredentialsCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 0; using RequestType = chip::app::Clusters::OperationalCredentials::Commands::UpdateFabricLabel::Type; - ListFreer listFreer; RequestType request; request.label = chip::Span("Batcavegarbage: not in length on purpose", 7); @@ -83118,8 +80321,6 @@ class TestOperationalCredentialsCluster : public TestCommand chip::Controller::OperationalCredentialsClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_7, OnFailureCallback_7, true)); return CHIP_NO_ERROR; @@ -83324,8 +80525,6 @@ class TestModeSelectCluster : public TestCommand chip::Controller::ModeSelectClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); return CHIP_NO_ERROR; @@ -83350,8 +80549,6 @@ class TestModeSelectCluster : public TestCommand chip::Controller::ModeSelectClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -83376,8 +80573,6 @@ class TestModeSelectCluster : public TestCommand chip::Controller::ModeSelectClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_3, OnFailureCallback_3, true)); return CHIP_NO_ERROR; @@ -83402,8 +80597,6 @@ class TestModeSelectCluster : public TestCommand chip::Controller::ModeSelectClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_4, OnFailureCallback_4, true)); return CHIP_NO_ERROR; @@ -83428,8 +80621,6 @@ class TestModeSelectCluster : public TestCommand chip::Controller::ModeSelectClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_5, OnFailureCallback_5, true)); return CHIP_NO_ERROR; @@ -83471,7 +80662,6 @@ class TestModeSelectCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ModeSelect::Commands::ChangeToMode::Type; - ListFreer listFreer; RequestType request; request.newMode = 4; @@ -83501,8 +80691,6 @@ class TestModeSelectCluster : public TestCommand chip::Controller::ModeSelectClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_7, OnFailureCallback_7, true)); return CHIP_NO_ERROR; @@ -83526,7 +80714,6 @@ class TestModeSelectCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::ModeSelect::Commands::ChangeToMode::Type; - ListFreer listFreer; RequestType request; request.newMode = 2; @@ -83841,8 +81028,6 @@ class TestBinding : public TestCommand chip::Controller::BindingClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -83962,8 +81147,6 @@ class TestBinding : public TestCommand chip::Controller::BindingClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_5, OnFailureCallback_5, true)); return CHIP_NO_ERROR; @@ -84162,8 +81345,6 @@ class Test_TC_SWDIAG_1_1 : public TestCommand chip::Controller::SoftwareDiagnosticsClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); return CHIP_NO_ERROR; @@ -84189,8 +81370,6 @@ class Test_TC_SWDIAG_1_1 : public TestCommand chip::Controller::SoftwareDiagnosticsClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -84214,8 +81393,6 @@ class Test_TC_SWDIAG_1_1 : public TestCommand chip::Controller::SoftwareDiagnosticsClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_3, OnFailureCallback_3, true)); return CHIP_NO_ERROR; @@ -84239,8 +81416,6 @@ class Test_TC_SWDIAG_1_1 : public TestCommand chip::Controller::SoftwareDiagnosticsClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_4, OnFailureCallback_4, true)); @@ -84457,7 +81632,6 @@ class Test_TC_SWDIAG_3_1 : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 0; using RequestType = chip::app::Clusters::SoftwareDiagnostics::Commands::ResetWatermarks::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -84486,8 +81660,6 @@ class Test_TC_SWDIAG_3_1 : public TestCommand chip::Controller::SoftwareDiagnosticsClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); return CHIP_NO_ERROR; @@ -84511,8 +81683,6 @@ class Test_TC_SWDIAG_3_1 : public TestCommand chip::Controller::SoftwareDiagnosticsClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_3, OnFailureCallback_3, true)); @@ -84696,7 +81866,6 @@ class TestSubscribe_OnOff : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::Off::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -84725,8 +81894,6 @@ class TestSubscribe_OnOff : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - mTest_TestSubscribe_OnOff_OnOff_Reported = OnSuccessCallback_2; return WaitForMs(0); } @@ -84750,7 +81917,6 @@ class TestSubscribe_OnOff : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; uint16_t minIntervalArgument; minIntervalArgument = 2U; uint16_t maxIntervalArgument; @@ -84789,7 +81955,6 @@ class TestSubscribe_OnOff : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::On::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -84818,8 +81983,6 @@ class TestSubscribe_OnOff : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - mTest_TestSubscribe_OnOff_OnOff_Reported = OnSuccessCallback_5; return CHIP_NO_ERROR; } @@ -84844,7 +82007,6 @@ class TestSubscribe_OnOff : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::OnOff::Commands::Off::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -84873,8 +82035,6 @@ class TestSubscribe_OnOff : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - mTest_TestSubscribe_OnOff_OnOff_Reported = OnSuccessCallback_7; return CHIP_NO_ERROR; } @@ -85423,7 +82583,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetUser::Type; - ListFreer listFreer; RequestType request; request.userIndex = 1U; @@ -85490,8 +82649,6 @@ class DL_UsersAndCredentials : public TestCommand chip::Controller::DoorLockClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); @@ -85517,7 +82674,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetUser::Type; - ListFreer listFreer; RequestType request; request.userIndex = 0U; @@ -85563,7 +82719,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetUser::Type; - ListFreer listFreer; RequestType request; request.userIndex = static_cast(NumberOfTotalUsersSupported + 1); @@ -85609,7 +82764,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetUser::Type; - ListFreer listFreer; RequestType request; request.operationType = static_cast(0); request.userIndex = 1U; @@ -85645,7 +82799,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetUser::Type; - ListFreer listFreer; RequestType request; request.userIndex = 1U; @@ -85717,7 +82870,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetUser::Type; - ListFreer listFreer; RequestType request; request.operationType = static_cast(0); request.userIndex = 1U; @@ -85754,7 +82906,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetUser::Type; - ListFreer listFreer; RequestType request; request.operationType = static_cast(2); request.userIndex = 1U; @@ -85791,7 +82942,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetUser::Type; - ListFreer listFreer; RequestType request; request.userIndex = 1U; @@ -85863,7 +83013,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetUser::Type; - ListFreer listFreer; RequestType request; request.operationType = static_cast(2); request.userIndex = 1U; @@ -85900,7 +83049,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetUser::Type; - ListFreer listFreer; RequestType request; request.userIndex = 1U; @@ -85973,7 +83121,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetUser::Type; - ListFreer listFreer; RequestType request; request.operationType = static_cast(2); request.userIndex = 1U; @@ -86010,7 +83157,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetUser::Type; - ListFreer listFreer; RequestType request; request.userIndex = 1U; @@ -86083,7 +83229,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetUser::Type; - ListFreer listFreer; RequestType request; request.operationType = static_cast(2); request.userIndex = 1U; @@ -86120,7 +83265,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetUser::Type; - ListFreer listFreer; RequestType request; request.userIndex = 1U; @@ -86193,7 +83337,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetUser::Type; - ListFreer listFreer; RequestType request; request.operationType = static_cast(2); request.userIndex = 1U; @@ -86230,7 +83373,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetUser::Type; - ListFreer listFreer; RequestType request; request.userIndex = 1U; @@ -86303,7 +83445,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetUser::Type; - ListFreer listFreer; RequestType request; request.operationType = static_cast(2); request.userIndex = 1U; @@ -86344,7 +83485,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetUser::Type; - ListFreer listFreer; RequestType request; request.userIndex = 1U; @@ -86417,7 +83557,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetUser::Type; - ListFreer listFreer; RequestType request; request.operationType = static_cast(0); request.userIndex = 2U; @@ -86458,7 +83597,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetUser::Type; - ListFreer listFreer; RequestType request; request.userIndex = 2U; @@ -86531,7 +83669,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetUser::Type; - ListFreer listFreer; RequestType request; request.operationType = static_cast(0); request.userIndex = NumberOfTotalUsersSupported; @@ -86568,7 +83705,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetUser::Type; - ListFreer listFreer; RequestType request; request.userIndex = NumberOfTotalUsersSupported; @@ -86639,7 +83775,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetUser::Type; - ListFreer listFreer; RequestType request; request.operationType = static_cast(0); request.userIndex = 0U; @@ -86676,7 +83811,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetUser::Type; - ListFreer listFreer; RequestType request; request.operationType = static_cast(0); request.userIndex = static_cast(NumberOfTotalUsersSupported + 1); @@ -86713,7 +83847,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::ClearUser::Type; - ListFreer listFreer; RequestType request; request.userIndex = 1U; @@ -86743,7 +83876,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetUser::Type; - ListFreer listFreer; RequestType request; request.userIndex = 1U; @@ -86809,7 +83941,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetUser::Type; - ListFreer listFreer; RequestType request; request.operationType = static_cast(0); request.userIndex = 1U; @@ -86845,7 +83976,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetUser::Type; - ListFreer listFreer; RequestType request; request.userIndex = 1U; @@ -86917,7 +84047,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::ClearUser::Type; - ListFreer listFreer; RequestType request; request.userIndex = 0U; @@ -86948,7 +84077,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::ClearUser::Type; - ListFreer listFreer; RequestType request; request.userIndex = static_cast(NumberOfTotalUsersSupported + 1); @@ -86979,7 +84107,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::ClearUser::Type; - ListFreer listFreer; RequestType request; request.userIndex = 65534U; @@ -87009,7 +84136,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetUser::Type; - ListFreer listFreer; RequestType request; request.userIndex = 2U; @@ -87075,7 +84201,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetUser::Type; - ListFreer listFreer; RequestType request; request.userIndex = NumberOfTotalUsersSupported; @@ -87141,8 +84266,6 @@ class DL_UsersAndCredentials : public TestCommand chip::Controller::DoorLockClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_35, OnFailureCallback_35, true)); return CHIP_NO_ERROR; @@ -87167,7 +84290,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetCredentialStatus::Type; - ListFreer listFreer; RequestType request; request.credential.credentialType = static_cast(1); @@ -87210,7 +84332,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetCredentialStatus::Type; - ListFreer listFreer; RequestType request; request.credential.credentialType = static_cast(1); @@ -87247,7 +84368,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetCredentialStatus::Type; - ListFreer listFreer; RequestType request; request.credential.credentialType = static_cast(1); @@ -87284,7 +84404,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetCredential::Type; - ListFreer listFreer; RequestType request; request.operationType = static_cast(0); @@ -87336,7 +84455,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetUser::Type; - ListFreer listFreer; RequestType request; request.userIndex = 1U; @@ -87415,7 +84533,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetCredentialStatus::Type; - ListFreer listFreer; RequestType request; request.credential.credentialType = static_cast(1); @@ -87459,7 +84576,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetCredential::Type; - ListFreer listFreer; RequestType request; request.operationType = static_cast(0); @@ -87510,7 +84626,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetCredential::Type; - ListFreer listFreer; RequestType request; request.operationType = static_cast(0); @@ -87561,8 +84676,6 @@ class DL_UsersAndCredentials : public TestCommand chip::Controller::DoorLockClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_44, OnFailureCallback_44, true)); return CHIP_NO_ERROR; @@ -87587,7 +84700,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetCredentialStatus::Type; - ListFreer listFreer; RequestType request; request.credential.credentialType = static_cast(2); @@ -87624,7 +84736,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetCredentialStatus::Type; - ListFreer listFreer; RequestType request; request.credential.credentialType = static_cast(2); @@ -87661,7 +84772,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetCredentialStatus::Type; - ListFreer listFreer; RequestType request; request.credential.credentialType = static_cast(2); @@ -87704,7 +84814,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetCredential::Type; - ListFreer listFreer; RequestType request; request.operationType = static_cast(0); @@ -87757,7 +84866,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetUser::Type; - ListFreer listFreer; RequestType request; request.userIndex = 1U; @@ -87839,7 +84947,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetCredentialStatus::Type; - ListFreer listFreer; RequestType request; request.credential.credentialType = static_cast(2); @@ -87883,7 +84990,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetCredential::Type; - ListFreer listFreer; RequestType request; request.operationType = static_cast(0); @@ -87935,7 +85041,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetCredential::Type; - ListFreer listFreer; RequestType request; request.operationType = static_cast(0); @@ -87986,7 +85091,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetCredential::Type; - ListFreer listFreer; RequestType request; request.operationType = static_cast(0); @@ -88038,7 +85142,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetCredential::Type; - ListFreer listFreer; RequestType request; request.operationType = static_cast(0); @@ -88090,7 +85193,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetCredential::Type; - ListFreer listFreer; RequestType request; request.operationType = static_cast(0); @@ -88142,7 +85244,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetCredential::Type; - ListFreer listFreer; RequestType request; request.operationType = static_cast(0); @@ -88194,7 +85295,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetCredential::Type; - ListFreer listFreer; RequestType request; request.operationType = static_cast(0); @@ -88246,7 +85346,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetCredential::Type; - ListFreer listFreer; RequestType request; request.operationType = static_cast(0); @@ -88298,7 +85397,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetCredential::Type; - ListFreer listFreer; RequestType request; request.operationType = static_cast(0); @@ -88351,7 +85449,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetCredential::Type; - ListFreer listFreer; RequestType request; request.operationType = static_cast(0); @@ -88404,7 +85501,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetCredential::Type; - ListFreer listFreer; RequestType request; request.operationType = static_cast(0); @@ -88455,7 +85551,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetCredential::Type; - ListFreer listFreer; RequestType request; request.operationType = static_cast(0); @@ -88507,7 +85602,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetCredential::Type; - ListFreer listFreer; RequestType request; request.operationType = static_cast(2); @@ -88559,7 +85653,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetCredential::Type; - ListFreer listFreer; RequestType request; request.operationType = static_cast(0); @@ -88611,7 +85704,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetCredential::Type; - ListFreer listFreer; RequestType request; request.operationType = static_cast(0); @@ -88662,7 +85754,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::ClearCredential::Type; - ListFreer listFreer; RequestType request; request.credential.SetNonNull(); @@ -88695,7 +85786,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetCredentialStatus::Type; - ListFreer listFreer; RequestType request; request.credential.credentialType = static_cast(1); @@ -88738,7 +85828,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetUser::Type; - ListFreer listFreer; RequestType request; request.userIndex = 1U; @@ -88817,7 +85906,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::ClearCredential::Type; - ListFreer listFreer; RequestType request; request.credential.SetNonNull(); @@ -88850,7 +85938,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetCredentialStatus::Type; - ListFreer listFreer; RequestType request; request.credential.credentialType = static_cast(1); @@ -88893,7 +85980,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetUser::Type; - ListFreer listFreer; RequestType request; request.userIndex = 2U; @@ -88959,7 +86045,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetCredential::Type; - ListFreer listFreer; RequestType request; request.operationType = static_cast(0); @@ -89012,7 +86097,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::ClearCredential::Type; - ListFreer listFreer; RequestType request; request.credential.SetNonNull(); @@ -89045,7 +86129,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetCredentialStatus::Type; - ListFreer listFreer; RequestType request; request.credential.credentialType = static_cast(2); @@ -89088,7 +86171,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetCredentialStatus::Type; - ListFreer listFreer; RequestType request; request.credential.credentialType = static_cast(2); @@ -89131,7 +86213,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetUser::Type; - ListFreer listFreer; RequestType request; request.userIndex = 1U; @@ -89197,7 +86278,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetUser::Type; - ListFreer listFreer; RequestType request; request.userIndex = 2U; @@ -89263,7 +86343,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetCredential::Type; - ListFreer listFreer; RequestType request; request.operationType = static_cast(0); @@ -89315,7 +86394,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetCredential::Type; - ListFreer listFreer; RequestType request; request.operationType = static_cast(0); @@ -89368,7 +86446,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetCredential::Type; - ListFreer listFreer; RequestType request; request.operationType = static_cast(0); @@ -89421,7 +86498,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::ClearCredential::Type; - ListFreer listFreer; RequestType request; request.credential.SetNull(); @@ -89451,7 +86527,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetCredentialStatus::Type; - ListFreer listFreer; RequestType request; request.credential.credentialType = static_cast(1); @@ -89494,7 +86569,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetCredentialStatus::Type; - ListFreer listFreer; RequestType request; request.credential.credentialType = static_cast(2); @@ -89537,7 +86611,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetCredentialStatus::Type; - ListFreer listFreer; RequestType request; request.credential.credentialType = static_cast(1); @@ -89580,7 +86653,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetUser::Type; - ListFreer listFreer; RequestType request; request.userIndex = 1U; @@ -89646,7 +86718,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetUser::Type; - ListFreer listFreer; RequestType request; request.userIndex = 2U; @@ -89712,7 +86783,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetUser::Type; - ListFreer listFreer; RequestType request; request.userIndex = 3U; @@ -89778,7 +86848,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetCredential::Type; - ListFreer listFreer; RequestType request; request.operationType = static_cast(0); @@ -89828,7 +86897,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetCredential::Type; - ListFreer listFreer; RequestType request; request.operationType = static_cast(0); @@ -89879,7 +86947,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetUser::Type; - ListFreer listFreer; RequestType request; request.userIndex = 1U; @@ -89958,7 +87025,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetCredentialStatus::Type; - ListFreer listFreer; RequestType request; request.credential.credentialType = static_cast(0); @@ -90001,7 +87067,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetCredential::Type; - ListFreer listFreer; RequestType request; request.operationType = static_cast(2); @@ -90051,7 +87116,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::ClearCredential::Type; - ListFreer listFreer; RequestType request; request.credential.SetNonNull(); @@ -90085,7 +87149,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::ClearCredential::Type; - ListFreer listFreer; RequestType request; request.credential.SetNonNull(); @@ -90119,7 +87182,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::ClearCredential::Type; - ListFreer listFreer; RequestType request; request.credential.SetNonNull(); @@ -90153,7 +87215,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::ClearCredential::Type; - ListFreer listFreer; RequestType request; request.credential.SetNonNull(); @@ -90187,7 +87248,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::ClearCredential::Type; - ListFreer listFreer; RequestType request; request.credential.SetNonNull(); @@ -90221,7 +87281,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::ClearCredential::Type; - ListFreer listFreer; RequestType request; request.credential.SetNonNull(); @@ -90255,7 +87314,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::ClearUser::Type; - ListFreer listFreer; RequestType request; request.userIndex = 1U; @@ -90285,7 +87343,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetUser::Type; - ListFreer listFreer; RequestType request; request.userIndex = 1U; @@ -90351,7 +87408,6 @@ class DL_UsersAndCredentials : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetCredentialStatus::Type; - ListFreer listFreer; RequestType request; request.credential.credentialType = static_cast(0); @@ -90554,7 +87610,6 @@ class DL_LockUnlock : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetCredential::Type; - ListFreer listFreer; RequestType request; request.operationType = static_cast(0); @@ -90605,7 +87660,6 @@ class DL_LockUnlock : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::UnlockDoor::Type; - ListFreer listFreer; RequestType request; request.pinCode.Emplace(); request.pinCode.Value() = chip::ByteSpan(chip::Uint8::from_const_char("000000garbage: not in length on purpose"), 6); @@ -90638,8 +87692,6 @@ class DL_LockUnlock : public TestCommand chip::Controller::DoorLockClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_3, OnFailureCallback_3, true)); return CHIP_NO_ERROR; @@ -90664,7 +87716,6 @@ class DL_LockUnlock : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::UnlockDoor::Type; - ListFreer listFreer; RequestType request; request.pinCode.Emplace(); request.pinCode.Value() = chip::ByteSpan(chip::Uint8::from_const_char("123456garbage: not in length on purpose"), 6); @@ -90696,8 +87747,6 @@ class DL_LockUnlock : public TestCommand chip::Controller::DoorLockClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_5, OnFailureCallback_5, true)); return CHIP_NO_ERROR; @@ -90722,7 +87771,6 @@ class DL_LockUnlock : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::LockDoor::Type; - ListFreer listFreer; RequestType request; request.pinCode.Emplace(); request.pinCode.Value() = chip::ByteSpan(chip::Uint8::from_const_char("000000garbage: not in length on purpose"), 6); @@ -90755,8 +87803,6 @@ class DL_LockUnlock : public TestCommand chip::Controller::DoorLockClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_7, OnFailureCallback_7, true)); return CHIP_NO_ERROR; @@ -90781,7 +87827,6 @@ class DL_LockUnlock : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::LockDoor::Type; - ListFreer listFreer; RequestType request; request.pinCode.Emplace(); request.pinCode.Value() = chip::ByteSpan(chip::Uint8::from_const_char("123456garbage: not in length on purpose"), 6); @@ -90813,8 +87858,6 @@ class DL_LockUnlock : public TestCommand chip::Controller::DoorLockClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_9, OnFailureCallback_9, true)); return CHIP_NO_ERROR; @@ -90839,7 +87882,6 @@ class DL_LockUnlock : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::ClearCredential::Type; - ListFreer listFreer; RequestType request; request.credential.SetNonNull(); @@ -91320,7 +88362,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetCredential::Type; - ListFreer listFreer; RequestType request; request.operationType = static_cast(0); @@ -91370,8 +88411,6 @@ class DL_Schedules : public TestCommand chip::Controller::DoorLockClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); @@ -91398,8 +88437,6 @@ class DL_Schedules : public TestCommand chip::Controller::DoorLockClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_3, OnFailureCallback_3, true)); @@ -91426,8 +88463,6 @@ class DL_Schedules : public TestCommand chip::Controller::DoorLockClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_4, OnFailureCallback_4, true)); @@ -91453,7 +88488,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetWeekDaySchedule::Type; - ListFreer listFreer; RequestType request; request.weekDayIndex = 0; request.userIndex = 1U; @@ -91487,7 +88521,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetWeekDaySchedule::Type; - ListFreer listFreer; RequestType request; request.weekDayIndex = static_cast(NumberOfWeekDaySchedulesSupportedPerUser + 1); request.userIndex = 1U; @@ -91521,7 +88554,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetWeekDaySchedule::Type; - ListFreer listFreer; RequestType request; request.weekDayIndex = 1; request.userIndex = 0U; @@ -91555,7 +88587,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetWeekDaySchedule::Type; - ListFreer listFreer; RequestType request; request.weekDayIndex = 1; request.userIndex = static_cast(NumberOfTotalUsersSupported + 1); @@ -91589,7 +88620,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetWeekDaySchedule::Type; - ListFreer listFreer; RequestType request; request.weekDayIndex = 1; request.userIndex = 2U; @@ -91623,7 +88653,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetWeekDaySchedule::Type; - ListFreer listFreer; RequestType request; request.weekDayIndex = 1; request.userIndex = 1U; @@ -91659,7 +88688,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetWeekDaySchedule::Type; - ListFreer listFreer; RequestType request; request.weekDayIndex = 1; request.userIndex = 1U; @@ -91695,7 +88723,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetWeekDaySchedule::Type; - ListFreer listFreer; RequestType request; request.weekDayIndex = 1; request.userIndex = 1U; @@ -91731,7 +88758,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetWeekDaySchedule::Type; - ListFreer listFreer; RequestType request; request.weekDayIndex = 1; request.userIndex = 1U; @@ -91767,7 +88793,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetWeekDaySchedule::Type; - ListFreer listFreer; RequestType request; request.weekDayIndex = 1; request.userIndex = 1U; @@ -91803,7 +88828,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetWeekDaySchedule::Type; - ListFreer listFreer; RequestType request; request.weekDayIndex = 1; request.userIndex = 1U; @@ -91839,7 +88863,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetWeekDaySchedule::Type; - ListFreer listFreer; RequestType request; request.weekDayIndex = 1; request.userIndex = 1U; @@ -91875,7 +88898,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetWeekDaySchedule::Type; - ListFreer listFreer; RequestType request; request.weekDayIndex = 1; request.userIndex = 1U; @@ -91911,7 +88933,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetWeekDaySchedule::Type; - ListFreer listFreer; RequestType request; request.weekDayIndex = 1; request.userIndex = 1U; @@ -91947,7 +88968,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetWeekDaySchedule::Type; - ListFreer listFreer; RequestType request; request.weekDayIndex = 1; request.userIndex = 1U; @@ -91991,7 +89011,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetWeekDaySchedule::Type; - ListFreer listFreer; RequestType request; request.weekDayIndex = 0; request.userIndex = 1U; @@ -92035,7 +89054,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetWeekDaySchedule::Type; - ListFreer listFreer; RequestType request; request.weekDayIndex = static_cast(NumberOfWeekDaySchedulesSupportedPerUser + 1); request.userIndex = 1U; @@ -92080,7 +89098,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetWeekDaySchedule::Type; - ListFreer listFreer; RequestType request; request.weekDayIndex = 1; request.userIndex = 0U; @@ -92124,7 +89141,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetWeekDaySchedule::Type; - ListFreer listFreer; RequestType request; request.weekDayIndex = 1; request.userIndex = static_cast(NumberOfTotalUsersSupported + 1); @@ -92168,7 +89184,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetWeekDaySchedule::Type; - ListFreer listFreer; RequestType request; request.weekDayIndex = 1; request.userIndex = 2U; @@ -92212,7 +89227,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetYearDaySchedule::Type; - ListFreer listFreer; RequestType request; request.yearDayIndex = 0; request.userIndex = 1U; @@ -92245,7 +89259,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetYearDaySchedule::Type; - ListFreer listFreer; RequestType request; request.yearDayIndex = static_cast(NumberOfYearDaySchedulesSupportedPerUser + 1); request.userIndex = 1U; @@ -92278,7 +89291,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetYearDaySchedule::Type; - ListFreer listFreer; RequestType request; request.yearDayIndex = 1; request.userIndex = 0U; @@ -92311,7 +89323,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetYearDaySchedule::Type; - ListFreer listFreer; RequestType request; request.yearDayIndex = 1; request.userIndex = static_cast(NumberOfTotalUsersSupported + 1); @@ -92344,7 +89355,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetYearDaySchedule::Type; - ListFreer listFreer; RequestType request; request.yearDayIndex = 1; request.userIndex = 2U; @@ -92377,7 +89387,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetYearDaySchedule::Type; - ListFreer listFreer; RequestType request; request.yearDayIndex = 1; request.userIndex = 1U; @@ -92410,7 +89419,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetYearDaySchedule::Type; - ListFreer listFreer; RequestType request; request.yearDayIndex = 1; request.userIndex = 1U; @@ -92451,7 +89459,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetYearDaySchedule::Type; - ListFreer listFreer; RequestType request; request.yearDayIndex = 0; request.userIndex = 1U; @@ -92492,7 +89499,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetYearDaySchedule::Type; - ListFreer listFreer; RequestType request; request.yearDayIndex = static_cast(NumberOfYearDaySchedulesSupportedPerUser + 1); request.userIndex = 1U; @@ -92534,7 +89540,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetYearDaySchedule::Type; - ListFreer listFreer; RequestType request; request.yearDayIndex = 1; request.userIndex = 0U; @@ -92575,7 +89580,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetYearDaySchedule::Type; - ListFreer listFreer; RequestType request; request.yearDayIndex = 1; request.userIndex = static_cast(NumberOfTotalUsersSupported + 1); @@ -92616,7 +89620,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetYearDaySchedule::Type; - ListFreer listFreer; RequestType request; request.yearDayIndex = 1; request.userIndex = 2U; @@ -92657,7 +89660,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetWeekDaySchedule::Type; - ListFreer listFreer; RequestType request; request.weekDayIndex = 1; request.userIndex = 1U; @@ -92692,7 +89694,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetWeekDaySchedule::Type; - ListFreer listFreer; RequestType request; request.weekDayIndex = 1; request.userIndex = 1U; @@ -92751,7 +89752,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetYearDaySchedule::Type; - ListFreer listFreer; RequestType request; request.yearDayIndex = 1; request.userIndex = 1U; @@ -92783,7 +89783,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetYearDaySchedule::Type; - ListFreer listFreer; RequestType request; request.yearDayIndex = 1; request.userIndex = 1U; @@ -92830,7 +89829,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::ClearWeekDaySchedule::Type; - ListFreer listFreer; RequestType request; request.weekDayIndex = 0; request.userIndex = 1U; @@ -92861,7 +89859,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::ClearWeekDaySchedule::Type; - ListFreer listFreer; RequestType request; request.weekDayIndex = static_cast(NumberOfWeekDaySchedulesSupportedPerUser + 1); request.userIndex = 1U; @@ -92892,7 +89889,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::ClearWeekDaySchedule::Type; - ListFreer listFreer; RequestType request; request.weekDayIndex = 1; request.userIndex = 0U; @@ -92923,7 +89919,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::ClearWeekDaySchedule::Type; - ListFreer listFreer; RequestType request; request.weekDayIndex = 1; request.userIndex = static_cast(NumberOfTotalUsersSupported + 1); @@ -92954,7 +89949,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::ClearWeekDaySchedule::Type; - ListFreer listFreer; RequestType request; request.weekDayIndex = 1; request.userIndex = 2U; @@ -92985,7 +89979,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::ClearYearDaySchedule::Type; - ListFreer listFreer; RequestType request; request.yearDayIndex = 0; request.userIndex = 1U; @@ -93016,7 +90009,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::ClearYearDaySchedule::Type; - ListFreer listFreer; RequestType request; request.yearDayIndex = static_cast(NumberOfYearDaySchedulesSupportedPerUser + 1); request.userIndex = 1U; @@ -93047,7 +90039,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::ClearYearDaySchedule::Type; - ListFreer listFreer; RequestType request; request.yearDayIndex = 1; request.userIndex = 0U; @@ -93078,7 +90069,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::ClearYearDaySchedule::Type; - ListFreer listFreer; RequestType request; request.yearDayIndex = 1; request.userIndex = static_cast(NumberOfTotalUsersSupported + 1); @@ -93109,7 +90099,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::ClearYearDaySchedule::Type; - ListFreer listFreer; RequestType request; request.yearDayIndex = 1; request.userIndex = 2U; @@ -93140,7 +90129,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetWeekDaySchedule::Type; - ListFreer listFreer; RequestType request; request.weekDayIndex = 1; request.userIndex = 1U; @@ -93199,7 +90187,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetYearDaySchedule::Type; - ListFreer listFreer; RequestType request; request.yearDayIndex = 1; request.userIndex = 1U; @@ -93246,7 +90233,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetWeekDaySchedule::Type; - ListFreer listFreer; RequestType request; request.weekDayIndex = 2; request.userIndex = 1U; @@ -93281,7 +90267,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetWeekDaySchedule::Type; - ListFreer listFreer; RequestType request; request.weekDayIndex = 2; request.userIndex = 1U; @@ -93340,7 +90325,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetYearDaySchedule::Type; - ListFreer listFreer; RequestType request; request.yearDayIndex = 2; request.userIndex = 1U; @@ -93372,7 +90356,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetYearDaySchedule::Type; - ListFreer listFreer; RequestType request; request.yearDayIndex = 2; request.userIndex = 1U; @@ -93419,7 +90402,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::ClearWeekDaySchedule::Type; - ListFreer listFreer; RequestType request; request.weekDayIndex = 1; request.userIndex = 1U; @@ -93449,7 +90431,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetWeekDaySchedule::Type; - ListFreer listFreer; RequestType request; request.weekDayIndex = 1; request.userIndex = 1U; @@ -93493,7 +90474,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::ClearWeekDaySchedule::Type; - ListFreer listFreer; RequestType request; request.weekDayIndex = 254; request.userIndex = 1U; @@ -93523,7 +90503,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetWeekDaySchedule::Type; - ListFreer listFreer; RequestType request; request.weekDayIndex = 2; request.userIndex = 1U; @@ -93567,7 +90546,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetYearDaySchedule::Type; - ListFreer listFreer; RequestType request; request.yearDayIndex = 1; request.userIndex = 1U; @@ -93614,7 +90592,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetYearDaySchedule::Type; - ListFreer listFreer; RequestType request; request.yearDayIndex = 2; request.userIndex = 1U; @@ -93661,7 +90638,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetWeekDaySchedule::Type; - ListFreer listFreer; RequestType request; request.weekDayIndex = 1; request.userIndex = 1U; @@ -93696,7 +90672,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::ClearYearDaySchedule::Type; - ListFreer listFreer; RequestType request; request.yearDayIndex = 1; request.userIndex = 1U; @@ -93726,7 +90701,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetYearDaySchedule::Type; - ListFreer listFreer; RequestType request; request.yearDayIndex = 1; request.userIndex = 1U; @@ -93767,7 +90741,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::ClearYearDaySchedule::Type; - ListFreer listFreer; RequestType request; request.yearDayIndex = 254; request.userIndex = 1U; @@ -93797,7 +90770,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetYearDaySchedule::Type; - ListFreer listFreer; RequestType request; request.yearDayIndex = 2; request.userIndex = 1U; @@ -93838,7 +90810,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetWeekDaySchedule::Type; - ListFreer listFreer; RequestType request; request.weekDayIndex = 1; request.userIndex = 1U; @@ -93897,7 +90868,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::ClearWeekDaySchedule::Type; - ListFreer listFreer; RequestType request; request.weekDayIndex = 254; request.userIndex = 1U; @@ -93927,7 +90897,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetUser::Type; - ListFreer listFreer; RequestType request; request.operationType = static_cast(0); request.userIndex = 2U; @@ -93963,7 +90932,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetWeekDaySchedule::Type; - ListFreer listFreer; RequestType request; request.weekDayIndex = 1; request.userIndex = 1U; @@ -93998,7 +90966,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetWeekDaySchedule::Type; - ListFreer listFreer; RequestType request; request.weekDayIndex = 1; request.userIndex = 1U; @@ -94057,7 +91024,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetYearDaySchedule::Type; - ListFreer listFreer; RequestType request; request.yearDayIndex = 4; request.userIndex = 1U; @@ -94089,7 +91055,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetYearDaySchedule::Type; - ListFreer listFreer; RequestType request; request.yearDayIndex = 4; request.userIndex = 1U; @@ -94136,7 +91101,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetWeekDaySchedule::Type; - ListFreer listFreer; RequestType request; request.weekDayIndex = 4; request.userIndex = 2U; @@ -94171,7 +91135,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetWeekDaySchedule::Type; - ListFreer listFreer; RequestType request; request.weekDayIndex = 4; request.userIndex = 2U; @@ -94230,7 +91193,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::SetYearDaySchedule::Type; - ListFreer listFreer; RequestType request; request.yearDayIndex = 1; request.userIndex = 1U; @@ -94262,7 +91224,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetYearDaySchedule::Type; - ListFreer listFreer; RequestType request; request.yearDayIndex = 1; request.userIndex = 1U; @@ -94309,7 +91270,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::ClearUser::Type; - ListFreer listFreer; RequestType request; request.userIndex = 65534U; @@ -94339,7 +91299,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetWeekDaySchedule::Type; - ListFreer listFreer; RequestType request; request.weekDayIndex = 1; request.userIndex = 1U; @@ -94383,7 +91342,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetYearDaySchedule::Type; - ListFreer listFreer; RequestType request; request.yearDayIndex = 4; request.userIndex = 1U; @@ -94424,7 +91382,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetWeekDaySchedule::Type; - ListFreer listFreer; RequestType request; request.weekDayIndex = 4; request.userIndex = 2U; @@ -94468,7 +91425,6 @@ class DL_Schedules : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::DoorLock::Commands::GetYearDaySchedule::Type; - ListFreer listFreer; RequestType request; request.yearDayIndex = 1; request.userIndex = 2U; @@ -94698,7 +91654,6 @@ class TestGroupMessaging : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::Groups::Commands::AddGroup::Type; - ListFreer listFreer; RequestType request; request.groupId = 257U; request.groupName = chip::Span("Group #1garbage: not in length on purpose", 8); @@ -94735,7 +91690,6 @@ class TestGroupMessaging : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 0; using RequestType = chip::app::Clusters::Groups::Commands::AddGroup::Type; - ListFreer listFreer; RequestType request; request.groupId = 258U; request.groupName = chip::Span("Group #2garbage: not in length on purpose", 8); @@ -94772,7 +91726,6 @@ class TestGroupMessaging : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 0; using RequestType = chip::app::Clusters::GroupKeyManagement::Commands::KeySetWrite::Type; - ListFreer listFreer; RequestType request; request.groupKeySet.groupKeySetID = 417U; @@ -94825,7 +91778,6 @@ class TestGroupMessaging : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 0; using RequestType = chip::app::Clusters::GroupKeyManagement::Commands::KeySetWrite::Type; - ListFreer listFreer; RequestType request; request.groupKeySet.groupKeySetID = 418U; @@ -94969,7 +91921,6 @@ class TestGroupMessaging : public TestCommand chip::Controller::BasicClusterTest cluster; cluster.AssociateWithGroup(mDevices[kIdentityAlpha], groupId); - ListFreer listFreer; chip::CharSpan locationArgument; locationArgument = chip::Span("USgarbage: not in length on purpose", 2); @@ -94994,8 +91945,6 @@ class TestGroupMessaging : public TestCommand chip::Controller::BasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_8, OnFailureCallback_8, true)); return CHIP_NO_ERROR; @@ -95020,7 +91969,6 @@ class TestGroupMessaging : public TestCommand chip::Controller::BasicClusterTest cluster; cluster.AssociateWithGroup(mDevices[kIdentityAlpha], groupId); - ListFreer listFreer; chip::CharSpan locationArgument; locationArgument = chip::Span("XXgarbage: not in length on purpose", 2); @@ -95045,8 +91993,6 @@ class TestGroupMessaging : public TestCommand chip::Controller::BasicClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_10, OnFailureCallback_10, true)); return CHIP_NO_ERROR; @@ -95070,7 +92016,6 @@ class TestGroupMessaging : public TestCommand const chip::GroupId groupId = 257; using RequestType = chip::app::Clusters::OnOff::Commands::On::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -95104,8 +92049,6 @@ class TestGroupMessaging : public TestCommand chip::Controller::OnOffClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_12, OnFailureCallback_12, true)); return CHIP_NO_ERROR; @@ -95279,7 +92222,6 @@ class TestGroupsCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::Groups::Commands::ViewGroup::Type; - ListFreer listFreer; RequestType request; request.groupId = 0U; @@ -95315,7 +92257,6 @@ class TestGroupsCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::Groups::Commands::ViewGroup::Type; - ListFreer listFreer; RequestType request; request.groupId = 1U; @@ -95351,7 +92292,6 @@ class TestGroupsCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::Groups::Commands::AddGroup::Type; - ListFreer listFreer; RequestType request; request.groupId = 1U; request.groupName = chip::Span("Group #1garbage: not in length on purpose", 8); @@ -95388,7 +92328,6 @@ class TestGroupsCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::Groups::Commands::ViewGroup::Type; - ListFreer listFreer; RequestType request; request.groupId = 1U; @@ -95426,7 +92365,6 @@ class TestGroupsCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::Groups::Commands::ViewGroup::Type; - ListFreer listFreer; RequestType request; request.groupId = 4369U; @@ -95504,7 +92442,6 @@ class TestGroupsCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::Groups::Commands::ViewGroup::Type; - ListFreer listFreer; RequestType request; request.groupId = 32767U; @@ -95540,7 +92477,6 @@ class TestGroupsCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::Groups::Commands::ViewGroup::Type; - ListFreer listFreer; RequestType request; request.groupId = 1U; @@ -95578,7 +92514,6 @@ class TestGroupsCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::Groups::Commands::RemoveGroup::Type; - ListFreer listFreer; RequestType request; request.groupId = 0U; @@ -95614,7 +92549,6 @@ class TestGroupsCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::Groups::Commands::RemoveGroup::Type; - ListFreer listFreer; RequestType request; request.groupId = 4U; @@ -95650,7 +92584,6 @@ class TestGroupsCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::Groups::Commands::ViewGroup::Type; - ListFreer listFreer; RequestType request; request.groupId = 1U; @@ -95688,7 +92621,6 @@ class TestGroupsCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::Groups::Commands::ViewGroup::Type; - ListFreer listFreer; RequestType request; request.groupId = 4369U; @@ -95774,7 +92706,6 @@ class TestGroupsCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::Groups::Commands::RemoveAllGroups::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -95802,7 +92733,6 @@ class TestGroupsCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::Groups::Commands::ViewGroup::Type; - ListFreer listFreer; RequestType request; request.groupId = 1U; @@ -95838,7 +92768,6 @@ class TestGroupsCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::Groups::Commands::ViewGroup::Type; - ListFreer listFreer; RequestType request; request.groupId = 4369U; @@ -95874,7 +92803,6 @@ class TestGroupsCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::Groups::Commands::ViewGroup::Type; - ListFreer listFreer; RequestType request; request.groupId = 32767U; @@ -96158,8 +93086,6 @@ class TestGroupKeyManagementCluster : public TestCommand chip::Controller::GroupKeyManagementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_1, OnFailureCallback_1, true)); @@ -96184,8 +93110,6 @@ class TestGroupKeyManagementCluster : public TestCommand chip::Controller::GroupKeyManagementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure( cluster.ReadAttribute( this, OnSuccessCallback_2, OnFailureCallback_2, true)); @@ -96210,7 +93134,6 @@ class TestGroupKeyManagementCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::Groups::Commands::AddGroup::Type; - ListFreer listFreer; RequestType request; request.groupId = 257U; request.groupName = chip::Span("Group #1garbage: not in length on purpose", 8); @@ -96247,7 +93170,6 @@ class TestGroupKeyManagementCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::Groups::Commands::AddGroup::Type; - ListFreer listFreer; RequestType request; request.groupId = 258U; request.groupName = chip::Span("Group #2garbage: not in length on purpose", 8); @@ -96284,7 +93206,6 @@ class TestGroupKeyManagementCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 0; using RequestType = chip::app::Clusters::GroupKeyManagement::Commands::KeySetWrite::Type; - ListFreer listFreer; RequestType request; request.groupKeySet.groupKeySetID = 417U; @@ -96337,7 +93258,6 @@ class TestGroupKeyManagementCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 0; using RequestType = chip::app::Clusters::GroupKeyManagement::Commands::KeySetWrite::Type; - ListFreer listFreer; RequestType request; request.groupKeySet.groupKeySetID = 418U; @@ -96390,7 +93310,6 @@ class TestGroupKeyManagementCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 0; using RequestType = chip::app::Clusters::GroupKeyManagement::Commands::KeySetRead::Type; - ListFreer listFreer; RequestType request; request.groupKeySetID = 417U; @@ -96475,8 +93394,6 @@ class TestGroupKeyManagementCluster : public TestCommand chip::Controller::GroupKeyManagementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_9, OnFailureCallback_9, true)); return CHIP_NO_ERROR; @@ -96513,8 +93430,6 @@ class TestGroupKeyManagementCluster : public TestCommand chip::Controller::GroupKeyManagementClusterTest cluster; cluster.Associate(mDevices[kIdentityAlpha], endpoint); - ListFreer listFreer; - ReturnErrorOnFailure(cluster.ReadAttribute( this, OnSuccessCallback_10, OnFailureCallback_10, true)); return CHIP_NO_ERROR; @@ -96554,7 +93469,6 @@ class TestGroupKeyManagementCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 0; using RequestType = chip::app::Clusters::GroupKeyManagement::Commands::KeySetRemove::Type; - ListFreer listFreer; RequestType request; request.groupKeySetID = 417U; @@ -96583,7 +93497,6 @@ class TestGroupKeyManagementCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 0; using RequestType = chip::app::Clusters::GroupKeyManagement::Commands::KeySetRead::Type; - ListFreer listFreer; RequestType request; request.groupKeySetID = 417U; @@ -96617,7 +93530,6 @@ class TestGroupKeyManagementCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 0; using RequestType = chip::app::Clusters::GroupKeyManagement::Commands::KeySetRead::Type; - ListFreer listFreer; RequestType request; request.groupKeySetID = 418U; @@ -96662,7 +93574,6 @@ class TestGroupKeyManagementCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::Groups::Commands::RemoveAllGroups::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -96690,7 +93601,6 @@ class TestGroupKeyManagementCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 0; using RequestType = chip::app::Clusters::GroupKeyManagement::Commands::KeySetRemove::Type; - ListFreer listFreer; RequestType request; request.groupKeySetID = 418U; @@ -96719,7 +93629,6 @@ class TestGroupKeyManagementCluster : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 0; using RequestType = chip::app::Clusters::GroupKeyManagement::Commands::KeySetRead::Type; - ListFreer listFreer; RequestType request; request.groupKeySetID = 418U; @@ -97107,7 +94016,6 @@ class TestDiscovery : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 0; using RequestType = chip::app::Clusters::AdministratorCommissioning::Commands::OpenBasicCommissioningWindow::Type; - ListFreer listFreer; RequestType request; request.commissioningTimeout = 120U; @@ -97252,7 +94160,6 @@ class TestDiscovery : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 0; using RequestType = chip::app::Clusters::AdministratorCommissioning::Commands::OpenBasicCommissioningWindow::Type; - ListFreer listFreer; RequestType request; request.commissioningTimeout = 120U; @@ -98572,7 +95479,6 @@ class TestGroupDemoCommand : public TestCommand const chip::GroupId groupId = 257; using RequestType = chip::app::Clusters::OnOff::Commands::On::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -98611,7 +95517,6 @@ class TestGroupDemoCommand : public TestCommand const chip::GroupId groupId = 257; using RequestType = chip::app::Clusters::OnOff::Commands::Off::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -98650,7 +95555,6 @@ class TestGroupDemoCommand : public TestCommand const chip::GroupId groupId = 257; using RequestType = chip::app::Clusters::OnOff::Commands::On::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -98689,7 +95593,6 @@ class TestGroupDemoCommand : public TestCommand const chip::GroupId groupId = 257; using RequestType = chip::app::Clusters::OnOff::Commands::Off::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -98728,7 +95631,6 @@ class TestGroupDemoCommand : public TestCommand const chip::GroupId groupId = 257; using RequestType = chip::app::Clusters::OnOff::Commands::On::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -98767,7 +95669,6 @@ class TestGroupDemoCommand : public TestCommand const chip::GroupId groupId = 257; using RequestType = chip::app::Clusters::OnOff::Commands::Off::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -98806,7 +95707,6 @@ class TestGroupDemoCommand : public TestCommand const chip::GroupId groupId = 257; using RequestType = chip::app::Clusters::OnOff::Commands::On::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -98845,7 +95745,6 @@ class TestGroupDemoCommand : public TestCommand const chip::GroupId groupId = 257; using RequestType = chip::app::Clusters::OnOff::Commands::Off::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -98884,7 +95783,6 @@ class TestGroupDemoCommand : public TestCommand const chip::GroupId groupId = 257; using RequestType = chip::app::Clusters::OnOff::Commands::On::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -98923,7 +95821,6 @@ class TestGroupDemoCommand : public TestCommand const chip::GroupId groupId = 257; using RequestType = chip::app::Clusters::OnOff::Commands::Off::Type; - ListFreer listFreer; RequestType request; auto success = [](void * context, const typename RequestType::ResponseType & data) { @@ -99059,7 +95956,6 @@ class TestGroupDemoConfig : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 1; using RequestType = chip::app::Clusters::Groups::Commands::AddGroup::Type; - ListFreer listFreer; RequestType request; request.groupId = 257U; request.groupName = chip::Span("Group #1garbage: not in length on purpose", 8); @@ -99096,7 +95992,6 @@ class TestGroupDemoConfig : public TestCommand const chip::EndpointId endpoint = mEndpoint.HasValue() ? mEndpoint.Value() : 0; using RequestType = chip::app::Clusters::GroupKeyManagement::Commands::KeySetWrite::Type; - ListFreer listFreer; RequestType request; request.groupKeySet.groupKeySetID = 417U;