ESP-IDF
entry_t
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading (4/5)...
Files
loading (4/5)...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
entry_t
entry_t struct
Syntax
Show:
Summary
Declaration
from
config.c:26
typedef
struct
{
char
*
key
;
char
*
value
;
}
entry_t
;
Fields
Field
Declared as
entry_t::key
char
*
entry_t::value
char
*
Examples
References
from
examples
Code
Location
Referrer
typedef
struct
{
config.c:26
}
entry_t
;
config.c:29
entry_t
static
entry_t
*
entry_new
(
const
char
*
key
,
const
char
*
value
)
;
config.c:49
entry_new()
static
entry_t
*
entry_find
(
const
config_t
*
config
,
const
char
*
section
,
const
char
*
key
)
;
config.c:51
entry_find()
entry_t
*
entry
=
list_node
(
node
)
;
config.c:136
config_has_key_in_section()
entry_t
*
entry
=
entry_find
(
config
,
section
,
key
)
;
config.c:154
config_get_int()
entry_t
*
entry
=
entry_find
(
config
,
section
,
key
)
;
config.c:170
config_get_bool()
entry_t
*
entry
=
entry_find
(
config
,
section
,
key
)
;
config.c:191
config_get_string()
entry_t
*
entry
=
list_node
(
node
)
;
config.c:232
config_set_string()
entry_t
*
entry
=
entry_new
(
key
,
value
)
;
config.c:240
config_set_string()
entry_t
*
entry
=
entry_find
(
config
,
section
,
key
)
;
config.c:291
config_remove_key()
const
entry_t
*
entry
=
(
const
entry_t
*
)
list_node
(
enode
)
;
config.c:342
get_config_size()
const
entry_t
*
entry
=
(
const
entry_t
*
)
list_node
(
enode
)
;
config.c:451
config_save()
static
entry_t
*
entry_new
(
const
char
*
key
,
const
char
*
value
)
config.c:701
entry_new()
entry_t
*
entry
=
osi_calloc
(
sizeof
(
entry_t
)
)
;
config.c:703
entry_new()
entry_t
*
entry
=
ptr
;
config.c:719
entry_free()
osi_free
(
entry
)
;
config.c:722
entry_free()
static
entry_t
*
entry_find
(
const
config_t
*
config
,
const
char
*
section
,
const
char
*
key
)
config.c:725
entry_find()
entry_t
*
entry
=
list_node
(
node
)
;
config.c:733
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
entry_new()
config.c:49
return
entry_find()
config.c:51
return
entry_new()
config.c:701
return
entry_find()
config.c:725
Lifecycle
from
examples
entry_t
is freed by 1 symbol:
All items filtered out
entry_t
entry_free()
All items filtered out