ESP-IDF
config_t::sections
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
config_t::sections
config_t::sections field
Syntax
Show:
Summary
Declaration
from
config.c:37
list_t
*
sections
;
Examples
References
from
examples
Code
Location
Referrer
list_t
*
sections
;
config.c:37
config
->
sections
=
list_new
(
section_free
)
;
config.c:61
config_new_empty()
if
(
!
config
->
sections
)
{
config.c:62
config_new_empty()
list_free
(
config
->
sections
)
;
config.c:108
config_free()
for
(
const
list_node_t
*
node
=
list_begin
(
config
->
sections
)
;
node
!=
list_end
(
config
->
sections
)
;
node
=
list_next
(
node
)
)
{
config.c:132
config_has_key_in_section()
list_append
(
config
->
sections
,
sec
)
;
config.c:225
config_set_string()
list_prepend
(
config
->
sections
,
sec
)
;
config.c:227
config_set_string()
return
list_remove
(
config
->
sections
,
sec
)
;
config.c:254
config_remove_section()
list_node_t
*
first_node
=
list_begin
(
config
->
sections
)
;
config.c:262
config_update_newest_section()
for
(
const
list_node_t
*
node
=
list_begin
(
config
->
sections
)
;
node
!=
list_end
(
config
->
sections
)
;
node
=
list_next
(
node
)
)
{
config.c:271
config_update_newest_section()
list_delete
(
config
->
sections
,
sec
)
;
config.c:274
config_update_newest_section()
list_prepend
(
config
->
sections
,
sec
)
;
config.c:275
config_update_newest_section()
return
(
const
config_section_node_t
*
)
list_begin
(
config
->
sections
)
;
config.c:307
config_section_begin()
return
(
const
config_section_node_t
*
)
list_end
(
config
->
sections
)
;
config.c:313
config_section_end()
for
(
const
list_node_t
*
node
=
list_begin
(
config
->
sections
)
;
node
!=
list_end
(
config
->
sections
)
;
node
=
list_next
(
node
)
)
{
config.c:336
get_config_size()
if
(
list_next
(
node
)
!=
list_end
(
config
->
sections
)
)
{
config.c:348
get_config_size()
for
(
const
list_node_t
*
node
=
list_begin
(
config
->
sections
)
;
node
!=
list_end
(
config
->
sections
)
;
node
=
list_next
(
node
)
)
{
config.c:433
config_save()
if
(
list_next
(
node
)
!=
list_end
(
config
->
sections
)
)
{
config.c:470
config_save()
for
(
const
list_node_t
*
node
=
list_begin
(
config
->
sections
)
;
node
!=
list_end
(
config
->
sections
)
;
node
=
list_next
(
node
)
)
{
config.c:691
section_find()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
config_t::sections
is written by 1 function and is read by 11 functions:
config_new_empty()
All items filtered out
config_t::sections
config_new_empty()
config_free()
config_has_key_in_section()
config_set_string()
config_remove_section()
config_update_newest_section()
config_section_begin()
config_section_end()
get_config_size()
config_save()
section_find()
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Lifecycle
from
examples
All items filtered out
All items filtered out