ESP-IDF
l2tap_select_args_t
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading (1/5)...
Files
loading (3/5)...
Summary
Syntax
Related
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
l2tap_select_args_t
l2tap_select_args_t struct
Syntax
Show:
Summary
Declaration
from
esp_vfs_l2tap.c:57
typedef
struct
{
esp_vfs_select_sem_t
select_sem
;
fd_set
*
readfds
;
fd_set
*
writefds
;
fd_set
*
errorfds
;
fd_set
readfds_orig
;
fd_set
writefds_orig
;
fd_set
errorfds_orig
;
}
l2tap_select_args_t
;
Fields
Field
Declared as
l2tap_select_args_t::select_sem
esp_vfs_select_sem_t
l2tap_select_args_t::readfds
fd_set
*
l2tap_select_args_t::writefds
fd_set
*
l2tap_select_args_t::errorfds
fd_set
*
l2tap_select_args_t::readfds_orig
fd_set
l2tap_select_args_t::writefds_orig
fd_set
l2tap_select_args_t::errorfds_orig
fd_set
Related Functions
Found 2 other functions taking a
l2tap_select_args_t
argument:
Function
register_select()
unregister_select()
Examples
References
from
examples
Code
Location
Scope
Referrer
typedef
struct
{
esp_vfs_l2tap.c:57
}
l2tap_select_args_t
;
esp_vfs_l2tap.c:65
l2tap_select_args_t
static
l2tap_select_args_t
*
*
s_registered_selects
=
NULL
;
esp_vfs_l2tap.c:79
static
esp_err_t
register_select
(
l2tap_select_args_t
*
args
)
esp_vfs_l2tap.c:443
register_select()
register_select()::args
l2tap_select_args_t
*
*
registered_selects_new
;
esp_vfs_l2tap.c:449
register_select()
if
(
(
registered_selects_new
=
realloc
(
s_registered_selects
,
new_size
*
sizeof
(
l2tap_select_args_t
*
)
)
)
==
NULL
)
{
esp_vfs_l2tap.c:450
register_select()
static
esp_err_t
unregister_select
(
l2tap_select_args_t
*
args
)
esp_vfs_l2tap.c:463
unregister_select()
unregister_select()::args
s_registered_selects
=
realloc
(
s_registered_selects
,
new_size
*
sizeof
(
l2tap_select_args_t
*
)
)
;
esp_vfs_l2tap.c:474
unregister_select()
l2tap_select_args_t
*
args
=
s_registered_selects
[
i
]
;
esp_vfs_l2tap.c:491
l2tap_select_notify()
l2tap_select_args_t
*
args
=
malloc
(
sizeof
(
l2tap_select_args_t
)
)
;
esp_vfs_l2tap.c:523
l2tap_start_select()
free
(
args
)
;
esp_vfs_l2tap.c:555
l2tap_start_select()
l2tap_select_args_t
*
args
=
end_select_args
;
esp_vfs_l2tap.c:568
l2tap_end_select()
free
(
args
)
;
esp_vfs_l2tap.c:578
l2tap_end_select()
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
s_registered_selects
esp_vfs_l2tap.c:79
register_select()::args
register_select()
esp_vfs_l2tap.c:443
unregister_select()::args
unregister_select()
esp_vfs_l2tap.c:463
Lifecycle
from
examples
l2tap_select_args_t
is allocated by 1 symbol and is freed by 2 symbols:
l2tap_start_select()
All items filtered out
l2tap_select_args_t
l2tap_start_select()
l2tap_end_select()
All items filtered out