ESP-IDF
_internal_arg_dstr::data
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading (3/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
_internal_arg_dstr::data
_internal_arg_dstr::data field
Syntax
Show:
Summary
Declaration
from
arg_dstr.c:102
char
*
data
;
Examples
References
from
examples
Code
Location
Referrer
char
*
data
;
arg_dstr.c:102
h
->
data
=
h
->
sbuf
;
arg_dstr.c:116
arg_dstr_create()
char
*
old_result
=
ds
->
data
;
arg_dstr.c:133
arg_dstr_set()
ds
->
data
=
ds
->
sbuf
;
arg_dstr.c:137
arg_dstr_set()
ds
->
data
=
(
char
*
)
xmalloc
(
(
unsigned
)
length
+
1
)
;
arg_dstr.c:142
arg_dstr_set()
ds
->
data
=
ds
->
sbuf
;
arg_dstr.c:145
arg_dstr_set()
strcpy
(
ds
->
data
,
str
)
;
arg_dstr.c:148
arg_dstr_set()
ds
->
data
=
str
;
arg_dstr.c:150
arg_dstr_set()
if
(
(
old_free_proc
!=
0
)
&&
(
old_result
!=
ds
->
data
)
)
{
arg_dstr.c:160
arg_dstr_set()
return
ds
->
data
;
arg_dstr.c:177
arg_dstr_cstr()
memcpy
(
ds
->
data
+
strlen
(
ds
->
data
)
,
str
,
strlen
(
str
)
)
;
arg_dstr.c:182
arg_dstr_cat()
memcpy
(
ds
->
data
+
strlen
(
ds
->
data
)
,
&
c
,
1
)
;
arg_dstr.c:187
arg_dstr_catc()
if
(
ds
->
data
!=
ds
->
append_data
)
{
arg_dstr.c:273
setup_append_buf()
ds
->
append_used
=
(
int
)
strlen
(
ds
->
data
)
;
arg_dstr.c:284
setup_append_buf()
}
else
if
(
ds
->
data
[
ds
->
append_used
]
!=
0
)
{
arg_dstr.c:285
setup_append_buf()
ds
->
append_used
=
(
int
)
strlen
(
ds
->
data
)
;
arg_dstr.c:291
setup_append_buf()
strcpy
(
newbuf
,
ds
->
data
)
;
arg_dstr.c:305
setup_append_buf()
}
else
if
(
ds
->
data
!=
ds
->
append_data
)
{
arg_dstr.c:311
setup_append_buf()
strcpy
(
ds
->
append_data
,
ds
->
data
)
;
arg_dstr.c:312
setup_append_buf()
ds
->
data
=
ds
->
append_data
;
arg_dstr.c:316
setup_append_buf()
xfree
(
ds
->
data
)
;
arg_dstr.c:322
arg_dstr_free()
(
*
ds
->
free_proc
)
(
ds
->
data
)
;
arg_dstr.c:324
arg_dstr_free()
ds
->
data
=
ds
->
sbuf
;
arg_dstr.c:338
arg_dstr_reset()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
_internal_arg_dstr::data
is written by 4 functions and is read by 6 functions:
arg_dstr_create()
arg_dstr_set()
setup_append_buf()
arg_dstr_reset()
All items filtered out
_internal_arg_dstr::data
arg_dstr_set()
arg_dstr_cstr()
arg_dstr_cat()
arg_dstr_catc()
setup_append_buf()
arg_dstr_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