Lines Matching refs:currentBlockLength
126 uint16_t currentBlockLength; in otPlatSettingsSet() local
134 currentBlockLength = sizeof(struct settingsBlock) + currentBlock->length; in otPlatSettingsSet()
138 nextBlockStart = i + currentBlockLength; in otPlatSettingsSet()
145 assert(sSettingsBufLength >= currentBlockLength); in otPlatSettingsSet()
146 sSettingsBufLength -= currentBlockLength; in otPlatSettingsSet()
150 i += currentBlockLength; in otPlatSettingsSet()
191 uint16_t currentBlockLength; in otPlatSettingsDelete() local
198 currentBlockLength = sizeof(struct settingsBlock) + currentBlock->length; in otPlatSettingsDelete()
204 nextBlockStart = i + currentBlockLength; in otPlatSettingsDelete()
211 assert(sSettingsBufLength >= currentBlockLength); in otPlatSettingsDelete()
212 sSettingsBufLength -= currentBlockLength; in otPlatSettingsDelete()
223 i += currentBlockLength; in otPlatSettingsDelete()