Files
esp-protocols/index.html

786 lines
19 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title>GCC Code Coverage Report</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<style type="text/css">
:root {
font-family: sans-serif;
--unknown_color: LightGray;
--low_color: #FF6666;
--medium_color: #F9FD63;
--high_color: #85E485;
--covered_color: #85E485;
--uncovered_color: #FF8C8C;
--takenBranch_color: Green;
--notTakenBranch_color: Red;
}
body
{
color: #000000;
background-color: #FFFFFF;
}
h1
{
text-align: center;
margin: 0;
padding-bottom: 10px;
font-size: 20pt;
font-weight: bold;
}
hr
{
background-color: navy;
height: 2px;
border: 0;
}
/* Link formats: use maroon w/underlines */
a:link
{
color: navy;
text-decoration: underline;
}
a:visited
{
color: maroon;
text-decoration: underline;
}
/*** Summary formats ***/
.summary
{
display: flex;
flex-flow: row wrap;
max-width: 100%;
justify-content: flex-start;
}
.summary > table
{
flex: 1 0 7em;
border: 0;
}
.summary > :last-child {
margin-left: auto;
}
table.legend
{
color: black;
display: flex;
flex-flow: row wrap;
justify-content: flex-start;
}
table.legend th[scope=row]
{
font-weight: normal;
text-align: right;
white-space: nowrap;
}
table.legend td
{
color: blue;
text-align: left;
white-space: nowrap;
padding-left: 5px;
}
table.legend td.legend
{
color: black;
font-size: 80%;
}
table.coverage td,
table.coverage th
{
text-align: right;
color: black;
font-weight: normal;
white-space: nowrap;
padding-left: 5px;
padding-right: 4px;
}
table.coverage td
{
background-color: LightSteelBlue;
}
table.coverage th[scope=row]
{
color: black;
font-weight: normal;
white-space: nowrap;
}
table.coverage th[scope=col]
{
color: blue;
font-weight: normal;
white-space: nowrap;
}
table.legend span
{
margin-right: 4px;
padding: 2px;
}
table.legend span.coverage-unknown,
table.legend span.coverage-none,
table.legend span.coverage-low,
table.legend span.coverage-medium,
table.legend span.coverage-high
{
padding-left: 3px;
padding-right: 3px;
}
table.legend span.coverage-unknown,
table.coverage td.coverage-unknown
{
background-color: var(--unknown_color) !important;
}
table.legend span.coverage-none,
table.legend span.coverage-low,
table.coverage td.coverage-none,
table.coverage td.coverage-low
{
background-color: var(--low_color) !important;
}
table.legend span.coverage-medium,
table.coverage td.coverage-medium
{
background-color: var(--medium_color) !important;
}
table.legend span.coverage-high,
table.coverage td.coverage-high
{
background-color: var(--high_color) !important;
}
/*** End of Summary formats ***/
/*** Meter formats ***/
/* Common */
meter {
-moz-appearance: none;
width: 30vw;
min-width: 4em;
max-width: 15em;
height: 0.75em;
padding: 0;
vertical-align: baseline;
margin-top: 3px;
/* Outer background for Mozilla */
background: none;
background-color: whitesmoke;
}
/* Webkit */
meter::-webkit-meter-bar {
/* Outer background for Webkit */
background: none;
background-color: whitesmoke;
height: 0.75em;
border-radius: 0px;
}
meter::-webkit-meter-optimum-value,
meter::-webkit-meter-suboptimum-value,
meter::-webkit-meter-even-less-good-value
{
/* Inner shadow for Webkit */
border: solid 1px black;
}
meter.coverage-none::-webkit-meter-optimum-value,
meter.coverage-low::-webkit-meter-optimum-value
{
background: var(--low_color);
}
meter.coverage-medium::-webkit-meter-optimum-value
{
background: var(--medium_color);
}
meter.coverage-high::-webkit-meter-optimum-value
{
background: var(--high_color);
}
/* Mozilla */
meter::-moz-meter-bar
{
box-sizing: border-box;
}
meter:-moz-meter-optimum::-moz-meter-bar,
meter:-moz-meter-sub-optimum::-moz-meter-bar,
meter:-moz-meter-sub-sub-optimum::-moz-meter-bar
{
/* Inner shadow for Mozilla */
border: solid 1px black;
}
meter.coverage-none:-moz-meter-optimum::-moz-meter-bar,
meter.coverage-low:-moz-meter-optimum::-moz-meter-bar
{
background: var(--low_color);
}
meter.coverage-medium:-moz-meter-optimum::-moz-meter-bar
{
background: var(--medium_color);
}
meter.coverage-high:-moz-meter-optimum::-moz-meter-bar
{
background: var(--high_color);
}
/*** End of Meter formats ***/
.file-list td, .file-list th {
padding: 0 10px;
font-weight: bold;
}
.file-list th[scope^=col]
{
text-align: center;
color: white;
background-color: SteelBlue;
font-size: 120%;
}
.file-list th[scope=row]
{
text-align: left;
color: black;
font-family: monospace;
font-weight: bold;
font-size: 110%;
}
.file-list tr > td,
.file-list tr > th {
background: aliceblue;
}
.file-list tr:nth-child(even) > td,
.file-list tr:nth-child(even) > th {
background: LightSteelBlue
}
.file-list tr:hover > td,
.file-list tr:hover > th[scope=row]
{
background-color: #ddd;
}
td.CoverValue
{
text-align: right;
white-space: nowrap;
}
td.coveredLine,
span.coveredLine
{
background-color: var(--covered_color) !important;
}
td.uncoveredLine,
span.uncoveredLine
{
background-color: var(--uncovered_color) !important;
}
.linebranch, .linecount
{
font-family: monospace;
border-right: 1px gray solid;
background-color: lightgray;
text-align: right;
}
.linebranchDetails
{
position: relative;
}
.linebranchSummary
{
cursor: help;
}
.linebranchContents
{
font-family: sans-serif;
font-size: small;
text-align: left;
position: absolute;
width: 15em;
padding: 1em;
background: white;
border: solid gray 1px;
box-shadow: 5px 5px 10px gray;
z-index: 1; /* show in front of the table entries */
}
.takenBranch
{
color: var(--takenBranch_color) !important;
}
.notTakenBranch
{
color: var(--notTakenBranch_color) !important;
}
.src
{
padding-left: 12px;
text-align: left;
font-family: monospace;
white-space: pre;
tab-size: var(--tab_size);
-moz-tab-size: var(--tab_size);
}
span.takenBranch,
span.notTakenBranch
{
font-family: monospace;
font-weight: bold;
}
pre
{
height : 15px;
margin-top: 0;
margin-bottom: 0;
}
.source-line
{
height : 15px;
margin-top: 0;
margin-bottom: 0;
}
.lineno
{
background-color: #EFE383;
border-right: 1px solid #BBB15F;
text-align: right;
unicode-bidi: embed;
font-family: monospace;
white-space: pre;
}
.lineno > a
{
text-decoration: none;
color: inherit;
}
.file-list
{
margin: 1em auto;
border: 0;
border-spacing: 1px;
}
.file-source table
{
border-spacing: 0;
}
.file-source table td,
.file-source table th
{
padding: 1px 10px;
}
.file-source table th
{
font-family: monospace;
font-weight: bold;
}
.file-source table td:last-child
{
width: 100%;
}
footer
{
text-align: center;
padding-top: 3px;
}
/* pygments syntax highlighting */
pre { line-height: 125%; }
td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
.hll { background-color: #ffffcc }
.c { color: #3D7B7B; font-style: italic } /* Comment */
.err { border: 1px solid #FF0000 } /* Error */
.k { color: #008000; font-weight: bold } /* Keyword */
.o { color: #666666 } /* Operator */
.ch { color: #3D7B7B; font-style: italic } /* Comment.Hashbang */
.cm { color: #3D7B7B; font-style: italic } /* Comment.Multiline */
.cp { color: #9C6500 } /* Comment.Preproc */
.cpf { color: #3D7B7B; font-style: italic } /* Comment.PreprocFile */
.c1 { color: #3D7B7B; font-style: italic } /* Comment.Single */
.cs { color: #3D7B7B; font-style: italic } /* Comment.Special */
.gd { color: #A00000 } /* Generic.Deleted */
.ge { font-style: italic } /* Generic.Emph */
.gr { color: #E40000 } /* Generic.Error */
.gh { color: #000080; font-weight: bold } /* Generic.Heading */
.gi { color: #008400 } /* Generic.Inserted */
.go { color: #717171 } /* Generic.Output */
.gp { color: #000080; font-weight: bold } /* Generic.Prompt */
.gs { font-weight: bold } /* Generic.Strong */
.gu { color: #800080; font-weight: bold } /* Generic.Subheading */
.gt { color: #0044DD } /* Generic.Traceback */
.kc { color: #008000; font-weight: bold } /* Keyword.Constant */
.kd { color: #008000; font-weight: bold } /* Keyword.Declaration */
.kn { color: #008000; font-weight: bold } /* Keyword.Namespace */
.kp { color: #008000 } /* Keyword.Pseudo */
.kr { color: #008000; font-weight: bold } /* Keyword.Reserved */
.kt { color: #B00040 } /* Keyword.Type */
.m { color: #666666 } /* Literal.Number */
.s { color: #BA2121 } /* Literal.String */
.na { color: #687822 } /* Name.Attribute */
.nb { color: #008000 } /* Name.Builtin */
.nc { color: #0000FF; font-weight: bold } /* Name.Class */
.no { color: #880000 } /* Name.Constant */
.nd { color: #AA22FF } /* Name.Decorator */
.ni { color: #717171; font-weight: bold } /* Name.Entity */
.ne { color: #CB3F38; font-weight: bold } /* Name.Exception */
.nf { color: #0000FF } /* Name.Function */
.nl { color: #767600 } /* Name.Label */
.nn { color: #0000FF; font-weight: bold } /* Name.Namespace */
.nt { color: #008000; font-weight: bold } /* Name.Tag */
.nv { color: #19177C } /* Name.Variable */
.ow { color: #AA22FF; font-weight: bold } /* Operator.Word */
.w { color: #bbbbbb } /* Text.Whitespace */
.mb { color: #666666 } /* Literal.Number.Bin */
.mf { color: #666666 } /* Literal.Number.Float */
.mh { color: #666666 } /* Literal.Number.Hex */
.mi { color: #666666 } /* Literal.Number.Integer */
.mo { color: #666666 } /* Literal.Number.Oct */
.sa { color: #BA2121 } /* Literal.String.Affix */
.sb { color: #BA2121 } /* Literal.String.Backtick */
.sc { color: #BA2121 } /* Literal.String.Char */
.dl { color: #BA2121 } /* Literal.String.Delimiter */
.sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */
.s2 { color: #BA2121 } /* Literal.String.Double */
.se { color: #AA5D1F; font-weight: bold } /* Literal.String.Escape */
.sh { color: #BA2121 } /* Literal.String.Heredoc */
.si { color: #A45A77; font-weight: bold } /* Literal.String.Interpol */
.sx { color: #008000 } /* Literal.String.Other */
.sr { color: #A45A77 } /* Literal.String.Regex */
.s1 { color: #BA2121 } /* Literal.String.Single */
.ss { color: #19177C } /* Literal.String.Symbol */
.bp { color: #008000 } /* Name.Builtin.Pseudo */
.fm { color: #0000FF } /* Name.Function.Magic */
.vc { color: #19177C } /* Name.Variable.Class */
.vg { color: #19177C } /* Name.Variable.Global */
.vi { color: #19177C } /* Name.Variable.Instance */
.vm { color: #19177C } /* Name.Variable.Magic */
.il { color: #666666 } /* Literal.Number.Integer.Long */
</style>
</head>
<body>
<h1>GCC Code Coverage Report</h1>
<hr/>
<div class="summary">
<div>
<table class="legend">
<tr>
<th scope="row">Directory:</th>
<td>src/</td>
</tr>
<tr>
<th scope="row">Date:</th>
<td>2023-07-25 10:33:25</td>
</tr>
<tr>
<th scope="row">Legend:</th>
<td class="legend">
<span class="coverage-low">low: &gt;= 0%</span>
<span class="coverage-medium">medium: &gt;= 75.0%</span>
<span class="coverage-high">high: &gt;= 90.0%</span>
</td>
</tr>
</table>
</div>
<div>
<table class="coverage">
<tr>
<th></th>
<th scope="col">Exec</th>
<th scope="col">Total</th>
<th scope="col">Coverage</th>
</tr>
<tr>
<th scope="row">Lines:</th>
<td>518</td>
<td>1166</td>
<td class="coverage-low">44.4%</td>
</tr>
<tr>
<th scope="row">Branches:</th>
<td>0</td>
<td>0</td>
<td class="coverage-unknown">-%</td>
</tr>
</table>
</div>
</div>
<hr/>
<table class="file-list">
<col/>
<colgroup span="3"/>
<colgroup span="2"/>
<tr>
<th scope="col">File</th>
<th scope="colgroup" colspan=3>Lines</th>
<th scope="colgroup" colspan=2>Branches</th>
</tr>
<tr>
<th scope="row">
esp_modem_api.cpp
</th>
<td>
<meter class="coverage-low" min="0" max="100" value="41.2" title="41.2%">41.2</meter>
</td>
<td class="CoverValue line-coverage coverage-low">41.2%</td>
<td class="CoverValue line-coverage coverage-low">7 / 17</td>
<td class="CoverValue branch-coverage coverage-unknown">-%</td>
<td class="CoverValue branch-coverage coverage-unknown">0 / 0</td>
</tr>
<tr>
<th scope="row">
esp_modem_c_api.cpp
</th>
<td>
<meter class="coverage-none" min="0" max="100" value="0.0" title="0.0%">0.0</meter>
</td>
<td class="CoverValue line-coverage coverage-none">0.0%</td>
<td class="CoverValue line-coverage coverage-none">0 / 192</td>
<td class="CoverValue branch-coverage coverage-unknown">-%</td>
<td class="CoverValue branch-coverage coverage-unknown">0 / 0</td>
</tr>
<tr>
<th scope="row">
esp_modem_cmux.cpp
</th>
<td>
<meter class="coverage-medium" min="0" max="100" value="84.7" title="84.7%">84.7</meter>
</td>
<td class="CoverValue line-coverage coverage-medium">84.7%</td>
<td class="CoverValue line-coverage coverage-medium">199 / 235</td>
<td class="CoverValue branch-coverage coverage-unknown">-%</td>
<td class="CoverValue branch-coverage coverage-unknown">0 / 0</td>
</tr>
<tr>
<th scope="row">
esp_modem_command_library.cpp
</th>
<td>
<meter class="coverage-low" min="0" max="100" value="52.9" title="52.9%">52.9</meter>
</td>
<td class="CoverValue line-coverage coverage-low">52.9%</td>
<td class="CoverValue line-coverage coverage-low">157 / 297</td>
<td class="CoverValue branch-coverage coverage-unknown">-%</td>
<td class="CoverValue branch-coverage coverage-unknown">0 / 0</td>
</tr>
<tr>
<th scope="row">
esp_modem_dce.cpp
</th>
<td>
<meter class="coverage-low" min="0" max="100" value="55.0" title="55.0%">55.0</meter>
</td>
<td class="CoverValue line-coverage coverage-low">55.0%</td>
<td class="CoverValue line-coverage coverage-low">44 / 80</td>
<td class="CoverValue branch-coverage coverage-unknown">-%</td>
<td class="CoverValue branch-coverage coverage-unknown">0 / 0</td>
</tr>
<tr>
<th scope="row">
esp_modem_dte.cpp
</th>
<td>
<meter class="coverage-low" min="0" max="100" value="50.7" title="50.7%">50.7</meter>
</td>
<td class="CoverValue line-coverage coverage-low">50.7%</td>
<td class="CoverValue line-coverage coverage-low">69 / 136</td>
<td class="CoverValue branch-coverage coverage-unknown">-%</td>
<td class="CoverValue branch-coverage coverage-unknown">0 / 0</td>
</tr>
<tr>
<th scope="row">
esp_modem_factory.cpp
</th>
<td>
<meter class="coverage-none" min="0" max="100" value="0.0" title="0.0%">0.0</meter>
</td>
<td class="CoverValue line-coverage coverage-none">0.0%</td>
<td class="CoverValue line-coverage coverage-none">0 / 9</td>
<td class="CoverValue branch-coverage coverage-unknown">-%</td>
<td class="CoverValue branch-coverage coverage-unknown">0 / 0</td>
</tr>
<tr>
<th scope="row">
esp_modem_modules.cpp
</th>
<td>
<meter class="coverage-low" min="0" max="100" value="26.3" title="26.3%">26.3</meter>
</td>
<td class="CoverValue line-coverage coverage-low">26.3%</td>
<td class="CoverValue line-coverage coverage-low">5 / 19</td>
<td class="CoverValue branch-coverage coverage-unknown">-%</td>
<td class="CoverValue branch-coverage coverage-unknown">0 / 0</td>
</tr>
<tr>
<th scope="row">
esp_modem_netif_linux.cpp
</th>
<td>
<meter class="coverage-low" min="0" max="100" value="56.0" title="56.0%">56.0</meter>
</td>
<td class="CoverValue line-coverage coverage-low">56.0%</td>
<td class="CoverValue line-coverage coverage-low">14 / 25</td>
<td class="CoverValue branch-coverage coverage-unknown">-%</td>
<td class="CoverValue branch-coverage coverage-unknown">0 / 0</td>
</tr>
<tr>
<th scope="row">
esp_modem_primitives_linux.cpp
</th>
<td>
<meter class="coverage-low" min="0" max="100" value="63.9" title="63.9%">63.9</meter>
</td>
<td class="CoverValue line-coverage coverage-low">63.9%</td>
<td class="CoverValue line-coverage coverage-low">23 / 36</td>
<td class="CoverValue branch-coverage coverage-unknown">-%</td>
<td class="CoverValue branch-coverage coverage-unknown">0 / 0</td>
</tr>
<tr>
<th scope="row">
esp_modem_term_fs.cpp
</th>
<td>
<meter class="coverage-none" min="0" max="100" value="0.0" title="0.0%">0.0</meter>
</td>
<td class="CoverValue line-coverage coverage-none">0.0%</td>
<td class="CoverValue line-coverage coverage-none">0 / 52</td>
<td class="CoverValue branch-coverage coverage-unknown">-%</td>
<td class="CoverValue branch-coverage coverage-unknown">0 / 0</td>
</tr>
<tr>
<th scope="row">
esp_modem_uart_linux.cpp
</th>
<td>
<meter class="coverage-none" min="0" max="100" value="0.0" title="0.0%">0.0</meter>
</td>
<td class="CoverValue line-coverage coverage-none">0.0%</td>
<td class="CoverValue line-coverage coverage-none">0 / 23</td>
<td class="CoverValue branch-coverage coverage-unknown">-%</td>
<td class="CoverValue branch-coverage coverage-unknown">0 / 0</td>
</tr>
<tr>
<th scope="row">
esp_modem_vfs_socket_creator.cpp
</th>
<td>
<meter class="coverage-none" min="0" max="100" value="0.0" title="0.0%">0.0</meter>
</td>
<td class="CoverValue line-coverage coverage-none">0.0%</td>
<td class="CoverValue line-coverage coverage-none">0 / 36</td>
<td class="CoverValue branch-coverage coverage-unknown">-%</td>
<td class="CoverValue branch-coverage coverage-unknown">0 / 0</td>
</tr>
<tr>
<th scope="row">
esp_modem_vfs_uart_creator.cpp
</th>
<td>
<meter class="coverage-none" min="0" max="100" value="0.0" title="0.0%">0.0</meter>
</td>
<td class="CoverValue line-coverage coverage-none">0.0%</td>
<td class="CoverValue line-coverage coverage-none">0 / 9</td>
<td class="CoverValue branch-coverage coverage-unknown">-%</td>
<td class="CoverValue branch-coverage coverage-unknown">0 / 0</td>
</tr>
</table>
<hr/>
<footer>
Generated by: <a href="http://gcovr.com">GCOVR (Version 5.0)</a>
</footer>
</body>
</html>