ESP-IDF
wpabuf::size
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
wpabuf::size
wpabuf::size field
Syntax
Show:
Summary
Declaration
from
wpabuf.h:27
size_t
size
;
Examples
References
from
examples
Code
Location
Referrer
size_t
size
;
/* total size of the allocated buffer */
wpabuf.h:27
if
(
buf
->
used
+
add_len
>
buf
->
size
)
{
wpabuf.c:73
wpabuf_resize()
buf
->
size
=
buf
->
used
+
add_len
;
wpabuf.c:105
wpabuf_resize()
buf
->
size
=
len
;
wpabuf.c:133
wpabuf_alloc()
buf
->
size
=
len
;
wpabuf.c:154
wpabuf_alloc_ext_data()
if
(
buf
->
used
>
buf
->
size
)
{
wpabuf.c:223
wpabuf_put()
res
=
vsnprintf
(
tmp
,
buf
->
size
-
buf
->
used
,
fmt
,
ap
)
;
wpabuf.c:308
wpabuf_printf()
if
(
res
<
0
||
(
size_t
)
res
>=
buf
->
size
-
buf
->
used
)
wpabuf.c:310
wpabuf_printf()
return
buf
->
size
;
wpabuf.h:55
wpabuf_size()
return
buf
->
size
-
buf
->
used
;
wpabuf.h:75
wpabuf_tailroom()
buf
->
size
=
buf
->
used
=
len
;
wpabuf.h:161
wpabuf_set()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
wpabuf::size
is written by 4 functions and is read by 5 functions:
wpabuf_set()
wpabuf_resize()
wpabuf_alloc()
wpabuf_alloc_ext_data()
All items filtered out
wpabuf::size
wpabuf_size()
wpabuf_tailroom()
wpabuf_resize()
wpabuf_put()
wpabuf_printf()
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