FatFS
::flags
is only used within FatFS.
Symbol previews are coming soon...
Symbols
loading...
Files
loading (2/5)...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
FatFS
::flags
::flags field
Syntax
Show:
Summary
Declaration
from
vfs_fat.c:42
uint32_t
*
flags
;
Examples
References
from
examples
Code
Location
Referrer
uint32_t
*
flags
;
/* file descriptor flags, array of max_files size */
vfs_fat.c:42
fat_ctx
->
flags
=
ff_memalloc
(
max_files
*
sizeof
(
*
fat_ctx
->
flags
)
)
;
vfs_fat.c:204
esp_vfs_fat_register_cfg()
if
(
fat_ctx
->
flags
==
NULL
)
{
vfs_fat.c:205
esp_vfs_fat_register_cfg()
memset
(
fat_ctx
->
flags
,
0
,
max_files
*
sizeof
(
*
fat_ctx
->
flags
)
)
;
vfs_fat.c:209
esp_vfs_fat_register_cfg()
free
(
fat_ctx
->
flags
)
;
vfs_fat.c:216
esp_vfs_fat_register_cfg()
free
(
fat_ctx
->
flags
)
;
vfs_fat.c:244
esp_vfs_fat_unregister_path()
fat_ctx
->
flags
[
fd
]
=
(
flags
&
(
O_APPEND
|
O_ACCMODE
)
)
;
vfs_fat.c:432
vfs_fat_open()
if
(
fat_ctx
->
flags
[
fd
]
&
O_APPEND
)
{
vfs_fat.c:443
vfs_fat_write()
return
fat_ctx
->
flags
[
fd
]
;
vfs_fat.c:682
vfs_fat_fcntl()
fat_ctx
->
flags
[
fd
]
=
arg
;
vfs_fat.c:684
vfs_fat_fcntl()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
::flags
is written by 1 function and is read by 5 functions:
esp_vfs_fat_register_cfg()
All items filtered out
::flags
esp_vfs_fat_register_cfg()
esp_vfs_fat_unregister_path()
vfs_fat_open()
vfs_fat_write()
vfs_fat_fcntl()
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