Home
last modified time | relevance | path

Searched refs:FA_WRITE (Results 1 – 4 of 4) sorted by relevance

/hal_espressif-3.6.0/components/fatfs/vfs/
Dvfs_fat.c229 res |= FA_WRITE; in fat_mode_conv()
231 res |= FA_READ | FA_WRITE; in fat_mode_conv()
324 if(!(fat_mode_conv(flags) & (FA_WRITE))) { in vfs_fat_open()
655 res = f_open(pf2, n2, FA_WRITE | FA_CREATE_NEW); in vfs_fat_link()
910 res = f_open(file, path, FA_WRITE); in vfs_fat_truncate()
/hal_espressif-3.6.0/components/fatfs/test_fatfs_host/
Dtest_fatfs.cpp53 fr_result = f_open(&file, "test.txt", FA_OPEN_ALWAYS | FA_READ | FA_WRITE);
/hal_espressif-3.6.0/components/fatfs/src/
Dff.c3566 …mode &= FF_FS_READONLY ? FA_READ : FA_READ | FA_WRITE | FA_CREATE_ALWAYS | FA_CREATE_NEW | FA_OPEN…
3645 if ((mode & FA_WRITE) && (dj.obj.attr & AM_RDO)) { /* Write mode open against R/O file */
3854 if (!(fp->flag & FA_WRITE)) LEAVE_FF(fs, FR_DENIED); /* Check access mode */
4333 …if (ofs > fp->obj.objsize && (FF_FS_READONLY || !(fp->flag & FA_WRITE))) { /* In read-only mode, c…
4361 if (fp->flag & FA_WRITE) { /* Check if in write mode or not */
4734 if (!(fp->flag & FA_WRITE)) LEAVE_FF(fs, FR_DENIED); /* Check access mode */
4788 res = find_volume(&path, &fs, FA_WRITE);
4879 res = find_volume(&path, &fs, FA_WRITE); /* Get logical drive */
4965 res = find_volume(&path_old, &fs, FA_WRITE); /* Get logical drive of the old object */
5073 res = find_volume(&path, &fs, FA_WRITE); /* Get logical drive */
[all …]
Dff.h370 #define FA_WRITE 0x02 macro