ESP-IDF
section_t
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading...
Files
loading (1/5)...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
section_t
section_t struct
Syntax
Show:
Summary
Declaration
from
config.c:31
typedef
struct
{
char
*
name
;
list_t
*
entries
;
}
section_t
;
Fields
Field
Declared as
section_t::name
char
*
section_t::entries
list_t
*
Examples
References
from
examples
Code
Location
Referrer
typedef
struct
{
config.c:31
}
section_t
;
config.c:34
section_t
static
section_t
*
section_new
(
const
char
*
name
)
;
config.c:45
section_new()
static
section_t
*
section_find
(
const
config_t
*
config
,
const
char
*
section
)
;
config.c:47
section_find()
const
section_t
*
section
=
(
const
section_t
*
)
list_node
(
node
)
;
config.c:133
config_has_key_in_section()
section_t
*
sec
=
section_find
(
config
,
section
)
;
config.c:221
config_set_string()
section_t
*
sec
=
section_find
(
config
,
section
)
;
config.c:249
config_remove_section()
section_t
*
first_sec
=
list_node
(
first_node
)
;
config.c:266
config_update_newest_section()
section_t
*
sec
=
list_node
(
node
)
;
config.c:272
config_update_newest_section()
section_t
*
sec
=
section_find
(
config
,
section
)
;
config.c:290
config_remove_key()
const
section_t
*
section
=
(
const
section_t
*
)
list_node
(
lnode
)
;
config.c:326
config_section_name()
const
section_t
*
section
=
(
const
section_t
*
)
list_node
(
node
)
;
config.c:337
get_config_size()
const
section_t
*
section
=
(
const
section_t
*
)
list_node
(
node
)
;
config.c:434
config_save()
static
section_t
*
section_new
(
const
char
*
name
)
config.c:665
section_new()
section_t
*
section
=
osi_calloc
(
sizeof
(
section_t
)
)
;
config.c:667
section_new()
section_t
*
section
=
ptr
;
config.c:683
section_free()
osi_free
(
section
)
;
config.c:686
section_free()
static
section_t
*
section_find
(
const
config_t
*
config
,
const
char
*
section
)
config.c:689
section_find()
section_t
*
sec
=
list_node
(
node
)
;
config.c:692
section_find()
section_t
*
sec
=
section_find
(
config
,
section
)
;
config.c:727
entry_find()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
All items filtered out
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
Instance
Scope
Location
Project
return
section_new()
config.c:45
return
section_find()
config.c:47
return
section_new()
config.c:665
return
section_find()
config.c:689
Lifecycle
from
examples
section_t
is freed by 1 symbol:
All items filtered out
section_t
section_free()
All items filtered out