From 101593688f5e250c6d055a92bf3f45741186baae Mon Sep 17 00:00:00 2001 From: Andrei Litvin Date: Tue, 26 Apr 2022 12:50:10 -0400 Subject: [PATCH] Enable several more clang-tidy checks. Fix a set of 'loop variable too small' errors. (#17690) * enable more clang-tidy checks * Enable one more check * More enabled tests * Enable more checks and make codechanges to make it pass * Restyle * Fix compilation * One more compile failure * Update more tidy errors in tests * Mock attribute storage compile fixes * Add message to static assert * Undo emberAfClusterCount cast to uint8_t * More changes for emberAfClusterCount returning uint8_t * more updates for cluster count * Updated code for iteration over array size * one more review update * one more review update * Attempt to fix some non-null asserts by tidy * Adding one more nullable marker * Adding one more nullable marker * Fix nullable marker syntax for darwin compile * Update nullability markers again, this time darwin passes locally for all bridges * Disable constructor nullability linter for test command constructors as they seem broken * Move nolint for nullability into darwin-tool rather than main chip-tool --- .clang-tidy | 6 - .../tests/partials/test_cluster.zapt | 2 + .../common/pigweed/rpc_services/Descriptor.h | 2 +- examples/shell/shell_common/cmd_server.cpp | 5 +- src/app/AttributePathExpandIterator.cpp | 6 +- src/app/clusters/descriptor/descriptor.cpp | 2 +- .../door-lock-server/door-lock-server.cpp | 2 +- .../ias-zone-server/ias-zone-server.cpp | 3 +- .../test-cluster-server.cpp | 8 +- src/app/tests/TestPendingNotificationMap.cpp | 2 +- src/app/util/attribute-storage.cpp | 6 +- src/app/util/mock/attribute-storage.cpp | 30 +- src/app/util/util.cpp | 14 +- src/credentials/CHIPCert.cpp | 2 +- .../CHIP/CHIPAttestationTrustStoreBridge.h | 2 +- .../CHIP/CHIPDevicePairingDelegateBridge.h | 4 +- .../Framework/CHIP/CHIPP256KeypairBridge.h | 2 +- .../CHIPPersistentStorageDelegateBridge.h | 5 +- src/lib/dnssd/tests/TestTxtFields.cpp | 2 +- src/lib/shell/streamer.cpp | 1 + .../tests/TestFixedBufferAllocator.cpp | 4 + src/setup_payload/Base38Encode.cpp | 2 +- src/tools/chip-cert/Cmd_PrintCert.cpp | 2 +- src/transport/tests/TestSecureSession.cpp | 8 +- .../zap-generated/test/Commands.h | 314 ++++++++++++++++++ 25 files changed, 378 insertions(+), 58 deletions(-) diff --git a/.clang-tidy b/.clang-tidy index 673fed604aea7f..2fa534bc5d2e77 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -4,8 +4,6 @@ Checks: > modernize-use-nullptr, bugprone-*, -bugprone-not-null-terminated-result, - -bugprone-suspicious-memory-comparison, - -bugprone-argument-comment, -bugprone-unused-return-value, -bugprone-branch-clone, -bugprone-easily-swappable-parameters, @@ -14,9 +12,7 @@ Checks: > -bugprone-forward-declaration-namespace, -bugprone-forwarding-reference-overload, -bugprone-undelegated-constructor, - -bugprone-sizeof-expression, -bugprone-implicit-widening-of-multiplication-result, - -bugprone-too-small-loop-variable, -bugprone-narrowing-conversions, -bugprone-misplaced-widening-cast, -bugprone-suspicious-include, @@ -33,10 +29,8 @@ Checks: > -clang-analyzer-security.insecureAPI.strcpy, -clang-analyzer-nullability.NullablePassedToNonnull, -clang-analyzer-optin.performance.Padding, - -clang-analyzer-unix.cstring.NullArg, -clang-analyzer-security.insecureAPI.rand, -clang-analyzer-core.NonNullParamChecker, - -clang-analyzer-nullability.NullPassedToNonnull, -clang-analyzer-unix.Malloc, -clang-diagnostic-implicit-int-conversion WarningsAsErrors: '*' diff --git a/examples/chip-tool-darwin/templates/tests/partials/test_cluster.zapt b/examples/chip-tool-darwin/templates/tests/partials/test_cluster.zapt index ad83b03720512b..3809ad4944248e 100644 --- a/examples/chip-tool-darwin/templates/tests/partials/test_cluster.zapt +++ b/examples/chip-tool-darwin/templates/tests/partials/test_cluster.zapt @@ -2,6 +2,7 @@ class {{filename}}: public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced {{#if ../credsIssuerConfigArg}} {{filename}}(CredentialIssuerCommands * credsIssuerConfig): TestCommand("{{filename}}", credsIssuerConfig), mTestIndex(0) {{else}} @@ -16,6 +17,7 @@ class {{filename}}: public TestCommandBridge {{/if}} {{/chip_tests_config}} } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~{{filename}}() { diff --git a/examples/common/pigweed/rpc_services/Descriptor.h b/examples/common/pigweed/rpc_services/Descriptor.h index dc305573761815..c8f99ba34fa60b 100644 --- a/examples/common/pigweed/rpc_services/Descriptor.h +++ b/examples/common/pigweed/rpc_services/Descriptor.h @@ -94,7 +94,7 @@ class Descriptor : public pw_rpc::nanopb::Descriptor::Service private: void ClusterList(EndpointId endpoint, bool server, ServerWriter<::chip_rpc_Cluster> & writer) { - uint16_t cluster_count = emberAfClusterCount(endpoint, server); + uint8_t cluster_count = emberAfClusterCount(endpoint, server); for (uint8_t cluster_index = 0; cluster_index < cluster_count; cluster_index++) { diff --git a/examples/shell/shell_common/cmd_server.cpp b/examples/shell/shell_common/cmd_server.cpp index a77a606bd73aea..680ae5a80412ae 100644 --- a/examples/shell/shell_common/cmd_server.cpp +++ b/examples/shell/shell_common/cmd_server.cpp @@ -172,8 +172,9 @@ static CHIP_ERROR CmdAppServerClusters(int argc, char ** argv) for (int i = 0; i < emberAfEndpointCount(); i++) { - EndpointId endpoint = emberAfEndpointFromIndex(i); - uint16_t clusterCount = emberAfClusterCount(endpoint, server); + EndpointId endpoint = emberAfEndpointFromIndex(i); + + uint8_t clusterCount = emberAfClusterCount(endpoint, server); streamer_printf(streamer_get(), "Endpoint %d:\r\n", endpoint); diff --git a/src/app/AttributePathExpandIterator.cpp b/src/app/AttributePathExpandIterator.cpp index 013cd2fac62652..1a1d127dd64522 100644 --- a/src/app/AttributePathExpandIterator.cpp +++ b/src/app/AttributePathExpandIterator.cpp @@ -127,7 +127,11 @@ void AttributePathExpandIterator::PrepareAttributeIndexRange(const AttributePath // and overflow to 0 for the max index) to us not going through // non-metadata global attributes for this attribute. mGlobalAttributeIndex = UINT8_MAX; - for (uint8_t idx = 0; idx < ArraySize(GlobalAttributesNotInMetadata); ++idx) + + static_assert(ArraySize(GlobalAttributesNotInMetadata) <= UINT8_MAX, "Iterating over at most 256 array entries"); + + const uint8_t arraySize = static_cast(ArraySize(GlobalAttributesNotInMetadata)); + for (uint8_t idx = 0; idx < arraySize; ++idx) { if (GlobalAttributesNotInMetadata[idx] == aAttributePath.mAttributeId) { diff --git a/src/app/clusters/descriptor/descriptor.cpp b/src/app/clusters/descriptor/descriptor.cpp index cb3e854704d8b9..543c8efb9eb490 100644 --- a/src/app/clusters/descriptor/descriptor.cpp +++ b/src/app/clusters/descriptor/descriptor.cpp @@ -124,7 +124,7 @@ CHIP_ERROR DescriptorAttrAccess::ReadDeviceAttribute(EndpointId endpoint, Attrib CHIP_ERROR DescriptorAttrAccess::ReadClientServerAttribute(EndpointId endpoint, AttributeValueEncoder & aEncoder, bool server) { CHIP_ERROR err = aEncoder.EncodeList([&endpoint, server](const auto & encoder) -> CHIP_ERROR { - uint16_t clusterCount = emberAfClusterCount(endpoint, server); + uint8_t clusterCount = emberAfClusterCount(endpoint, server); for (uint8_t clusterIndex = 0; clusterIndex < clusterCount; clusterIndex++) { diff --git a/src/app/clusters/door-lock-server/door-lock-server.cpp b/src/app/clusters/door-lock-server/door-lock-server.cpp index 14b9cb6c8fd6a2..e2a93fbb2a6418 100644 --- a/src/app/clusters/door-lock-server/door-lock-server.cpp +++ b/src/app/clusters/door-lock-server/door-lock-server.cpp @@ -1423,7 +1423,7 @@ bool DoorLockServer::findUserIndexByCredential(chip::EndpointId endpointId, DlCr continue; } - for (uint16_t j = 0; j < user.credentials.size(); ++j) + for (size_t j = 0; j < user.credentials.size(); ++j) { if (user.credentials.data()[j].CredentialIndex == credentialIndex && user.credentials.data()[j].CredentialType == to_underlying(credentialType)) diff --git a/src/app/clusters/ias-zone-server/ias-zone-server.cpp b/src/app/clusters/ias-zone-server/ias-zone-server.cpp index 2cd57951ec81fe..a14c8d13176f74 100644 --- a/src/app/clusters/ias-zone-server/ias-zone-server.cpp +++ b/src/app/clusters/ias-zone-server/ias-zone-server.cpp @@ -628,13 +628,12 @@ static void unenrollSecurityDevice(EndpointId endpoint) void emberAfPluginIasZoneServerStackStatusCallback(EmberStatus status) { EndpointId endpoint; - uint8_t i; // If the device has left the network, unenroll all endpoints on the device // that are servers of the IAS Zone Cluster if (status == EMBER_NETWORK_DOWN && emberAfNetworkState() == EMBER_NO_NETWORK) { - for (i = 0; i < emberAfEndpointCount(); i++) + for (uint16_t i = 0; i < emberAfEndpointCount(); i++) { endpoint = emberAfEndpointFromIndex(i); if (emberAfContainsServer(endpoint, ZCL_IAS_ZONE_CLUSTER_ID)) diff --git a/src/app/clusters/test-cluster-server/test-cluster-server.cpp b/src/app/clusters/test-cluster-server/test-cluster-server.cpp index bc6d400cb1ad45..fded78cf224ef4 100644 --- a/src/app/clusters/test-cluster-server/test-cluster-server.cpp +++ b/src/app/clusters/test-cluster-server/test-cluster-server.cpp @@ -233,7 +233,7 @@ CHIP_ERROR TestAttrAccess::WriteNullableStruct(AttributeValueDecoder & aDecoder) CHIP_ERROR TestAttrAccess::ReadListInt8uAttribute(AttributeValueEncoder & aEncoder) { return aEncoder.EncodeList([](const auto & encoder) -> CHIP_ERROR { - for (uint8_t index = 0; index < gListUint8DataLen; index++) + for (size_t index = 0; index < gListUint8DataLen; index++) { ReturnErrorOnFailure(encoder.Encode(gListUint8Data[index])); } @@ -281,7 +281,7 @@ CHIP_ERROR TestAttrAccess::WriteListInt8uAttribute(const ConcreteDataAttributePa CHIP_ERROR TestAttrAccess::ReadListOctetStringAttribute(AttributeValueEncoder & aEncoder) { return aEncoder.EncodeList([](const auto & encoder) -> CHIP_ERROR { - for (uint8_t index = 0; index < gListOctetStringDataLen; index++) + for (size_t index = 0; index < gListOctetStringDataLen; index++) { ReturnErrorOnFailure(encoder.Encode(gListOctetStringData[index].AsSpan())); } @@ -335,7 +335,7 @@ CHIP_ERROR TestAttrAccess::ReadListLongOctetStringAttribute(AttributeValueEncode // The ListOctetStringAttribute takes 512 bytes, and the whole attribute will exceed the IPv6 MTU, so we can test list chunking // feature with this attribute. return aEncoder.EncodeList([](const auto & encoder) -> CHIP_ERROR { - for (uint8_t index = 0; index < gListLongOctetStringLen; index++) + for (size_t index = 0; index < gListLongOctetStringLen; index++) { ReturnErrorOnFailure(encoder.Encode(ByteSpan(chip::Uint8::from_const_char(sLongOctetStringBuf), 512))); } @@ -381,7 +381,7 @@ CHIP_ERROR TestAttrAccess::WriteListLongOctetStringAttribute(const ConcreteDataA CHIP_ERROR TestAttrAccess::ReadListStructOctetStringAttribute(AttributeValueEncoder & aEncoder) { return aEncoder.EncodeList([](const auto & encoder) -> CHIP_ERROR { - for (uint8_t index = 0; index < gListOperationalCertLen; index++) + for (size_t index = 0; index < gListOperationalCertLen; index++) { Structs::TestListStructOctet::Type structOctet; structOctet.fabricIndex = listStructOctetStringData[index].fabricIndex; diff --git a/src/app/tests/TestPendingNotificationMap.cpp b/src/app/tests/TestPendingNotificationMap.cpp index a622b2da701ce8..621f8ad1c84f0a 100644 --- a/src/app/tests/TestPendingNotificationMap.cpp +++ b/src/app/tests/TestPendingNotificationMap.cpp @@ -78,7 +78,7 @@ void TestAddRemove(nlTestSuite * aSuite, void * aContext) pendingMap.RemoveAllEntriesForNode(0, 0); uint8_t expectedEntryIndecies[] = { 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19 }; iter = pendingMap.begin(); - for (uint8_t i = 0; i < sizeof(expectedEntryIndecies); i++) + for (size_t i = 0; i < sizeof(expectedEntryIndecies); i++) { PendingNotificationEntry entry = *iter; NL_TEST_ASSERT(aSuite, entry.mBindingEntryId == expectedEntryIndecies[i]); diff --git a/src/app/util/attribute-storage.cpp b/src/app/util/attribute-storage.cpp index fc29be93756a56..cc5630847c4cfc 100644 --- a/src/app/util/attribute-storage.cpp +++ b/src/app/util/attribute-storage.cpp @@ -404,7 +404,7 @@ static void initializeEndpoint(EmberAfDefinedEndpoint * definedEndpoint) // Calls the init functions. void emAfCallInits(void) { - uint8_t index; + uint16_t index; for (index = 0; index < emberAfEndpointCount(); index++) { if (emberAfEndpointIndexIsEnabled(index)) @@ -553,7 +553,7 @@ EmberAfStatus emAfReadOrWriteAttribute(EmberAfAttributeSearchRecord * attRecord, uint16_t attributeOffsetIndex = 0; - for (uint8_t ep = 0; ep < emberAfEndpointCount(); ep++) + for (uint16_t ep = 0; ep < emberAfEndpointCount(); ep++) { // Is this a dynamic endpoint? bool isDynamicEndpoint = (ep >= emberAfFixedEndpointCount()); @@ -702,7 +702,7 @@ const EmberAfCluster * emberAfFindClusterInType(const EmberAfEndpointType * endp uint8_t emberAfClusterIndex(EndpointId endpoint, ClusterId clusterId, EmberAfClusterMask mask) { - for (uint8_t ep = 0; ep < emberAfEndpointCount(); ep++) + for (uint16_t ep = 0; ep < emberAfEndpointCount(); ep++) { // Check the endpoint id first, because that way we avoid examining the // endpoint type for endpoints that are not actually defined. diff --git a/src/app/util/mock/attribute-storage.cpp b/src/app/util/mock/attribute-storage.cpp index 9b40014d416f4a..57c339504f3840 100644 --- a/src/app/util/mock/attribute-storage.cpp +++ b/src/app/util/mock/attribute-storage.cpp @@ -103,11 +103,13 @@ uint16_t emberAfEndpointCount(void) uint16_t emberAfIndexFromEndpoint(chip::EndpointId endpoint) { - for (uint16_t i = 0; i < ArraySize(endpoints); i++) + static_assert(ArraySize(endpoints) < UINT16_MAX, "Need to be able to return endpoint index as a 16-bit value."); + + for (size_t i = 0; i < ArraySize(endpoints); i++) { if (endpoints[i] == endpoint) { - return i; + return static_cast(i); } } return UINT16_MAX; @@ -115,7 +117,7 @@ uint16_t emberAfIndexFromEndpoint(chip::EndpointId endpoint) uint8_t emberAfClusterCount(chip::EndpointId endpoint, bool server) { - for (uint16_t i = 0; i < ArraySize(endpoints); i++) + for (size_t i = 0; i < ArraySize(endpoints); i++) { if (endpoints[i] == endpoint) { @@ -127,9 +129,9 @@ uint8_t emberAfClusterCount(chip::EndpointId endpoint, bool server) uint16_t emberAfGetServerAttributeCount(chip::EndpointId endpoint, chip::ClusterId cluster) { - uint16_t endpointIndex = emberAfIndexFromEndpoint(endpoint); - uint16_t clusterCountOnEndpoint = emberAfClusterCount(endpoint, true); - for (uint16_t i = 0; i < clusterCountOnEndpoint; i++) + uint16_t endpointIndex = emberAfIndexFromEndpoint(endpoint); + uint8_t clusterCountOnEndpoint = emberAfClusterCount(endpoint, true); + for (uint8_t i = 0; i < clusterCountOnEndpoint; i++) { if (clusters[i + clusterIndex[endpointIndex]] == cluster) { @@ -142,9 +144,9 @@ uint16_t emberAfGetServerAttributeCount(chip::EndpointId endpoint, chip::Cluster uint16_t emberAfGetServerAttributeIndexByAttributeId(chip::EndpointId endpoint, chip::ClusterId cluster, chip::AttributeId attributeId) { - uint16_t endpointIndex = emberAfIndexFromEndpoint(endpoint); - uint16_t clusterCountOnEndpoint = emberAfClusterCount(endpoint, true); - for (uint16_t i = 0; i < clusterCountOnEndpoint; i++) + uint16_t endpointIndex = emberAfIndexFromEndpoint(endpoint); + uint8_t clusterCountOnEndpoint = emberAfClusterCount(endpoint, true); + for (uint8_t i = 0; i < clusterCountOnEndpoint; i++) { if (clusters[i + clusterIndex[endpointIndex]] == cluster) { @@ -180,9 +182,9 @@ chip::Optional emberAfGetNthClusterId(chip::EndpointId endpoint chip::Optional emberAfGetServerAttributeIdByIndex(chip::EndpointId endpoint, chip::ClusterId cluster, uint16_t index) { - uint16_t endpointIndex = emberAfIndexFromEndpoint(endpoint); - uint16_t clusterCountOnEndpoint = emberAfClusterCount(endpoint, true); - for (uint16_t i = 0; i < clusterCountOnEndpoint; i++) + uint16_t endpointIndex = emberAfIndexFromEndpoint(endpoint); + uint8_t clusterCountOnEndpoint = emberAfClusterCount(endpoint, true); + for (uint8_t i = 0; i < clusterCountOnEndpoint; i++) { if (clusters[i + clusterIndex[endpointIndex]] == cluster) { @@ -199,8 +201,8 @@ chip::Optional emberAfGetServerAttributeIdByIndex(chip::Endpo uint8_t emberAfClusterIndex(chip::EndpointId endpoint, chip::ClusterId cluster, EmberAfClusterMask mask) { - uint16_t endpointIndex = emberAfIndexFromEndpoint(endpoint); - uint16_t clusterCountOnEndpoint = emberAfClusterCount(endpoint, true); + uint16_t endpointIndex = emberAfIndexFromEndpoint(endpoint); + uint8_t clusterCountOnEndpoint = emberAfClusterCount(endpoint, true); for (uint8_t i = 0; i < clusterCountOnEndpoint; i++) { if (clusters[i + clusterIndex[endpointIndex]] == cluster) diff --git a/src/app/util/util.cpp b/src/app/util/util.cpp index fa64cecbf5addc..0c5dcc0fb6c348 100644 --- a/src/app/util/util.cpp +++ b/src/app/util/util.cpp @@ -520,7 +520,7 @@ int8_t emberAfCompareValues(const uint8_t * val1, const uint8_t * val2, uint16_t // no length means nothing to compare. Shouldn't even happen, since len is sizeof(some-integer-type). return 0; } - uint8_t i, j, k; + if (signedNumber) { // signed number comparison if (len <= 4) @@ -529,12 +529,12 @@ int8_t emberAfCompareValues(const uint8_t * val1, const uint8_t * val2, uint16_t int32_t accum2 = 0x0; int32_t all1s = -1; - for (i = 0; i < len; i++) + for (uint16_t i = 0; i < len; i++) { - j = (val1 == nullptr ? 0 : (EM_BIG_ENDIAN ? val1[i] : val1[(len - 1) - i])); + uint8_t j = (val1 == nullptr ? 0 : (EM_BIG_ENDIAN ? val1[i] : val1[(len - 1) - i])); accum1 |= j << (8 * (len - 1 - i)); - k = (EM_BIG_ENDIAN ? val2[i] : val2[(len - 1) - i]); + uint8_t k = (EM_BIG_ENDIAN ? val2[i] : val2[(len - 1) - i]); accum2 |= k << (8 * (len - 1 - i)); } @@ -568,10 +568,10 @@ int8_t emberAfCompareValues(const uint8_t * val1, const uint8_t * val2, uint16_t } // regular unsigned number comparison - for (i = 0; i < len; i++) + for (uint16_t i = 0; i < len; i++) { - j = (val1 == nullptr ? 0 : (EM_BIG_ENDIAN ? val1[i] : val1[(len - 1) - i])); - k = (EM_BIG_ENDIAN ? val2[i] : val2[(len - 1) - i]); + uint8_t j = (val1 == nullptr ? 0 : (EM_BIG_ENDIAN ? val1[i] : val1[(len - 1) - i])); + uint8_t k = (EM_BIG_ENDIAN ? val2[i] : val2[(len - 1) - i]); if (j > k) { diff --git a/src/credentials/CHIPCert.cpp b/src/credentials/CHIPCert.cpp index 00f235dcc574e6..ed37870c108246 100644 --- a/src/credentials/CHIPCert.cpp +++ b/src/credentials/CHIPCert.cpp @@ -1233,7 +1233,7 @@ CHIP_ERROR ExtractCATsFromOpCert(const ChipCertificateData & opcert, CATValues & cats.values[catCount++] = static_cast(rdn.mChipVal); } } - for (uint8_t i = catCount; i < cats.size(); ++i) + for (size_t i = catCount; i < cats.size(); ++i) { cats.values[i] = kUndefinedCAT; } diff --git a/src/darwin/Framework/CHIP/CHIPAttestationTrustStoreBridge.h b/src/darwin/Framework/CHIP/CHIPAttestationTrustStoreBridge.h index 318bc6984bb685..b24657b5b67448 100644 --- a/src/darwin/Framework/CHIP/CHIPAttestationTrustStoreBridge.h +++ b/src/darwin/Framework/CHIP/CHIPAttestationTrustStoreBridge.h @@ -30,7 +30,7 @@ class CHIPAttestationTrustStoreBridge : public chip::Credentials::AttestationTru const chip::ByteSpan & skid, chip::MutableByteSpan & outPaaDerBuffer) const override; private: - NSArray * mPaaCerts; + NSArray * _Nullable mPaaCerts; }; NS_ASSUME_NONNULL_END diff --git a/src/darwin/Framework/CHIP/CHIPDevicePairingDelegateBridge.h b/src/darwin/Framework/CHIP/CHIPDevicePairingDelegateBridge.h index 7763219114b3ed..8a391e749af3c7 100644 --- a/src/darwin/Framework/CHIP/CHIPDevicePairingDelegateBridge.h +++ b/src/darwin/Framework/CHIP/CHIPDevicePairingDelegateBridge.h @@ -40,8 +40,8 @@ class CHIPDevicePairingDelegateBridge : public chip::Controller::DevicePairingDe void OnCommissioningComplete(chip::NodeId deviceId, CHIP_ERROR error) override; private: - id mDelegate; - dispatch_queue_t mQueue; + _Nullable id mDelegate; + _Nullable dispatch_queue_t mQueue; CHIPPairingStatus MapStatus(chip::Controller::DevicePairingDelegate::Status status); }; diff --git a/src/darwin/Framework/CHIP/CHIPP256KeypairBridge.h b/src/darwin/Framework/CHIP/CHIPP256KeypairBridge.h index f09a0effeda1d8..356d8a03b1067f 100644 --- a/src/darwin/Framework/CHIP/CHIPP256KeypairBridge.h +++ b/src/darwin/Framework/CHIP/CHIPP256KeypairBridge.h @@ -49,7 +49,7 @@ class CHIPP256KeypairBridge : public chip::Crypto::P256KeypairBase const chip::Crypto::P256PublicKey & Pubkey() const override { return mPubkey; }; private: - id mKeypair; + id _Nullable mKeypair; chip::Crypto::P256PublicKey mPubkey; CHIP_ERROR setPubkey(); diff --git a/src/darwin/Framework/CHIP/CHIPPersistentStorageDelegateBridge.h b/src/darwin/Framework/CHIP/CHIPPersistentStorageDelegateBridge.h index d70efe5c632bbe..395ba3cdf44186 100644 --- a/src/darwin/Framework/CHIP/CHIPPersistentStorageDelegateBridge.h +++ b/src/darwin/Framework/CHIP/CHIPPersistentStorageDelegateBridge.h @@ -35,9 +35,8 @@ class CHIPPersistentStorageDelegateBridge : public chip::PersistentStorageDelega CHIP_ERROR SyncDeleteKeyValue(const char * key) override; private: - id mDelegate; - - dispatch_queue_t mWorkQueue; + _Nullable id mDelegate; + _Nullable dispatch_queue_t mWorkQueue; }; NS_ASSUME_NONNULL_END diff --git a/src/lib/dnssd/tests/TestTxtFields.cpp b/src/lib/dnssd/tests/TestTxtFields.cpp index ef6d58931a80ab..90d96d1b176a59 100644 --- a/src/lib/dnssd/tests/TestTxtFields.cpp +++ b/src/lib/dnssd/tests/TestTxtFields.cpp @@ -232,7 +232,7 @@ void TestGetRotatingDeviceId(nlTestSuite * inSuite, void * inContext) strcpy(ri, "000102030405060708090A0B0C0D0E0F101112131415161718191A1B1C1D1E1F202122232425262728292A2B2C2D2E2F3031"); GetRotatingDeviceId(GetSpan(ri), id, &len); NL_TEST_ASSERT(inSuite, len == sizeof(id)); - for (uint8_t i = 0; i < sizeof(id); ++i) + for (size_t i = 0; i < sizeof(id); ++i) { NL_TEST_ASSERT(inSuite, id[i] == i); } diff --git a/src/lib/shell/streamer.cpp b/src/lib/shell/streamer.cpp index 852688ebc33edb..e44352bc53f20c 100644 --- a/src/lib/shell/streamer.cpp +++ b/src/lib/shell/streamer.cpp @@ -57,6 +57,7 @@ ssize_t ENFORCE_FORMAT(2, 0) streamer_vprintf(streamer_t * self, const char * fm // vsnprintf doesn't return negative numbers as long as the length it's // passed fits in INT_MAX. + // NOLINTNEXTLINE(bugprone-sizeof-expression) static_assert(sizeof(buf) <= INT_MAX, "Return value cast not valid"); len = static_cast(vsnprintf(buf, sizeof(buf), fmt, ap)); if (len >= sizeof(buf)) diff --git a/src/lib/support/tests/TestFixedBufferAllocator.cpp b/src/lib/support/tests/TestFixedBufferAllocator.cpp index 8bd42fc4755205..94426f84d1acc1 100644 --- a/src/lib/support/tests/TestFixedBufferAllocator.cpp +++ b/src/lib/support/tests/TestFixedBufferAllocator.cpp @@ -36,6 +36,8 @@ void TestClone(nlTestSuite * inSuite, void * inContext) NL_TEST_ASSERT(inSuite, allocatedString != nullptr); NL_TEST_ASSERT(inSuite, allocatedString != kTestString); + + // NOLINTNEXTLINE(clang-analyzer-unix.cstring.NullArg): null check for allocated string already done NL_TEST_ASSERT(inSuite, strcmp(allocatedString, kTestString) == 0); const uint8_t kTestData[] = { 0xDE, 0xAD, 0xBE, 0xEF }; @@ -43,6 +45,8 @@ void TestClone(nlTestSuite * inSuite, void * inContext) NL_TEST_ASSERT(inSuite, allocatedData != nullptr); NL_TEST_ASSERT(inSuite, allocatedData != kTestData); + + // NOLINTNEXTLINE(clang-analyzer-unix.cstring.NullArg): null check for allocated data already done NL_TEST_ASSERT(inSuite, memcmp(allocatedData, kTestData, sizeof(kTestData)) == 0); } diff --git a/src/setup_payload/Base38Encode.cpp b/src/setup_payload/Base38Encode.cpp index c9677b0e264eeb..f00f4b54602eff 100644 --- a/src/setup_payload/Base38Encode.cpp +++ b/src/setup_payload/Base38Encode.cpp @@ -55,7 +55,7 @@ CHIP_ERROR base38Encode(ByteSpan in_buf, MutableCharSpan & out_buf) size_t bytesInChunk = (in_buf_len >= kMaxBytesSingleChunkLen) ? kMaxBytesSingleChunkLen : in_buf_len; - for (uint8_t byte_idx = 0; byte_idx < bytesInChunk; byte_idx++) + for (size_t byte_idx = 0; byte_idx < bytesInChunk; byte_idx++) { value += static_cast(in_buf_ptr[byte_idx] << (8 * byte_idx)); } diff --git a/src/tools/chip-cert/Cmd_PrintCert.cpp b/src/tools/chip-cert/Cmd_PrintCert.cpp index b02af795de4b1f..763dda51d5741a 100644 --- a/src/tools/chip-cert/Cmd_PrintCert.cpp +++ b/src/tools/chip-cert/Cmd_PrintCert.cpp @@ -133,7 +133,7 @@ void PrintHexField(FILE * file, const char * name, int indent, size_t count, con Indent(file, indent); indent += fprintf(file, "%s: ", name); - for (uint16_t i = 0; i < count; i++) + for (size_t i = 0; i < count; i++) { if (i != 0 && i != count && i % countPerRow == 0) { diff --git a/src/transport/tests/TestSecureSession.cpp b/src/transport/tests/TestSecureSession.cpp index 60625f717597be..77afcc8fa1c53d 100644 --- a/src/transport/tests/TestSecureSession.cpp +++ b/src/transport/tests/TestSecureSession.cpp @@ -66,7 +66,7 @@ void SecureChannelInitTest(nlTestSuite * inSuite, void * inContext) const char * salt = "Test Salt"; CryptoContext channel2; NL_TEST_ASSERT(inSuite, - channel2.InitFromKeyPair(keypair, keypair2.Pubkey(), ByteSpan((const uint8_t *) salt, sizeof(salt)), + channel2.InitFromKeyPair(keypair, keypair2.Pubkey(), ByteSpan((const uint8_t *) salt, strlen(salt)), CryptoContext::SessionInfoType::kSessionEstablishment, CryptoContext::SessionRole::kInitiator) == CHIP_NO_ERROR); } @@ -99,7 +99,7 @@ void SecureChannelEncryptTest(nlTestSuite * inSuite, void * inContext) const char * salt = "Test Salt"; NL_TEST_ASSERT(inSuite, - channel.InitFromKeyPair(keypair, keypair2.Pubkey(), ByteSpan((const uint8_t *) salt, sizeof(salt)), + channel.InitFromKeyPair(keypair, keypair2.Pubkey(), ByteSpan((const uint8_t *) salt, strlen(salt)), CryptoContext::SessionInfoType::kSessionEstablishment, CryptoContext::SessionRole::kInitiator) == CHIP_NO_ERROR); @@ -137,7 +137,7 @@ void SecureChannelDecryptTest(nlTestSuite * inSuite, void * inContext) NL_TEST_ASSERT(inSuite, keypair2.Initialize() == CHIP_NO_ERROR); NL_TEST_ASSERT(inSuite, - channel.InitFromKeyPair(keypair, keypair2.Pubkey(), ByteSpan((const uint8_t *) salt, sizeof(salt)), + channel.InitFromKeyPair(keypair, keypair2.Pubkey(), ByteSpan((const uint8_t *) salt, strlen(salt)), CryptoContext::SessionInfoType::kSessionEstablishment, CryptoContext::SessionRole::kInitiator) == CHIP_NO_ERROR); NL_TEST_ASSERT(inSuite, channel.Encrypt(plain_text, sizeof(plain_text), encrypted, nonce, packetHeader, mac) == CHIP_NO_ERROR); @@ -149,7 +149,7 @@ void SecureChannelDecryptTest(nlTestSuite * inSuite, void * inContext) channel2.Decrypt(encrypted, sizeof(plain_text), output, nonce, packetHeader, mac) == CHIP_ERROR_INVALID_USE_OF_SESSION_KEY); NL_TEST_ASSERT(inSuite, - channel2.InitFromKeyPair(keypair2, keypair.Pubkey(), ByteSpan((const uint8_t *) salt, sizeof(salt)), + channel2.InitFromKeyPair(keypair2, keypair.Pubkey(), ByteSpan((const uint8_t *) salt, strlen(salt)), CryptoContext::SessionInfoType::kSessionEstablishment, CryptoContext::SessionRole::kResponder) == CHIP_NO_ERROR); diff --git a/zzz_generated/chip-tool-darwin/zap-generated/test/Commands.h b/zzz_generated/chip-tool-darwin/zap-generated/test/Commands.h index b4e289492a3390..e6bb84ddf4b0fc 100644 --- a/zzz_generated/chip-tool-darwin/zap-generated/test/Commands.h +++ b/zzz_generated/chip-tool-darwin/zap-generated/test/Commands.h @@ -205,6 +205,7 @@ class ManualTestList : public Command { class TestAccessControlCluster : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced TestAccessControlCluster() : TestCommandBridge("TestAccessControlCluster") , mTestIndex(0) @@ -214,6 +215,7 @@ class TestAccessControlCluster : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~TestAccessControlCluster() {} @@ -1508,6 +1510,7 @@ class TestAccessControlCluster : public TestCommandBridge { class Test_TC_BI_1_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_BI_1_1() : TestCommandBridge("Test_TC_BI_1_1") , mTestIndex(0) @@ -1517,6 +1520,7 @@ class Test_TC_BI_1_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_BI_1_1() {} @@ -1757,6 +1761,7 @@ class Test_TC_BI_1_1 : public TestCommandBridge { class Test_TC_BI_2_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_BI_2_1() : TestCommandBridge("Test_TC_BI_2_1") , mTestIndex(0) @@ -1766,6 +1771,7 @@ class Test_TC_BI_2_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_BI_2_1() {} @@ -2128,6 +2134,7 @@ class Test_TC_BI_2_1 : public TestCommandBridge { class Test_TC_BI_2_2 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_BI_2_2() : TestCommandBridge("Test_TC_BI_2_2") , mTestIndex(0) @@ -2137,6 +2144,7 @@ class Test_TC_BI_2_2 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_BI_2_2() {} @@ -2453,6 +2461,7 @@ class Test_TC_BI_2_2 : public TestCommandBridge { class Test_TC_BOOL_1_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_BOOL_1_1() : TestCommandBridge("Test_TC_BOOL_1_1") , mTestIndex(0) @@ -2462,6 +2471,7 @@ class Test_TC_BOOL_1_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_BOOL_1_1() {} @@ -2636,6 +2646,7 @@ class Test_TC_BOOL_1_1 : public TestCommandBridge { class Test_TC_BOOL_2_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_BOOL_2_1() : TestCommandBridge("Test_TC_BOOL_2_1") , mTestIndex(0) @@ -2645,6 +2656,7 @@ class Test_TC_BOOL_2_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_BOOL_2_1() {} @@ -2753,6 +2765,7 @@ class Test_TC_BOOL_2_1 : public TestCommandBridge { class Test_TC_BRAC_1_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_BRAC_1_1() : TestCommandBridge("Test_TC_BRAC_1_1") , mTestIndex(0) @@ -2762,6 +2775,7 @@ class Test_TC_BRAC_1_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_BRAC_1_1() {} @@ -2936,6 +2950,7 @@ class Test_TC_BRAC_1_1 : public TestCommandBridge { class Test_TC_CC_1_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_CC_1_1() : TestCommandBridge("Test_TC_CC_1_1") , mTestIndex(0) @@ -2945,6 +2960,7 @@ class Test_TC_CC_1_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_CC_1_1() {} @@ -3075,6 +3091,7 @@ class Test_TC_CC_1_1 : public TestCommandBridge { class Test_TC_CC_2_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_CC_2_1() : TestCommandBridge("Test_TC_CC_2_1") , mTestIndex(0) @@ -3084,6 +3101,7 @@ class Test_TC_CC_2_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_CC_2_1() {} @@ -6937,6 +6955,7 @@ class Test_TC_CC_2_1 : public TestCommandBridge { class Test_TC_CC_3_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_CC_3_1() : TestCommandBridge("Test_TC_CC_3_1") , mTestIndex(0) @@ -6946,6 +6965,7 @@ class Test_TC_CC_3_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_CC_3_1() {} @@ -7241,6 +7261,7 @@ class Test_TC_CC_3_1 : public TestCommandBridge { class Test_TC_CC_3_2 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_CC_3_2() : TestCommandBridge("Test_TC_CC_3_2") , mTestIndex(0) @@ -7250,6 +7271,7 @@ class Test_TC_CC_3_2 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_CC_3_2() {} @@ -7512,6 +7534,7 @@ class Test_TC_CC_3_2 : public TestCommandBridge { class Test_TC_CC_3_3 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_CC_3_3() : TestCommandBridge("Test_TC_CC_3_3") , mTestIndex(0) @@ -7521,6 +7544,7 @@ class Test_TC_CC_3_3 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_CC_3_3() {} @@ -7731,6 +7755,7 @@ class Test_TC_CC_3_3 : public TestCommandBridge { class Test_TC_CC_4_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_CC_4_1() : TestCommandBridge("Test_TC_CC_4_1") , mTestIndex(0) @@ -7740,6 +7765,7 @@ class Test_TC_CC_4_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_CC_4_1() {} @@ -7921,6 +7947,7 @@ class Test_TC_CC_4_1 : public TestCommandBridge { class Test_TC_CC_4_2 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_CC_4_2() : TestCommandBridge("Test_TC_CC_4_2") , mTestIndex(0) @@ -7930,6 +7957,7 @@ class Test_TC_CC_4_2 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_CC_4_2() {} @@ -8246,6 +8274,7 @@ class Test_TC_CC_4_2 : public TestCommandBridge { class Test_TC_CC_4_3 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_CC_4_3() : TestCommandBridge("Test_TC_CC_4_3") , mTestIndex(0) @@ -8255,6 +8284,7 @@ class Test_TC_CC_4_3 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_CC_4_3() {} @@ -8465,6 +8495,7 @@ class Test_TC_CC_4_3 : public TestCommandBridge { class Test_TC_CC_4_4 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_CC_4_4() : TestCommandBridge("Test_TC_CC_4_4") , mTestIndex(0) @@ -8474,6 +8505,7 @@ class Test_TC_CC_4_4 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_CC_4_4() {} @@ -8656,6 +8688,7 @@ class Test_TC_CC_4_4 : public TestCommandBridge { class Test_TC_CC_5_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_CC_5_1() : TestCommandBridge("Test_TC_CC_5_1") , mTestIndex(0) @@ -8665,6 +8698,7 @@ class Test_TC_CC_5_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_CC_5_1() {} @@ -8847,6 +8881,7 @@ class Test_TC_CC_5_1 : public TestCommandBridge { class Test_TC_CC_5_2 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_CC_5_2() : TestCommandBridge("Test_TC_CC_5_2") , mTestIndex(0) @@ -8856,6 +8891,7 @@ class Test_TC_CC_5_2 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_CC_5_2() {} @@ -9062,6 +9098,7 @@ class Test_TC_CC_5_2 : public TestCommandBridge { class Test_TC_CC_5_3 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_CC_5_3() : TestCommandBridge("Test_TC_CC_5_3") , mTestIndex(0) @@ -9071,6 +9108,7 @@ class Test_TC_CC_5_3 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_CC_5_3() {} @@ -9253,6 +9291,7 @@ class Test_TC_CC_5_3 : public TestCommandBridge { class Test_TC_CC_6_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_CC_6_1() : TestCommandBridge("Test_TC_CC_6_1") , mTestIndex(0) @@ -9262,6 +9301,7 @@ class Test_TC_CC_6_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_CC_6_1() {} @@ -9443,6 +9483,7 @@ class Test_TC_CC_6_1 : public TestCommandBridge { class Test_TC_CC_6_2 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_CC_6_2() : TestCommandBridge("Test_TC_CC_6_2") , mTestIndex(0) @@ -9452,6 +9493,7 @@ class Test_TC_CC_6_2 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_CC_6_2() {} @@ -9809,6 +9851,7 @@ class Test_TC_CC_6_2 : public TestCommandBridge { class Test_TC_CC_6_3 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_CC_6_3() : TestCommandBridge("Test_TC_CC_6_3") , mTestIndex(0) @@ -9818,6 +9861,7 @@ class Test_TC_CC_6_3 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_CC_6_3() {} @@ -10032,6 +10076,7 @@ class Test_TC_CC_6_3 : public TestCommandBridge { class Test_TC_CC_7_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_CC_7_1() : TestCommandBridge("Test_TC_CC_7_1") , mTestIndex(0) @@ -10041,6 +10086,7 @@ class Test_TC_CC_7_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_CC_7_1() {} @@ -10335,6 +10381,7 @@ class Test_TC_CC_7_1 : public TestCommandBridge { class Test_TC_CC_7_2 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_CC_7_2() : TestCommandBridge("Test_TC_CC_7_2") , mTestIndex(0) @@ -10344,6 +10391,7 @@ class Test_TC_CC_7_2 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_CC_7_2() {} @@ -10635,6 +10683,7 @@ class Test_TC_CC_7_2 : public TestCommandBridge { class Test_TC_CC_7_3 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_CC_7_3() : TestCommandBridge("Test_TC_CC_7_3") , mTestIndex(0) @@ -10644,6 +10693,7 @@ class Test_TC_CC_7_3 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_CC_7_3() {} @@ -10854,6 +10904,7 @@ class Test_TC_CC_7_3 : public TestCommandBridge { class Test_TC_CC_7_4 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_CC_7_4() : TestCommandBridge("Test_TC_CC_7_4") , mTestIndex(0) @@ -10863,6 +10914,7 @@ class Test_TC_CC_7_4 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_CC_7_4() {} @@ -11045,6 +11097,7 @@ class Test_TC_CC_7_4 : public TestCommandBridge { class Test_TC_CC_8_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_CC_8_1() : TestCommandBridge("Test_TC_CC_8_1") , mTestIndex(0) @@ -11054,6 +11107,7 @@ class Test_TC_CC_8_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_CC_8_1() {} @@ -11537,6 +11591,7 @@ class Test_TC_CC_8_1 : public TestCommandBridge { class Test_TC_CC_9_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_CC_9_1() : TestCommandBridge("Test_TC_CC_9_1") , mTestIndex(0) @@ -11546,6 +11601,7 @@ class Test_TC_CC_9_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_CC_9_1() {} @@ -13229,6 +13285,7 @@ class Test_TC_CC_9_1 : public TestCommandBridge { class Test_TC_CC_9_2 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_CC_9_2() : TestCommandBridge("Test_TC_CC_9_2") , mTestIndex(0) @@ -13238,6 +13295,7 @@ class Test_TC_CC_9_2 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_CC_9_2() {} @@ -13863,6 +13921,7 @@ class Test_TC_CC_9_2 : public TestCommandBridge { class Test_TC_CC_9_3 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_CC_9_3() : TestCommandBridge("Test_TC_CC_9_3") , mTestIndex(0) @@ -13872,6 +13931,7 @@ class Test_TC_CC_9_3 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_CC_9_3() {} @@ -14497,6 +14557,7 @@ class Test_TC_CC_9_3 : public TestCommandBridge { class Test_TC_DD_1_5 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_DD_1_5() : TestCommandBridge("Test_TC_DD_1_5") , mTestIndex(0) @@ -14506,6 +14567,7 @@ class Test_TC_DD_1_5 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_DD_1_5() {} @@ -14567,6 +14629,7 @@ class Test_TC_DD_1_5 : public TestCommandBridge { class Test_TC_DD_1_6 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_DD_1_6() : TestCommandBridge("Test_TC_DD_1_6") , mTestIndex(0) @@ -14576,6 +14639,7 @@ class Test_TC_DD_1_6 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_DD_1_6() {} @@ -14657,6 +14721,7 @@ class Test_TC_DD_1_6 : public TestCommandBridge { class Test_TC_DD_1_7 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_DD_1_7() : TestCommandBridge("Test_TC_DD_1_7") , mTestIndex(0) @@ -14666,6 +14731,7 @@ class Test_TC_DD_1_7 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_DD_1_7() {} @@ -14737,6 +14803,7 @@ class Test_TC_DD_1_7 : public TestCommandBridge { class Test_TC_DD_1_8 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_DD_1_8() : TestCommandBridge("Test_TC_DD_1_8") , mTestIndex(0) @@ -14746,6 +14813,7 @@ class Test_TC_DD_1_8 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_DD_1_8() {} @@ -14816,6 +14884,7 @@ class Test_TC_DD_1_8 : public TestCommandBridge { class Test_TC_DD_1_9 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_DD_1_9() : TestCommandBridge("Test_TC_DD_1_9") , mTestIndex(0) @@ -14825,6 +14894,7 @@ class Test_TC_DD_1_9 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_DD_1_9() {} @@ -14905,6 +14975,7 @@ class Test_TC_DD_1_9 : public TestCommandBridge { class Test_TC_DM_1_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_DM_1_1() : TestCommandBridge("Test_TC_DM_1_1") , mTestIndex(0) @@ -14914,6 +14985,7 @@ class Test_TC_DM_1_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_DM_1_1() {} @@ -15459,6 +15531,7 @@ class Test_TC_DM_1_1 : public TestCommandBridge { class Test_TC_DM_3_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_DM_3_1() : TestCommandBridge("Test_TC_DM_3_1") , mTestIndex(0) @@ -15468,6 +15541,7 @@ class Test_TC_DM_3_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_DM_3_1() {} @@ -15586,6 +15660,7 @@ class Test_TC_DM_3_1 : public TestCommandBridge { class Test_TC_DL_1_3 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_DL_1_3() : TestCommandBridge("Test_TC_DL_1_3") , mTestIndex(0) @@ -15595,6 +15670,7 @@ class Test_TC_DL_1_3 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_DL_1_3() {} @@ -15867,6 +15943,7 @@ class Test_TC_DL_1_3 : public TestCommandBridge { class Test_TC_EMR_1_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_EMR_1_1() : TestCommandBridge("Test_TC_EMR_1_1") , mTestIndex(0) @@ -15876,6 +15953,7 @@ class Test_TC_EMR_1_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_EMR_1_1() {} @@ -16068,6 +16146,7 @@ class Test_TC_EMR_1_1 : public TestCommandBridge { class Test_TC_ETHDIAG_1_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_ETHDIAG_1_1() : TestCommandBridge("Test_TC_ETHDIAG_1_1") , mTestIndex(0) @@ -16077,6 +16156,7 @@ class Test_TC_ETHDIAG_1_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_ETHDIAG_1_1() {} @@ -16360,6 +16440,7 @@ class Test_TC_ETHDIAG_1_1 : public TestCommandBridge { class Test_TC_ETHDIAG_2_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_ETHDIAG_2_1() : TestCommandBridge("Test_TC_ETHDIAG_2_1") , mTestIndex(0) @@ -16369,6 +16450,7 @@ class Test_TC_ETHDIAG_2_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_ETHDIAG_2_1() {} @@ -16429,6 +16511,7 @@ class Test_TC_ETHDIAG_2_1 : public TestCommandBridge { class Test_TC_FLW_1_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_FLW_1_1() : TestCommandBridge("Test_TC_FLW_1_1") , mTestIndex(0) @@ -16438,6 +16521,7 @@ class Test_TC_FLW_1_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_FLW_1_1() {} @@ -16568,6 +16652,7 @@ class Test_TC_FLW_1_1 : public TestCommandBridge { class Test_TC_FLW_2_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_FLW_2_1() : TestCommandBridge("Test_TC_FLW_2_1") , mTestIndex(0) @@ -16577,6 +16662,7 @@ class Test_TC_FLW_2_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_FLW_2_1() {} @@ -16962,6 +17048,7 @@ class Test_TC_FLW_2_1 : public TestCommandBridge { class Test_TC_FLW_2_2 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_FLW_2_2() : TestCommandBridge("Test_TC_FLW_2_2") , mTestIndex(0) @@ -16971,6 +17058,7 @@ class Test_TC_FLW_2_2 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_FLW_2_2() {} @@ -17075,6 +17163,7 @@ class Test_TC_FLW_2_2 : public TestCommandBridge { class Test_TC_GC_1_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_GC_1_1() : TestCommandBridge("Test_TC_GC_1_1") , mTestIndex(0) @@ -17084,6 +17173,7 @@ class Test_TC_GC_1_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_GC_1_1() {} @@ -17286,6 +17376,7 @@ class Test_TC_GC_1_1 : public TestCommandBridge { class Test_TC_ILL_1_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_ILL_1_1() : TestCommandBridge("Test_TC_ILL_1_1") , mTestIndex(0) @@ -17295,6 +17386,7 @@ class Test_TC_ILL_1_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_ILL_1_1() {} @@ -17451,6 +17543,7 @@ class Test_TC_ILL_1_1 : public TestCommandBridge { class Test_TC_ILL_2_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_ILL_2_1() : TestCommandBridge("Test_TC_ILL_2_1") , mTestIndex(0) @@ -17460,6 +17553,7 @@ class Test_TC_ILL_2_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_ILL_2_1() {} @@ -17637,6 +17731,7 @@ class Test_TC_ILL_2_1 : public TestCommandBridge { class Test_TC_I_1_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_I_1_1() : TestCommandBridge("Test_TC_I_1_1") , mTestIndex(0) @@ -17646,6 +17741,7 @@ class Test_TC_I_1_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_I_1_1() {} @@ -17794,6 +17890,7 @@ class Test_TC_I_1_1 : public TestCommandBridge { class Test_TC_I_2_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_I_2_1() : TestCommandBridge("Test_TC_I_2_1") , mTestIndex(0) @@ -17803,6 +17900,7 @@ class Test_TC_I_2_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_I_2_1() {} @@ -17914,6 +18012,7 @@ class Test_TC_I_2_1 : public TestCommandBridge { class Test_TC_I_2_3 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_I_2_3() : TestCommandBridge("Test_TC_I_2_3") , mTestIndex(0) @@ -17923,6 +18022,7 @@ class Test_TC_I_2_3 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_I_2_3() {} @@ -18385,6 +18485,7 @@ class Test_TC_I_2_3 : public TestCommandBridge { class Test_TC_LVL_1_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_LVL_1_1() : TestCommandBridge("Test_TC_LVL_1_1") , mTestIndex(0) @@ -18394,6 +18495,7 @@ class Test_TC_LVL_1_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_LVL_1_1() {} @@ -18713,6 +18815,7 @@ class Test_TC_LVL_1_1 : public TestCommandBridge { class Test_TC_LVL_2_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_LVL_2_1() : TestCommandBridge("Test_TC_LVL_2_1") , mTestIndex(0) @@ -18722,6 +18825,7 @@ class Test_TC_LVL_2_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_LVL_2_1() {} @@ -19145,6 +19249,7 @@ class Test_TC_LVL_2_1 : public TestCommandBridge { class Test_TC_LVL_2_2 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_LVL_2_2() : TestCommandBridge("Test_TC_LVL_2_2") , mTestIndex(0) @@ -19154,6 +19259,7 @@ class Test_TC_LVL_2_2 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_LVL_2_2() {} @@ -19604,6 +19710,7 @@ class Test_TC_LVL_2_2 : public TestCommandBridge { class Test_TC_LVL_3_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_LVL_3_1() : TestCommandBridge("Test_TC_LVL_3_1") , mTestIndex(0) @@ -19613,6 +19720,7 @@ class Test_TC_LVL_3_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_LVL_3_1() {} @@ -19987,6 +20095,7 @@ class Test_TC_LVL_3_1 : public TestCommandBridge { class Test_TC_LVL_4_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_LVL_4_1() : TestCommandBridge("Test_TC_LVL_4_1") , mTestIndex(0) @@ -19996,6 +20105,7 @@ class Test_TC_LVL_4_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_LVL_4_1() {} @@ -20402,6 +20512,7 @@ class Test_TC_LVL_4_1 : public TestCommandBridge { class Test_TC_LVL_5_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_LVL_5_1() : TestCommandBridge("Test_TC_LVL_5_1") , mTestIndex(0) @@ -20411,6 +20522,7 @@ class Test_TC_LVL_5_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_LVL_5_1() {} @@ -20742,6 +20854,7 @@ class Test_TC_LVL_5_1 : public TestCommandBridge { class Test_TC_LVL_6_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_LVL_6_1() : TestCommandBridge("Test_TC_LVL_6_1") , mTestIndex(0) @@ -20751,6 +20864,7 @@ class Test_TC_LVL_6_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_LVL_6_1() {} @@ -21046,6 +21160,7 @@ class Test_TC_LVL_6_1 : public TestCommandBridge { class Test_TC_MC_1_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_MC_1_1() : TestCommandBridge("Test_TC_MC_1_1") , mTestIndex(0) @@ -21055,6 +21170,7 @@ class Test_TC_MC_1_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_MC_1_1() {} @@ -21185,6 +21301,7 @@ class Test_TC_MC_1_1 : public TestCommandBridge { class Test_TC_MC_1_2 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_MC_1_2() : TestCommandBridge("Test_TC_MC_1_2") , mTestIndex(0) @@ -21194,6 +21311,7 @@ class Test_TC_MC_1_2 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_MC_1_2() {} @@ -21324,6 +21442,7 @@ class Test_TC_MC_1_2 : public TestCommandBridge { class Test_TC_MC_1_3 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_MC_1_3() : TestCommandBridge("Test_TC_MC_1_3") , mTestIndex(0) @@ -21333,6 +21452,7 @@ class Test_TC_MC_1_3 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_MC_1_3() {} @@ -21469,6 +21589,7 @@ class Test_TC_MC_1_3 : public TestCommandBridge { class Test_TC_MC_1_4 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_MC_1_4() : TestCommandBridge("Test_TC_MC_1_4") , mTestIndex(0) @@ -21478,6 +21599,7 @@ class Test_TC_MC_1_4 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_MC_1_4() {} @@ -21608,6 +21730,7 @@ class Test_TC_MC_1_4 : public TestCommandBridge { class Test_TC_MC_1_5 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_MC_1_5() : TestCommandBridge("Test_TC_MC_1_5") , mTestIndex(0) @@ -21617,6 +21740,7 @@ class Test_TC_MC_1_5 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_MC_1_5() {} @@ -21747,6 +21871,7 @@ class Test_TC_MC_1_5 : public TestCommandBridge { class Test_TC_MC_1_6 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_MC_1_6() : TestCommandBridge("Test_TC_MC_1_6") , mTestIndex(0) @@ -21756,6 +21881,7 @@ class Test_TC_MC_1_6 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_MC_1_6() {} @@ -21886,6 +22012,7 @@ class Test_TC_MC_1_6 : public TestCommandBridge { class Test_TC_MC_1_7 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_MC_1_7() : TestCommandBridge("Test_TC_MC_1_7") , mTestIndex(0) @@ -21895,6 +22022,7 @@ class Test_TC_MC_1_7 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_MC_1_7() {} @@ -22025,6 +22153,7 @@ class Test_TC_MC_1_7 : public TestCommandBridge { class Test_TC_MC_1_8 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_MC_1_8() : TestCommandBridge("Test_TC_MC_1_8") , mTestIndex(0) @@ -22034,6 +22163,7 @@ class Test_TC_MC_1_8 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_MC_1_8() {} @@ -22164,6 +22294,7 @@ class Test_TC_MC_1_8 : public TestCommandBridge { class Test_TC_MC_1_9 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_MC_1_9() : TestCommandBridge("Test_TC_MC_1_9") , mTestIndex(0) @@ -22173,6 +22304,7 @@ class Test_TC_MC_1_9 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_MC_1_9() {} @@ -22303,6 +22435,7 @@ class Test_TC_MC_1_9 : public TestCommandBridge { class Test_TC_MC_1_10 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_MC_1_10() : TestCommandBridge("Test_TC_MC_1_10") , mTestIndex(0) @@ -22312,6 +22445,7 @@ class Test_TC_MC_1_10 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_MC_1_10() {} @@ -22448,6 +22582,7 @@ class Test_TC_MC_1_10 : public TestCommandBridge { class Test_TC_MC_1_11 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_MC_1_11() : TestCommandBridge("Test_TC_MC_1_11") , mTestIndex(0) @@ -22457,6 +22592,7 @@ class Test_TC_MC_1_11 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_MC_1_11() {} @@ -22587,6 +22723,7 @@ class Test_TC_MC_1_11 : public TestCommandBridge { class Test_TC_MC_1_12 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_MC_1_12() : TestCommandBridge("Test_TC_MC_1_12") , mTestIndex(0) @@ -22596,6 +22733,7 @@ class Test_TC_MC_1_12 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_MC_1_12() {} @@ -22726,6 +22864,7 @@ class Test_TC_MC_1_12 : public TestCommandBridge { class Test_TC_MC_2_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_MC_2_1() : TestCommandBridge("Test_TC_MC_2_1") , mTestIndex(0) @@ -22735,6 +22874,7 @@ class Test_TC_MC_2_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_MC_2_1() {} @@ -22816,6 +22956,7 @@ class Test_TC_MC_2_1 : public TestCommandBridge { class Test_TC_MC_3_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_MC_3_1() : TestCommandBridge("Test_TC_MC_3_1") , mTestIndex(0) @@ -22825,6 +22966,7 @@ class Test_TC_MC_3_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_MC_3_1() {} @@ -22885,6 +23027,7 @@ class Test_TC_MC_3_1 : public TestCommandBridge { class Test_TC_MC_3_2 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_MC_3_2() : TestCommandBridge("Test_TC_MC_3_2") , mTestIndex(0) @@ -22894,6 +23037,7 @@ class Test_TC_MC_3_2 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_MC_3_2() {} @@ -22954,6 +23098,7 @@ class Test_TC_MC_3_2 : public TestCommandBridge { class Test_TC_MC_3_3 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_MC_3_3() : TestCommandBridge("Test_TC_MC_3_3") , mTestIndex(0) @@ -22963,6 +23108,7 @@ class Test_TC_MC_3_3 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_MC_3_3() {} @@ -23023,6 +23169,7 @@ class Test_TC_MC_3_3 : public TestCommandBridge { class Test_TC_MC_3_4 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_MC_3_4() : TestCommandBridge("Test_TC_MC_3_4") , mTestIndex(0) @@ -23032,6 +23179,7 @@ class Test_TC_MC_3_4 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_MC_3_4() {} @@ -23092,6 +23240,7 @@ class Test_TC_MC_3_4 : public TestCommandBridge { class Test_TC_MC_3_5 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_MC_3_5() : TestCommandBridge("Test_TC_MC_3_5") , mTestIndex(0) @@ -23101,6 +23250,7 @@ class Test_TC_MC_3_5 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_MC_3_5() {} @@ -23161,6 +23311,7 @@ class Test_TC_MC_3_5 : public TestCommandBridge { class Test_TC_MC_3_6 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_MC_3_6() : TestCommandBridge("Test_TC_MC_3_6") , mTestIndex(0) @@ -23170,6 +23321,7 @@ class Test_TC_MC_3_6 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_MC_3_6() {} @@ -23230,6 +23382,7 @@ class Test_TC_MC_3_6 : public TestCommandBridge { class Test_TC_MC_3_7 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_MC_3_7() : TestCommandBridge("Test_TC_MC_3_7") , mTestIndex(0) @@ -23239,6 +23392,7 @@ class Test_TC_MC_3_7 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_MC_3_7() {} @@ -23299,6 +23453,7 @@ class Test_TC_MC_3_7 : public TestCommandBridge { class Test_TC_MC_3_8 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_MC_3_8() : TestCommandBridge("Test_TC_MC_3_8") , mTestIndex(0) @@ -23308,6 +23463,7 @@ class Test_TC_MC_3_8 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_MC_3_8() {} @@ -23368,6 +23524,7 @@ class Test_TC_MC_3_8 : public TestCommandBridge { class Test_TC_MC_3_9 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_MC_3_9() : TestCommandBridge("Test_TC_MC_3_9") , mTestIndex(0) @@ -23377,6 +23534,7 @@ class Test_TC_MC_3_9 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_MC_3_9() {} @@ -23437,6 +23595,7 @@ class Test_TC_MC_3_9 : public TestCommandBridge { class Test_TC_MC_3_10 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_MC_3_10() : TestCommandBridge("Test_TC_MC_3_10") , mTestIndex(0) @@ -23446,6 +23605,7 @@ class Test_TC_MC_3_10 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_MC_3_10() {} @@ -23506,6 +23666,7 @@ class Test_TC_MC_3_10 : public TestCommandBridge { class Test_TC_MC_3_11 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_MC_3_11() : TestCommandBridge("Test_TC_MC_3_11") , mTestIndex(0) @@ -23515,6 +23676,7 @@ class Test_TC_MC_3_11 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_MC_3_11() {} @@ -23575,6 +23737,7 @@ class Test_TC_MC_3_11 : public TestCommandBridge { class Test_TC_MC_5_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_MC_5_1() : TestCommandBridge("Test_TC_MC_5_1") , mTestIndex(0) @@ -23584,6 +23747,7 @@ class Test_TC_MC_5_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_MC_5_1() {} @@ -23666,6 +23830,7 @@ class Test_TC_MC_5_1 : public TestCommandBridge { class Test_TC_MC_5_2 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_MC_5_2() : TestCommandBridge("Test_TC_MC_5_2") , mTestIndex(0) @@ -23675,6 +23840,7 @@ class Test_TC_MC_5_2 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_MC_5_2() {} @@ -23745,6 +23911,7 @@ class Test_TC_MC_5_2 : public TestCommandBridge { class Test_TC_MC_5_3 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_MC_5_3() : TestCommandBridge("Test_TC_MC_5_3") , mTestIndex(0) @@ -23754,6 +23921,7 @@ class Test_TC_MC_5_3 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_MC_5_3() {} @@ -23824,6 +23992,7 @@ class Test_TC_MC_5_3 : public TestCommandBridge { class Test_TC_MC_6_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_MC_6_1() : TestCommandBridge("Test_TC_MC_6_1") , mTestIndex(0) @@ -23833,6 +24002,7 @@ class Test_TC_MC_6_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_MC_6_1() {} @@ -23959,6 +24129,7 @@ class Test_TC_MC_6_1 : public TestCommandBridge { class Test_TC_MC_6_2 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_MC_6_2() : TestCommandBridge("Test_TC_MC_6_2") , mTestIndex(0) @@ -23968,6 +24139,7 @@ class Test_TC_MC_6_2 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_MC_6_2() {} @@ -24124,6 +24296,7 @@ class Test_TC_MC_6_2 : public TestCommandBridge { class Test_TC_MC_6_3 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_MC_6_3() : TestCommandBridge("Test_TC_MC_6_3") , mTestIndex(0) @@ -24133,6 +24306,7 @@ class Test_TC_MC_6_3 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_MC_6_3() {} @@ -24223,6 +24397,7 @@ class Test_TC_MC_6_3 : public TestCommandBridge { class Test_TC_MC_6_4 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_MC_6_4() : TestCommandBridge("Test_TC_MC_6_4") , mTestIndex(0) @@ -24232,6 +24407,7 @@ class Test_TC_MC_6_4 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_MC_6_4() {} @@ -24430,6 +24606,7 @@ class Test_TC_MC_6_4 : public TestCommandBridge { class Test_TC_MC_7_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_MC_7_1() : TestCommandBridge("Test_TC_MC_7_1") , mTestIndex(0) @@ -24439,6 +24616,7 @@ class Test_TC_MC_7_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_MC_7_1() {} @@ -24499,6 +24677,7 @@ class Test_TC_MC_7_1 : public TestCommandBridge { class Test_TC_MC_7_2 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_MC_7_2() : TestCommandBridge("Test_TC_MC_7_2") , mTestIndex(0) @@ -24508,6 +24687,7 @@ class Test_TC_MC_7_2 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_MC_7_2() {} @@ -24568,6 +24748,7 @@ class Test_TC_MC_7_2 : public TestCommandBridge { class Test_TC_MC_8_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_MC_8_1() : TestCommandBridge("Test_TC_MC_8_1") , mTestIndex(0) @@ -24577,6 +24758,7 @@ class Test_TC_MC_8_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_MC_8_1() {} @@ -24681,6 +24863,7 @@ class Test_TC_MC_8_1 : public TestCommandBridge { class Test_TC_MC_9_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_MC_9_1() : TestCommandBridge("Test_TC_MC_9_1") , mTestIndex(0) @@ -24690,6 +24873,7 @@ class Test_TC_MC_9_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_MC_9_1() {} @@ -24911,6 +25095,7 @@ class Test_TC_MC_9_1 : public TestCommandBridge { class Test_TC_MC_10_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_MC_10_1() : TestCommandBridge("Test_TC_MC_10_1") , mTestIndex(0) @@ -24920,6 +25105,7 @@ class Test_TC_MC_10_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_MC_10_1() {} @@ -25025,6 +25211,7 @@ class Test_TC_MC_10_1 : public TestCommandBridge { class Test_TC_MOD_1_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_MOD_1_1() : TestCommandBridge("Test_TC_MOD_1_1") , mTestIndex(0) @@ -25034,6 +25221,7 @@ class Test_TC_MOD_1_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_MOD_1_1() {} @@ -25187,6 +25375,7 @@ class Test_TC_MOD_1_1 : public TestCommandBridge { class Test_TC_OCC_1_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_OCC_1_1() : TestCommandBridge("Test_TC_OCC_1_1") , mTestIndex(0) @@ -25196,6 +25385,7 @@ class Test_TC_OCC_1_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_OCC_1_1() {} @@ -25332,6 +25522,7 @@ class Test_TC_OCC_1_1 : public TestCommandBridge { class Test_TC_OCC_2_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_OCC_2_1() : TestCommandBridge("Test_TC_OCC_2_1") , mTestIndex(0) @@ -25341,6 +25532,7 @@ class Test_TC_OCC_2_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_OCC_2_1() {} @@ -25662,6 +25854,7 @@ class Test_TC_OCC_2_1 : public TestCommandBridge { class Test_TC_OCC_2_2 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_OCC_2_2() : TestCommandBridge("Test_TC_OCC_2_2") , mTestIndex(0) @@ -25671,6 +25864,7 @@ class Test_TC_OCC_2_2 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_OCC_2_2() {} @@ -25794,6 +25988,7 @@ class Test_TC_OCC_2_2 : public TestCommandBridge { class Test_TC_OO_1_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_OO_1_1() : TestCommandBridge("Test_TC_OO_1_1") , mTestIndex(0) @@ -25803,6 +25998,7 @@ class Test_TC_OO_1_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_OO_1_1() {} @@ -26082,6 +26278,7 @@ class Test_TC_OO_1_1 : public TestCommandBridge { class Test_TC_OO_2_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_OO_2_1() : TestCommandBridge("Test_TC_OO_2_1") , mTestIndex(0) @@ -26091,6 +26288,7 @@ class Test_TC_OO_2_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_OO_2_1() {} @@ -26281,6 +26479,7 @@ class Test_TC_OO_2_1 : public TestCommandBridge { class Test_TC_OO_2_2 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_OO_2_2() : TestCommandBridge("Test_TC_OO_2_2") , mTestIndex(0) @@ -26290,6 +26489,7 @@ class Test_TC_OO_2_2 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_OO_2_2() {} @@ -26766,6 +26966,7 @@ class Test_TC_OO_2_2 : public TestCommandBridge { class Test_TC_OO_2_3 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_OO_2_3() : TestCommandBridge("Test_TC_OO_2_3") , mTestIndex(0) @@ -26775,6 +26976,7 @@ class Test_TC_OO_2_3 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_OO_2_3() {} @@ -28105,6 +28307,7 @@ class Test_TC_OO_2_3 : public TestCommandBridge { class Test_TC_PS_1_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_PS_1_1() : TestCommandBridge("Test_TC_PS_1_1") , mTestIndex(0) @@ -28114,6 +28317,7 @@ class Test_TC_PS_1_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_PS_1_1() {} @@ -28266,6 +28470,7 @@ class Test_TC_PS_1_1 : public TestCommandBridge { class Test_TC_PS_2_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_PS_2_1() : TestCommandBridge("Test_TC_PS_2_1") , mTestIndex(0) @@ -28275,6 +28480,7 @@ class Test_TC_PS_2_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_PS_2_1() {} @@ -28561,6 +28767,7 @@ class Test_TC_PS_2_1 : public TestCommandBridge { class Test_TC_PRS_1_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_PRS_1_1() : TestCommandBridge("Test_TC_PRS_1_1") , mTestIndex(0) @@ -28570,6 +28777,7 @@ class Test_TC_PRS_1_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_PRS_1_1() {} @@ -28706,6 +28914,7 @@ class Test_TC_PRS_1_1 : public TestCommandBridge { class Test_TC_PRS_2_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_PRS_2_1() : TestCommandBridge("Test_TC_PRS_2_1") , mTestIndex(0) @@ -28715,6 +28924,7 @@ class Test_TC_PRS_2_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_PRS_2_1() {} @@ -29011,6 +29221,7 @@ class Test_TC_PRS_2_1 : public TestCommandBridge { class Test_TC_PCC_1_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_PCC_1_1() : TestCommandBridge("Test_TC_PCC_1_1") , mTestIndex(0) @@ -29020,6 +29231,7 @@ class Test_TC_PCC_1_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_PCC_1_1() {} @@ -29310,6 +29522,7 @@ class Test_TC_PCC_1_1 : public TestCommandBridge { class Test_TC_PCC_2_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_PCC_2_1() : TestCommandBridge("Test_TC_PCC_2_1") , mTestIndex(0) @@ -29319,6 +29532,7 @@ class Test_TC_PCC_2_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_PCC_2_1() {} @@ -30787,6 +31001,7 @@ class Test_TC_PCC_2_1 : public TestCommandBridge { class Test_TC_PCC_2_2 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_PCC_2_2() : TestCommandBridge("Test_TC_PCC_2_2") , mTestIndex(0) @@ -30796,6 +31011,7 @@ class Test_TC_PCC_2_2 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_PCC_2_2() {} @@ -31042,6 +31258,7 @@ class Test_TC_PCC_2_2 : public TestCommandBridge { class Test_TC_PCC_2_3 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_PCC_2_3() : TestCommandBridge("Test_TC_PCC_2_3") , mTestIndex(0) @@ -31051,6 +31268,7 @@ class Test_TC_PCC_2_3 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_PCC_2_3() {} @@ -31545,6 +31763,7 @@ class Test_TC_PCC_2_3 : public TestCommandBridge { class Test_TC_PCC_2_4 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_PCC_2_4() : TestCommandBridge("Test_TC_PCC_2_4") , mTestIndex(0) @@ -31554,6 +31773,7 @@ class Test_TC_PCC_2_4 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_PCC_2_4() {} @@ -31944,6 +32164,7 @@ class Test_TC_PCC_2_4 : public TestCommandBridge { class Test_TC_PSCFG_1_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_PSCFG_1_1() : TestCommandBridge("Test_TC_PSCFG_1_1") , mTestIndex(0) @@ -31953,6 +32174,7 @@ class Test_TC_PSCFG_1_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_PSCFG_1_1() {} @@ -32113,6 +32335,7 @@ class Test_TC_PSCFG_1_1 : public TestCommandBridge { class Test_TC_RH_1_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_RH_1_1() : TestCommandBridge("Test_TC_RH_1_1") , mTestIndex(0) @@ -32122,6 +32345,7 @@ class Test_TC_RH_1_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_RH_1_1() {} @@ -32278,6 +32502,7 @@ class Test_TC_RH_1_1 : public TestCommandBridge { class Test_TC_RH_2_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_RH_2_1() : TestCommandBridge("Test_TC_RH_2_1") , mTestIndex(0) @@ -32287,6 +32512,7 @@ class Test_TC_RH_2_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_RH_2_1() {} @@ -32445,6 +32671,7 @@ class Test_TC_RH_2_1 : public TestCommandBridge { class Test_TC_RH_2_2 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_RH_2_2() : TestCommandBridge("Test_TC_RH_2_2") , mTestIndex(0) @@ -32454,6 +32681,7 @@ class Test_TC_RH_2_2 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_RH_2_2() {} @@ -32608,6 +32836,7 @@ class Test_TC_RH_2_2 : public TestCommandBridge { class Test_TC_SWTCH_2_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_SWTCH_2_1() : TestCommandBridge("Test_TC_SWTCH_2_1") , mTestIndex(0) @@ -32617,6 +32846,7 @@ class Test_TC_SWTCH_2_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_SWTCH_2_1() {} @@ -32833,6 +33063,7 @@ class Test_TC_SWTCH_2_1 : public TestCommandBridge { class Test_TC_SWTCH_2_2 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_SWTCH_2_2() : TestCommandBridge("Test_TC_SWTCH_2_2") , mTestIndex(0) @@ -32842,6 +33073,7 @@ class Test_TC_SWTCH_2_2 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_SWTCH_2_2() {} @@ -33304,6 +33536,7 @@ class Test_TC_SWTCH_2_2 : public TestCommandBridge { class Test_TC_TM_1_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_TM_1_1() : TestCommandBridge("Test_TC_TM_1_1") , mTestIndex(0) @@ -33313,6 +33546,7 @@ class Test_TC_TM_1_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_TM_1_1() {} @@ -33421,6 +33655,7 @@ class Test_TC_TM_1_1 : public TestCommandBridge { class Test_TC_TM_2_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_TM_2_1() : TestCommandBridge("Test_TC_TM_2_1") , mTestIndex(0) @@ -33430,6 +33665,7 @@ class Test_TC_TM_2_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_TM_2_1() {} @@ -33612,6 +33848,7 @@ class Test_TC_TM_2_1 : public TestCommandBridge { class Test_TC_TM_2_2 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_TM_2_2() : TestCommandBridge("Test_TC_TM_2_2") , mTestIndex(0) @@ -33621,6 +33858,7 @@ class Test_TC_TM_2_2 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_TM_2_2() {} @@ -33799,6 +34037,7 @@ class Test_TC_TM_2_2 : public TestCommandBridge { class Test_TC_TSTAT_1_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_TSTAT_1_1() : TestCommandBridge("Test_TC_TSTAT_1_1") , mTestIndex(0) @@ -33808,6 +34047,7 @@ class Test_TC_TSTAT_1_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_TSTAT_1_1() {} @@ -33934,6 +34174,7 @@ class Test_TC_TSTAT_1_1 : public TestCommandBridge { class Test_TC_TSTAT_2_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_TSTAT_2_1() : TestCommandBridge("Test_TC_TSTAT_2_1") , mTestIndex(0) @@ -33943,6 +34184,7 @@ class Test_TC_TSTAT_2_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_TSTAT_2_1() {} @@ -34537,6 +34779,7 @@ class Test_TC_TSTAT_2_1 : public TestCommandBridge { class Test_TC_TSTAT_2_2 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_TSTAT_2_2() : TestCommandBridge("Test_TC_TSTAT_2_2") , mTestIndex(0) @@ -34546,6 +34789,7 @@ class Test_TC_TSTAT_2_2 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_TSTAT_2_2() {} @@ -36285,6 +36529,7 @@ class Test_TC_TSTAT_2_2 : public TestCommandBridge { class Test_TC_TSUIC_1_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_TSUIC_1_1() : TestCommandBridge("Test_TC_TSUIC_1_1") , mTestIndex(0) @@ -36294,6 +36539,7 @@ class Test_TC_TSUIC_1_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_TSUIC_1_1() {} @@ -36446,6 +36692,7 @@ class Test_TC_TSUIC_1_1 : public TestCommandBridge { class Test_TC_TSUIC_2_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_TSUIC_2_1() : TestCommandBridge("Test_TC_TSUIC_2_1") , mTestIndex(0) @@ -36455,6 +36702,7 @@ class Test_TC_TSUIC_2_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_TSUIC_2_1() {} @@ -36688,6 +36936,7 @@ class Test_TC_TSUIC_2_1 : public TestCommandBridge { class Test_TC_TSUIC_2_2 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_TSUIC_2_2() : TestCommandBridge("Test_TC_TSUIC_2_2") , mTestIndex(0) @@ -36697,6 +36946,7 @@ class Test_TC_TSUIC_2_2 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_TSUIC_2_2() {} @@ -37146,6 +37396,7 @@ class Test_TC_TSUIC_2_2 : public TestCommandBridge { class Test_TC_DIAG_TH_NW_1_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_DIAG_TH_NW_1_1() : TestCommandBridge("Test_TC_DIAG_TH_NW_1_1") , mTestIndex(0) @@ -37155,6 +37406,7 @@ class Test_TC_DIAG_TH_NW_1_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_DIAG_TH_NW_1_1() {} @@ -37266,6 +37518,7 @@ class Test_TC_DIAG_TH_NW_1_1 : public TestCommandBridge { class Test_TC_DIAG_TH_NW_1_2 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_DIAG_TH_NW_1_2() : TestCommandBridge("Test_TC_DIAG_TH_NW_1_2") , mTestIndex(0) @@ -37275,6 +37528,7 @@ class Test_TC_DIAG_TH_NW_1_2 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_DIAG_TH_NW_1_2() {} @@ -39961,6 +40215,7 @@ class Test_TC_DIAG_TH_NW_1_2 : public TestCommandBridge { class Test_TC_LC_1_2 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_LC_1_2() : TestCommandBridge("Test_TC_LC_1_2") , mTestIndex(0) @@ -39970,6 +40225,7 @@ class Test_TC_LC_1_2 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_LC_1_2() {} @@ -40051,6 +40307,7 @@ class Test_TC_LC_1_2 : public TestCommandBridge { class Test_TC_WIFIDIAG_1_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_WIFIDIAG_1_1() : TestCommandBridge("Test_TC_WIFIDIAG_1_1") , mTestIndex(0) @@ -40060,6 +40317,7 @@ class Test_TC_WIFIDIAG_1_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_WIFIDIAG_1_1() {} @@ -40282,6 +40540,7 @@ class Test_TC_WIFIDIAG_1_1 : public TestCommandBridge { class Test_TC_WIFIDIAG_3_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_WIFIDIAG_3_1() : TestCommandBridge("Test_TC_WIFIDIAG_3_1") , mTestIndex(0) @@ -40291,6 +40550,7 @@ class Test_TC_WIFIDIAG_3_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_WIFIDIAG_3_1() {} @@ -40351,6 +40611,7 @@ class Test_TC_WIFIDIAG_3_1 : public TestCommandBridge { class Test_TC_WNCV_1_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_WNCV_1_1() : TestCommandBridge("Test_TC_WNCV_1_1") , mTestIndex(0) @@ -40360,6 +40621,7 @@ class Test_TC_WNCV_1_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_WNCV_1_1() {} @@ -40602,6 +40864,7 @@ class Test_TC_WNCV_1_1 : public TestCommandBridge { class Test_TC_WNCV_2_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_WNCV_2_1() : TestCommandBridge("Test_TC_WNCV_2_1") , mTestIndex(0) @@ -40611,6 +40874,7 @@ class Test_TC_WNCV_2_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_WNCV_2_1() {} @@ -42176,6 +42440,7 @@ class Test_TC_WNCV_2_1 : public TestCommandBridge { class Test_TC_WNCV_2_2 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_WNCV_2_2() : TestCommandBridge("Test_TC_WNCV_2_2") , mTestIndex(0) @@ -42185,6 +42450,7 @@ class Test_TC_WNCV_2_2 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_WNCV_2_2() {} @@ -42245,6 +42511,7 @@ class Test_TC_WNCV_2_2 : public TestCommandBridge { class Test_TC_WNCV_2_3 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_WNCV_2_3() : TestCommandBridge("Test_TC_WNCV_2_3") , mTestIndex(0) @@ -42254,6 +42521,7 @@ class Test_TC_WNCV_2_3 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_WNCV_2_3() {} @@ -42845,6 +43113,7 @@ class Test_TC_WNCV_2_3 : public TestCommandBridge { class Test_TC_WNCV_2_4 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_WNCV_2_4() : TestCommandBridge("Test_TC_WNCV_2_4") , mTestIndex(0) @@ -42854,6 +43123,7 @@ class Test_TC_WNCV_2_4 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_WNCV_2_4() {} @@ -42977,6 +43247,7 @@ class Test_TC_WNCV_2_4 : public TestCommandBridge { class Test_TC_WNCV_2_5 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_WNCV_2_5() : TestCommandBridge("Test_TC_WNCV_2_5") , mTestIndex(0) @@ -42986,6 +43257,7 @@ class Test_TC_WNCV_2_5 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_WNCV_2_5() {} @@ -43109,6 +43381,7 @@ class Test_TC_WNCV_2_5 : public TestCommandBridge { class Test_TC_WNCV_3_4 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_WNCV_3_4() : TestCommandBridge("Test_TC_WNCV_3_4") , mTestIndex(0) @@ -43120,6 +43393,7 @@ class Test_TC_WNCV_3_4 : public TestCommandBridge { AddArgument("fullMotionDuration", 0, UINT16_MAX, &mFullMotionDuration); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_WNCV_3_4() {} @@ -43379,6 +43653,7 @@ class Test_TC_WNCV_3_4 : public TestCommandBridge { class Test_TC_WNCV_3_5 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_WNCV_3_5() : TestCommandBridge("Test_TC_WNCV_3_5") , mTestIndex(0) @@ -43390,6 +43665,7 @@ class Test_TC_WNCV_3_5 : public TestCommandBridge { AddArgument("fullMotionDuration", 0, UINT16_MAX, &mFullMotionDuration); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_WNCV_3_5() {} @@ -43649,6 +43925,7 @@ class Test_TC_WNCV_3_5 : public TestCommandBridge { class Test_TC_WNCV_4_3 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_WNCV_4_3() : TestCommandBridge("Test_TC_WNCV_4_3") , mTestIndex(0) @@ -43658,6 +43935,7 @@ class Test_TC_WNCV_4_3 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_WNCV_4_3() {} @@ -43881,6 +44159,7 @@ class Test_TC_WNCV_4_3 : public TestCommandBridge { class Test_TC_WNCV_4_4 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_WNCV_4_4() : TestCommandBridge("Test_TC_WNCV_4_4") , mTestIndex(0) @@ -43890,6 +44169,7 @@ class Test_TC_WNCV_4_4 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_WNCV_4_4() {} @@ -44113,6 +44393,7 @@ class Test_TC_WNCV_4_4 : public TestCommandBridge { class TestCluster : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced TestCluster() : TestCommandBridge("TestCluster") , mTestIndex(0) @@ -44122,6 +44403,7 @@ class TestCluster : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~TestCluster() {} @@ -57391,6 +57673,7 @@ class TestCluster : public TestCommandBridge { class TestSaveAs : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced TestSaveAs() : TestCommandBridge("TestSaveAs") , mTestIndex(0) @@ -57400,6 +57683,7 @@ class TestSaveAs : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~TestSaveAs() {} @@ -60323,6 +60607,7 @@ class TestSaveAs : public TestCommandBridge { class TestConstraints : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced TestConstraints() : TestCommandBridge("TestConstraints") , mTestIndex(0) @@ -60332,6 +60617,7 @@ class TestConstraints : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~TestConstraints() {} @@ -60887,6 +61173,7 @@ class TestConstraints : public TestCommandBridge { class TestDelayCommands : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced TestDelayCommands() : TestCommandBridge("TestDelayCommands") , mTestIndex(0) @@ -60896,6 +61183,7 @@ class TestDelayCommands : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~TestDelayCommands() {} @@ -60966,6 +61254,7 @@ class TestDelayCommands : public TestCommandBridge { class TestDescriptorCluster : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced TestDescriptorCluster() : TestCommandBridge("TestDescriptorCluster") , mTestIndex(0) @@ -60975,6 +61264,7 @@ class TestDescriptorCluster : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~TestDescriptorCluster() {} @@ -61169,6 +61459,7 @@ class TestDescriptorCluster : public TestCommandBridge { class TestBasicInformation : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced TestBasicInformation() : TestCommandBridge("TestBasicInformation") , mTestIndex(0) @@ -61178,6 +61469,7 @@ class TestBasicInformation : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~TestBasicInformation() {} @@ -61388,6 +61680,7 @@ class TestBasicInformation : public TestCommandBridge { class TestGeneralCommissioning : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced TestGeneralCommissioning() : TestCommandBridge("TestGeneralCommissioning") , mTestIndex(0) @@ -61397,6 +61690,7 @@ class TestGeneralCommissioning : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~TestGeneralCommissioning() {} @@ -61590,6 +61884,7 @@ class TestGeneralCommissioning : public TestCommandBridge { class TestGroupsCluster : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced TestGroupsCluster() : TestCommandBridge("TestGroupsCluster") , mTestIndex(0) @@ -61599,6 +61894,7 @@ class TestGroupsCluster : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~TestGroupsCluster() {} @@ -62297,6 +62593,7 @@ class TestGroupsCluster : public TestCommandBridge { class TestGroupKeyManagementCluster : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced TestGroupKeyManagementCluster() : TestCommandBridge("TestGroupKeyManagementCluster") , mTestIndex(0) @@ -62306,6 +62603,7 @@ class TestGroupKeyManagementCluster : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~TestGroupKeyManagementCluster() {} @@ -62971,6 +63269,7 @@ class TestGroupKeyManagementCluster : public TestCommandBridge { class TestIdentifyCluster : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced TestIdentifyCluster() : TestCommandBridge("TestIdentifyCluster") , mTestIndex(0) @@ -62980,6 +63279,7 @@ class TestIdentifyCluster : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~TestIdentifyCluster() {} @@ -63064,6 +63364,7 @@ class TestIdentifyCluster : public TestCommandBridge { class TestLogCommands : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced TestLogCommands() : TestCommandBridge("TestLogCommands") , mTestIndex(0) @@ -63073,6 +63374,7 @@ class TestLogCommands : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~TestLogCommands() {} @@ -63153,6 +63455,7 @@ class TestLogCommands : public TestCommandBridge { class TestOperationalCredentialsCluster : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced TestOperationalCredentialsCluster() : TestCommandBridge("TestOperationalCredentialsCluster") , mTestIndex(0) @@ -63162,6 +63465,7 @@ class TestOperationalCredentialsCluster : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~TestOperationalCredentialsCluster() {} @@ -63452,6 +63756,7 @@ class TestOperationalCredentialsCluster : public TestCommandBridge { class TestBinding : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced TestBinding() : TestCommandBridge("TestBinding") , mTestIndex(0) @@ -63461,6 +63766,7 @@ class TestBinding : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~TestBinding() {} @@ -63812,6 +64118,7 @@ class TestBinding : public TestCommandBridge { class Test_TC_SWDIAG_1_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_SWDIAG_1_1() : TestCommandBridge("Test_TC_SWDIAG_1_1") , mTestIndex(0) @@ -63821,6 +64128,7 @@ class Test_TC_SWDIAG_1_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_SWDIAG_1_1() {} @@ -64004,6 +64312,7 @@ class Test_TC_SWDIAG_1_1 : public TestCommandBridge { class Test_TC_SWDIAG_2_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_SWDIAG_2_1() : TestCommandBridge("Test_TC_SWDIAG_2_1") , mTestIndex(0) @@ -64013,6 +64322,7 @@ class Test_TC_SWDIAG_2_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_SWDIAG_2_1() {} @@ -64063,6 +64373,7 @@ class Test_TC_SWDIAG_2_1 : public TestCommandBridge { class Test_TC_SWDIAG_3_1 : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced Test_TC_SWDIAG_3_1() : TestCommandBridge("Test_TC_SWDIAG_3_1") , mTestIndex(0) @@ -64072,6 +64383,7 @@ class Test_TC_SWDIAG_3_1 : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~Test_TC_SWDIAG_3_1() {} @@ -64225,6 +64537,7 @@ class Test_TC_SWDIAG_3_1 : public TestCommandBridge { class TestSubscribe_OnOff : public TestCommandBridge { public: + // NOLINTBEGIN(clang-analyzer-nullability.NullPassedToNonnull): Test constructor nullability not enforced TestSubscribe_OnOff() : TestCommandBridge("TestSubscribe_OnOff") , mTestIndex(0) @@ -64234,6 +64547,7 @@ class TestSubscribe_OnOff : public TestCommandBridge { AddArgument("endpoint", 0, UINT16_MAX, &mEndpoint); AddArgument("timeout", 0, UINT16_MAX, &mTimeout); } + // NOLINTEND(clang-analyzer-nullability.NullPassedToNonnull) ~TestSubscribe_OnOff() {}