FatFS
dir_sdi()
is only used within FatFS.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Arguments
Related
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
FatFS
dir_sdi()
dir_sdi() function
Syntax
Show:
Summary
Declaration
from
ff.c:1702
static
FRESULT
dir_sdi
(
FF_DIR
*
dp
,
DWORD
ofs
)
;
Arguments
Argument
dp
ofs
Related Functions
Found 14 other functions taking a
FF_DIR
argument:
Function
follow_path()
dir_next()
f_readdir()
dir_register()
f_opendir()
f_closedir()
dir_read()
dir_alloc()
dir_find()
dir_remove()
get_fileinfo()
create_name()
f_findfirst()
f_findnext()
Examples
References
from
examples
Code
Location
Referrer
static
FRESULT
dir_sdi
(
/* FR_OK(0):succeeded, !=0:error */
ff.c:1702
res
=
dir_sdi
(
dp
,
0
)
;
ff.c:1821
dir_alloc()
res
=
dir_sdi
(
dp
,
0
)
;
/* Rewind directory object */
ff.c:2400
dir_find()
res
=
dir_sdi
(
dp
,
dp
->
dptr
-
n_ent
*
SZDIRE
)
;
ff.c:2533
dir_register()
res
=
(
dp
->
blk_ofs
==
0xFFFFFFFF
)
?
FR_OK
:
dir_sdi
(
dp
,
dp
->
blk_ofs
)
;
/* Goto top of the entry block if LFN is exist */
ff.c:2585
dir_remove()
res
=
dir_sdi
(
dp
,
0
)
;
ff.c:3094
follow_path()
res
=
dir_sdi
(
dp
,
0
)
;
/* Rewind directory */
ff.c:4676
f_opendir()
res
=
dir_sdi
(
dp
,
0
)
;
/* Rewind the directory object */
ff.c:4747
f_readdir()
res
=
dir_sdi
(
&
sdj
,
0
)
;
ff.c:5063
f_unlink()
Call Tree
from
examples
dir_sdi()
is called by 8 functions and calls 2 functions:
dir_alloc()
dir_find()
dir_register()
dir_remove()
follow_path()
f_opendir()
f_readdir()
f_unlink()
All items filtered out
dir_sdi()
clst2sect()
get_fat()
All items filtered out
Data Use
from
examples
dir_sdi()
reads 14 variables and writes 5 variables:
FF_DIR::obj
FF_DIR::sect
FRESULT::FR_OK
FRESULT::FR_DISK_ERR
FRESULT::FR_INT_ERR
FATFS::fs_type
FATFS::n_rootdir
FATFS::csize
FATFS::ssize
FATFS::n_fatent
FATFS::dirbase
FATFS::win
FFOBJID::fs
FFOBJID::sclust
All items filtered out
dir_sdi()
FF_DIR::dptr
FF_DIR::clust
FF_DIR::sect
FF_DIR::dir
FFOBJID::stat
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