Home
last modified time | relevance | path

Searched refs:WritePageWithLayout (Results 1 – 5 of 5) sorted by relevance

/nrf52832-nimble/rt-thread/components/dfs/filesystems/uffs/src/uffs/
H A Duffs_flash.c227 if (dev->ops->WritePage == NULL && dev->ops->WritePageWithLayout == NULL) { in uffs_FlashInterfaceInit()
275 if (dev->ops->WritePageWithLayout == NULL || dev->ops->ReadPageWithLayout == NULL) { in uffs_FlashInterfaceInit()
722 if (ops->WritePageWithLayout) { in uffs_FlashWritePageCombine()
723 ret = ops->WritePageWithLayout(dev, block, page, in uffs_FlashWritePageCombine()
821 if (ops->WritePageWithLayout) { in uffs_FlashMarkDirtyPage()
822 ret = ops->WritePageWithLayout(dev, block, page, NULL, 0, NULL, ts); in uffs_FlashMarkDirtyPage()
865 if (dev->ops->WritePageWithLayout) in uffs_FlashMarkBadBlock()
866 ret = dev->ops->WritePageWithLayout(dev, block, 0, NULL, 0, NULL, NULL); in uffs_FlashMarkBadBlock()
H A Duffs_utils.c121 if (ops->WritePageWithLayout) in _ForceFormatAndCheckBlock()
122 ret = ops->WritePageWithLayout(dev, block, i, buf->header, dev->com.pg_size, NULL, &ts); in _ForceFormatAndCheckBlock()
/nrf52832-nimble/rt-thread/components/dfs/filesystems/uffs/src/emu/
H A Duffs_fileem_wrap.c114 if (dev->ops->WritePageWithLayout) in femu_setup_wrapper_functions()
115 dev->ops->WritePageWithLayout = femu_WritePageWithLayout_wrap; in femu_setup_wrapper_functions()
275 ret = emu->ops_orig.WritePageWithLayout(dev, block, page, data, data_len, ecc, ts); in femu_WritePageWithLayout_wrap()
/nrf52832-nimble/rt-thread/components/dfs/filesystems/uffs/
H A Duffs_nandif.c165 static int WritePageWithLayout(uffs_Device *dev, in WritePageWithLayout() function
305 WritePageWithLayout,/* WirtePageWithLayout */
/nrf52832-nimble/rt-thread/components/dfs/filesystems/uffs/src/inc/uffs/
H A Duffs_flash.h223 int (*WritePageWithLayout)(uffs_Device *dev, u32 block, u32 page, member