Matter SDK Coverage Report
Current view: top level - app/data-model-provider - ProviderMetadataTree.cpp (source / functions) Coverage Total Hit
Test: SHA:1560a87972ec2c7a76cec101927a563a6862bc2a Lines: 100.0 % 15 15
Test Date: 2025-03-30 07:08:27 Functions: 100.0 % 3 3

            Line data    Source code
       1              : /*
       2              :  *    Copyright (c) 2025 Project CHIP Authors
       3              :  *    All rights reserved.
       4              :  *
       5              :  *    Licensed under the Apache License, Version 2.0 (the "License");
       6              :  *    you may not use this file except in compliance with the License.
       7              :  *    You may obtain a copy of the License at
       8              :  *
       9              :  *        http://www.apache.org/licenses/LICENSE-2.0
      10              :  *
      11              :  *    Unless required by applicable law or agreed to in writing, software
      12              :  *    distributed under the License is distributed on an "AS IS" BASIS,
      13              :  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      14              :  *    See the License for the specific language governing permissions and
      15              :  *    limitations under the License.
      16              :  */
      17              : 
      18              : #include <app/data-model-provider/ProviderMetadataTree.h>
      19              : 
      20              : #include <app/data-model-provider/MetadataList.h>
      21              : 
      22              : namespace chip {
      23              : namespace app {
      24              : namespace DataModel {
      25              : 
      26         2931 : ReadOnlyBuffer<EndpointEntry> ProviderMetadataTree::EndpointsIgnoreError()
      27              : {
      28              : 
      29         2931 :     ListBuilder<EndpointEntry> builder;
      30         2931 :     (void) Endpoints(builder);
      31         2931 :     return builder.TakeBuffer();
      32         2931 : }
      33              : 
      34         8449 : ReadOnlyBuffer<ServerClusterEntry> ProviderMetadataTree::ServerClustersIgnoreError(EndpointId endpointId)
      35              : {
      36              : 
      37         8449 :     ListBuilder<ServerClusterEntry> builder;
      38         8449 :     (void) ServerClusters(endpointId, builder);
      39         8449 :     return builder.TakeBuffer();
      40         8449 : }
      41              : 
      42        12933 : ReadOnlyBuffer<AttributeEntry> ProviderMetadataTree::AttributesIgnoreError(const ConcreteClusterPath & path)
      43              : {
      44        12933 :     ListBuilder<AttributeEntry> builder;
      45        12933 :     (void) Attributes(path, builder);
      46        12933 :     return builder.TakeBuffer();
      47        12933 : }
      48              : 
      49              : } // namespace DataModel
      50              : } // namespace app
      51              : } // namespace chip
        

Generated by: LCOV version 2.0-1