Home
last modified time | relevance | path

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

/openthread-3.6.0/examples/platforms/utils/
Dsettings_ram.c127 uint16_t nextBlockStart; in otPlatSettingsSet() local
138 nextBlockStart = i + currentBlockLength; in otPlatSettingsSet()
140 if (nextBlockStart < sSettingsBufLength) in otPlatSettingsSet()
142 … memmove(&sSettingsBuf[i], &sSettingsBuf[nextBlockStart], sSettingsBufLength - nextBlockStart); in otPlatSettingsSet()
190 uint16_t nextBlockStart; in otPlatSettingsDelete() local
204 nextBlockStart = i + currentBlockLength; in otPlatSettingsDelete()
206 if (nextBlockStart < sSettingsBufLength) in otPlatSettingsDelete()
208 … memmove(&sSettingsBuf[i], &sSettingsBuf[nextBlockStart], sSettingsBufLength - nextBlockStart); in otPlatSettingsDelete()