FatFS
cached_data::file_path
is only used within FatFS.
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
FatFS
cached_data::file_path
cached_data::file_path field
Syntax
Show:
Summary
Declaration
from
vfs_fat.c:28
char
file_path
[
FILENAME_MAX
+
1
+
FF_SFN_BUF
+
1
]
;
Examples
References
from
examples
Code
Location
Referrer
char
file_path
[
FILENAME_MAX
+
1
+
FF_LFN_BUF
+
1
]
;
//FILENAME_MAX+1: for dir_path, FF_LFN_BUF+1: for file name
vfs_fat.c:26
char
file_path
[
FILENAME_MAX
+
1
+
FF_SFN_BUF
+
1
]
;
//FILENAME_MAX+1: for dir_path, FF_LFN_BUF+1: for file name
vfs_fat.c:28
if
(
strcmp
(
path
,
fat_ctx
->
cached_fileinfo
.
file_path
)
==
0
)
{
vfs_fat.c:746
vfs_fat_stat()
snprintf
(
fat_ctx
->
cached_fileinfo
.
file_path
,
sizeof
(
fat_ctx
->
cached_fileinfo
.
file_path
)
,
vfs_fat.c:941
vfs_fat_readdir()
char
*
temp_file_path
=
(
char
*
)
ff_memalloc
(
sizeof
(
fat_ctx
->
cached_fileinfo
.
file_path
)
)
;
vfs_fat.c:944
vfs_fat_readdir()
snprintf
(
temp_file_path
,
sizeof
(
fat_ctx
->
cached_fileinfo
.
file_path
)
,
vfs_fat.c:948
vfs_fat_readdir()
memcpy
(
fat_ctx
->
cached_fileinfo
.
file_path
,
temp_file_path
,
sizeof
(
fat_ctx
->
cached_fileinfo
.
file_path
)
)
;
vfs_fat.c:950
vfs_fat_readdir()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
cached_data::file_path
is read by 2 functions:
All items filtered out
cached_data::file_path
vfs_fat_stat()
vfs_fat_readdir()
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