LCOV - code coverage report
Current view: top level - basic - af-list.h (source / functions) Hit Total Coverage
Test: systemd_full.info Lines: 0 8 0.0 %
Date: 2019-08-23 13:36:53 Functions: 0 1 0.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 0 6 0.0 %

           Branch data     Line data    Source code
       1                 :            : /* SPDX-License-Identifier: LGPL-2.1+ */
       2                 :            : #pragma once
       3                 :            : 
       4                 :            : #include <sys/socket.h>
       5                 :            : 
       6                 :            : #include "string-util.h"
       7                 :            : 
       8                 :            : const char *af_to_name(int id);
       9                 :            : int af_from_name(const char *name);
      10                 :            : 
      11                 :          0 : static inline const char* af_to_name_short(int id) {
      12                 :            :         const char *f;
      13                 :            : 
      14         [ #  # ]:          0 :         if (id == AF_UNSPEC)
      15                 :          0 :                 return "*";
      16                 :            : 
      17                 :          0 :         f = af_to_name(id);
      18         [ #  # ]:          0 :         if (!f)
      19                 :          0 :                 return "unknown";
      20                 :            : 
      21         [ #  # ]:          0 :         assert(startswith(f, "AF_"));
      22                 :          0 :         return f + 3;
      23                 :            : }
      24                 :            : 
      25                 :            : int af_max(void);

Generated by: LCOV version 1.14