FatFS
FR_NO_FILE
is only used within FatFS.
Symbol previews are coming soon...
Symbols
loading (3/5)...
Files
loading (3/5)...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
FatFS
FR_NO_FILE
FR_NO_FILE value
Syntax
Show:
Summary
Declaration
from
ff.h:287
FR_NO_FILE
;
Examples
References
from
examples
Code
Location
Referrer
FR_NO_FILE
,
/* (4) Could not find the file */
ff.h:287
if
(
dp
->
sect
==
0
)
return
FR_NO_FILE
;
/* Report EOT if it has been disabled */
ff.c:1761
dir_next()
dp
->
sect
=
0
;
return
FR_NO_FILE
;
ff.c:1768
dir_next()
dp
->
sect
=
0
;
return
FR_NO_FILE
;
ff.c:1779
dir_next()
if
(
res
==
FR_NO_FILE
)
res
=
FR_DENIED
;
/* No directory entry to allocate */
ff.c:1840
dir_alloc()
FRESULT
res
=
FR_NO_FILE
;
ff.c:2316
dir_read()
res
=
FR_NO_FILE
;
break
;
/* Reached to end of the directory */
ff.c:2328
dir_read()
if
(
c
==
0
)
{
res
=
FR_NO_FILE
;
break
;
}
/* Reached to end of table */
ff.c:2430
dir_find()
if
(
res
!=
FR_NO_FILE
)
return
res
;
/* Abort if the result is other than 'not collided' */
ff.c:2525
dir_register()
if
(
res
==
FR_NO_FILE
)
res
=
FR_INT_ERR
;
ff.c:2599
dir_remove()
if
(
res
==
FR_NO_FILE
)
{
/* Object is not found */
ff.c:3103
follow_path()
if
(
res
==
FR_NO_FILE
)
{
/* There is no file to open, create a new entry */
ff.c:3770
f_open()
res
=
FR_NO_FILE
;
ff.c:3829
f_open()
if
(
res
==
FR_NO_FILE
)
res
=
FR_NO_PATH
;
ff.c:4690
f_opendir()
if
(
res
==
FR_NO_FILE
)
res
=
FR_OK
;
/* Ignore end of directory */
ff.c:4751
f_readdir()
if
(
res
==
FR_NO_FILE
)
res
=
FR_OK
;
/* Ignore end of directory now */
ff.c:4755
f_readdir()
if
(
res
==
FR_NO_FILE
)
res
=
FR_OK
;
/* Empty? */
ff.c:5067
f_unlink()
if
(
FF_FS_RPATH
&&
res
==
FR_NO_FILE
&&
(
dj
.
fn
[
NSFLAG
]
&
NS_DOT
)
)
{
/* Invalid name? */
ff.c:5115
f_mkdir()
if
(
res
==
FR_NO_FILE
)
{
/* It is clear to create a new directory */
ff.c:5118
f_mkdir()
res
=
(
djn
.
obj
.
sclust
==
djo
.
obj
.
sclust
&&
djn
.
dptr
==
djo
.
dptr
)
?
FR_NO_FILE
:
FR_EXIST
;
ff.c:5238
f_rename()
if
(
res
==
FR_NO_FILE
)
{
/* It is a valid path and no name collision */
ff.c:5240
f_rename()
case
FR_NO_FILE
:
return
ENOENT
;
vfs_fat.c:324
fresult_to_errno()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
FR_NO_FILE
is read by 14 functions:
All items filtered out
FR_NO_FILE
dir_next()
dir_alloc()
dir_read()
dir_find()
dir_register()
dir_remove()
follow_path()
f_open()
f_opendir()
f_readdir()
f_unlink()
f_mkdir()
f_rename()
fresult_to_errno()
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