Coverage Report

Created: 2026-08-15 06:58

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/fwupd/libfwupdplugin/fu-darwin-efivars.c
Line
Count
Source
1
/*
2
 * Copyright 2022 Richard Hughes <richard@hughsie.com>
3
 *
4
 * SPDX-License-Identifier: LGPL-2.1-or-later
5
 */
6
7
#define G_LOG_DOMAIN "FuDarwinEfivars"
8
9
#include "config.h"
10
11
#include "fu-darwin-efivars.h"
12
13
struct _FuDarwinEfivars {
14
  FuEfivars parent_instance;
15
};
16
17
0
G_DEFINE_TYPE(FuDarwinEfivars, fu_darwin_efivars, FU_TYPE_EFIVARS)
18
0
19
0
static void
20
0
fu_darwin_efivars_init(FuDarwinEfivars *self)
21
0
{
22
0
}
23
24
static void
25
fu_darwin_efivars_class_init(FuDarwinEfivarsClass *klass)
26
0
{
27
0
}
28
29
FuEfivars *
30
fu_efivars_new(FuPathStore *pstore)
31
0
{
32
0
  return FU_EFIVARS(g_object_new(FU_TYPE_DARWIN_EFIVARS, "path-store", pstore, NULL));
33
0
}