ESP-IDF
GET_FLAGS
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading (4/5)...
Files
loading (4/5)...
Summary
Syntax
Arguments
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
GET_FLAGS
GET_FLAGS macro
Syntax
Show:
Summary
Declaration
from
nullfs.c:36
#define
GET_FLAGS
(
ctx
,
fd
)
(
(
ctx
>
>
(
fd
*
2
)
)
&
0x3
)
Arguments
Argument
ctx
fd
Examples
References
from
examples
Code
Location
#define
GET_FLAGS
(
ctx
,
fd
)
(
(
ctx
>
>
(
fd
*
2
)
)
&
0x3
)
nullfs.c:36
#define
WRITABLE
(
ctx
,
fd
)
(
GET_FLAGS
(
ctx
,
fd
)
&
VFS_NULL_WRITE
)
nullfs.c:39
#define
READABLE
(
ctx
,
fd
)
(
GET_FLAGS
(
ctx
,
fd
)
&
VFS_NULL_READ
)
nullfs.c:40
#define
IS_FD_VALID
(
fd
)
(
FD_IN_RANGE
(
fd
)
&&
GET_FLAGS
(
g_fds
,
fd
)
!=
VFS_NULL_CLOSED
)
nullfs.c:46
if
(
GET_FLAGS
(
g_fds
,
i
)
==
VFS_NULL_CLOSED
)
{
nullfs.c:186
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
Lifecycle
from
examples
All items filtered out
All items filtered out