ESP-IDF
config_set_string()
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading (3/5)...
Files
loading (4/5)...
Summary
Syntax
Arguments
Related
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
config_set_string()
config_set_string() function
Syntax
Show:
Summary
Declaration
Definition
from
config.h:95
void
config_set_string
(
config_t
*
config
,
const
char
*
section
,
const
char
*
key
,
const
char
*
value
,
bool
insert_back
)
;
Implemented in
config.c:219
Arguments
Argument
Declared as
config
config_t
*
section
const
char
*
key
const
char
*
value
const
char
*
insert_back
bool
Related Functions
Found 19 other functions taking a
config_t
argument:
Function
config_free()
entry_find()
section_find()
config_get_string()
config_remove_section()
config_save()
config_has_key()
config_get_int()
config_has_section()
config_has_key_in_section()
config_set_int()
config_section_end()
config_section_begin()
config_update_newest_section()
config_remove_key()
config_parse()
config_get_bool()
config_set_bool()
get_config_size()
Examples
References
from
examples
Code
Location
Referrer
void
config_set_string
(
config_t
*
config
,
const
char
*
section
,
const
char
*
key
,
const
char
*
value
,
bool
insert_back
)
config.c:219
void
config_set_string
(
config_t
*
config
,
const
char
*
section
,
const
char
*
key
,
const
char
*
value
,
bool
insert_back
)
;
config.h:95
config_set_string
(
config
,
section
,
key
,
value
,
false
)
;
btc_config.c:187
btc_config_set_str()
config_set_string
(
config
,
section
,
key
,
str
,
false
)
;
btc_config.c:263
btc_config_set_bin()
config_set_string
(
config
,
section
,
key
,
value_str
,
false
)
;
config.c:207
config_set_int()
config_set_string
(
config
,
section
,
key
,
value
?
"true"
:
"false"
,
false
)
;
config.c:216
config_set_bool()
config_set_string
(
config
,
section
,
trim
(
line_ptr
)
,
trim
(
split
+
1
)
,
true
)
;
config.c:643
config_parse()
Call Tree
from
examples
config_set_string()
is called by 5 functions and calls 11 functions:
config_set_int()
config_set_bool()
config_parse()
btc_config_set_str()
btc_config_set_bin()
All items filtered out
config_set_string()
free()
list_prepend()
list_append()
list_begin()
list_end()
list_next()
list_node()
osi_strdup()
section_new()
section_find()
entry_new()
All items filtered out
Data Use
from
examples
config_set_string()
reads 4 variables and writes 1 variable:
entry_t::key
entry_t::value
section_t::entries
config_t::sections
All items filtered out
config_set_string()
entry_t::value
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