ESP-IDF
entry_t::value
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
entry_t::value
entry_t::value field
Syntax
Show:
Summary
Declaration
from
config.c:28
char
*
value
;
Examples
References
from
examples
Code
Location
Referrer
char
*
value
;
config.c:28
OSI_TRACE_DEBUG
(
"entry->key = %s, entry->value = %s"
,
entry
->
key
,
entry
->
value
)
;
config.c:137
config_has_key_in_section()
if
(
!
strcmp
(
entry
->
key
,
key
)
&&
!
strcmp
(
entry
->
value
,
key_value
)
)
{
config.c:138
config_has_key_in_section()
int
ret
=
strtol
(
entry
->
value
,
&
endptr
,
0
)
;
config.c:160
config_get_int()
if
(
!
strcmp
(
entry
->
value
,
"true"
)
)
{
config.c:175
config_get_bool()
if
(
!
strcmp
(
entry
->
value
,
"false"
)
)
{
config.c:178
config_get_bool()
return
entry
->
value
;
config.c:196
config_get_string()
osi_free
(
entry
->
value
)
;
config.c:234
config_set_string()
entry
->
value
=
osi_strdup
(
value
)
;
config.c:235
config_set_string()
w_len
=
strlen
(
entry
->
key
)
+
strlen
(
entry
->
value
)
+
strlen
(
" = \n"
)
;
// format "entry->key = entry->value\n"
config.c:343
get_config_size()
OSI_TRACE_DEBUG
(
"(key, val): (%s, %s)\n"
,
entry
->
key
,
entry
->
value
)
;
config.c:452
config_save()
w_cnt
=
snprintf
(
line
,
1024
,
"%s = %s\n"
,
entry
->
key
,
entry
->
value
)
;
config.c:453
config_save()
entry
->
value
=
osi_strdup
(
value
)
;
config.c:709
entry_new()
osi_free
(
entry
->
value
)
;
config.c:721
entry_free()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
entry_t::value
is written by 2 functions and is read by 8 functions:
config_set_string()
entry_new()
All items filtered out
entry_t::value
config_has_key_in_section()
config_get_int()
config_get_bool()
config_get_string()
config_set_string()
get_config_size()
config_save()
entry_free()
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