• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

SamboyCoding / Cpp2IL / 28719485642

04 Jul 2026 08:59PM UTC coverage: 35.251% (-3.5%) from 38.757%
28719485642

push

github

SamboyCoding
Core: Drop explicit net7 and net6 TFMs

Note these are still usable via the netstandard TFM so this doesn't break any use cases, but several packages were warning about not being tested on these TFMs.

2595 of 8474 branches covered (30.62%)

Branch coverage included in aggregate %.

4947 of 12921 relevant lines covered (38.29%)

162592.91 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/LibCpp2IL/Elf/ElfProgramHeaderEntry64.cs
1
using LibCpp2IL.PE;
2

3
namespace LibCpp2IL.Elf;
4

5
public class ElfProgramHeaderEntry64 : ReadableClass, IElfProgramHeaderEntry
6
{
7
    public ElfProgramEntryType _internalType;
8
    public ElfProgramHeaderFlags _internalFlags; //This is here in 64-bit elf files.
9
    public ulong _internalOffsetRaw;
10
    public ulong _internalVirtualAddr;
11
    public ulong _internalPhysicalAddr;
12
    public ulong _internalSizeRaw;
13
    public ulong _internalSizeVirtual;
14
    public long _internalAlign;
15

16
    public ElfProgramHeaderFlags Flags => _internalFlags;
×
17
    public ElfProgramEntryType Type => _internalType;
×
18
    public ulong RawAddress => _internalOffsetRaw;
×
19
    public ulong VirtualAddress => _internalVirtualAddr;
×
20
    public ulong PhysicalAddr => _internalPhysicalAddr;
×
21
    public ulong RawSize => _internalSizeRaw;
×
22
    public ulong VirtualSize => _internalSizeVirtual;
×
23
    public long Align => _internalAlign;
×
24

25
    public override void Read(ClassReadingBinaryReader reader)
26
    {
27
        _internalType = (ElfProgramEntryType)reader.ReadUInt32();
×
28
        _internalFlags = (ElfProgramHeaderFlags)reader.ReadUInt32();
×
29
        _internalOffsetRaw = reader.ReadUInt64();
×
30
        _internalVirtualAddr = reader.ReadUInt64();
×
31
        _internalPhysicalAddr = reader.ReadUInt64();
×
32
        _internalSizeRaw = reader.ReadUInt64();
×
33
        _internalSizeVirtual = reader.ReadUInt64();
×
34
        _internalAlign = reader.ReadInt64();
×
35
    }
×
36
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc