ESP-IDF
vfs_spiffs_dir_t
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading...
Files
loading (1/5)...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
vfs_spiffs_dir_t
vfs_spiffs_dir_t struct
SPIFFS DIR structure
Syntax
Show:
Summary
Declaration
from
esp_spiffs.c:45
typedef
struct
{
DIR
dir
;
spiffs_DIR
d
;
struct
dirent
e
;
long
offset
;
char
path
[
SPIFFS_OBJ_NAME_LEN
]
;
}
vfs_spiffs_dir_t
;
Fields
Field
Declared as
Description
vfs_spiffs_dir_t::dir
DIR
VFS DIR struct.
vfs_spiffs_dir_t::d
spiffs_DIR
SPIFFS DIR struct.
vfs_spiffs_dir_t::e
struct
dirent
Last open dirent.
vfs_spiffs_dir_t::offset
long
Offset of the current dirent.
vfs_spiffs_dir_t::path
char
[
SPIFFS_OBJ_NAME_LEN
]
Requested directory name.
Examples
References
from
examples
Code
Location
Referrer
typedef
struct
{
esp_spiffs.c:45
}
vfs_spiffs_dir_t
;
esp_spiffs.c:51
vfs_spiffs_dir_t
vfs_spiffs_dir_t
*
dir
=
calloc
(
1
,
sizeof
(
vfs_spiffs_dir_t
)
)
;
esp_spiffs.c:693
vfs_spiffs_opendir()
free
(
dir
)
;
esp_spiffs.c:699
vfs_spiffs_opendir()
vfs_spiffs_dir_t
*
dir
=
(
vfs_spiffs_dir_t
*
)
pdir
;
esp_spiffs.c:713
vfs_spiffs_closedir()
free
(
dir
)
;
esp_spiffs.c:715
vfs_spiffs_closedir()
vfs_spiffs_dir_t
*
dir
=
(
vfs_spiffs_dir_t
*
)
pdir
;
esp_spiffs.c:727
vfs_spiffs_readdir()
vfs_spiffs_dir_t
*
dir
=
(
vfs_spiffs_dir_t
*
)
pdir
;
esp_spiffs.c:742
vfs_spiffs_readdir_r()
vfs_spiffs_dir_t
*
dir
=
(
vfs_spiffs_dir_t
*
)
pdir
;
esp_spiffs.c:777
vfs_spiffs_telldir()
vfs_spiffs_dir_t
*
dir
=
(
vfs_spiffs_dir_t
*
)
pdir
;
esp_spiffs.c:785
vfs_spiffs_seekdir()
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
vfs_spiffs_dir_t
is allocated by 1 symbol and is freed by 2 symbols:
vfs_spiffs_opendir()
All items filtered out
vfs_spiffs_dir_t
vfs_spiffs_opendir()
vfs_spiffs_closedir()
All items filtered out