Lines Matching refs:lengthInBytes
52 …status_t (*eraseCommand)(flash_config_t *config, uint32_t start, uint32_t lengthInBytes, uint32_t …
53 …_t (*programCommand)(flash_config_t *config, uint32_t start, uint8_t *src, uint32_t lengthInBytes);
56 uint32_t lengthInBytes,
60 …(*flashReadCommand)(flash_config_t *config, uint32_t start, uint8_t *dest, uint32_t lengthInBytes);
95 …status_t (*flash_erase)(flash_config_t *config, uint32_t start, uint32_t lengthInBytes, uint32_t k…
96 …s_t (*flash_program)(flash_config_t *config, uint32_t start, uint8_t *src, uint32_t lengthInBytes);
97 status_t (*flash_verify_erase)(flash_config_t *config, uint32_t start, uint32_t lengthInBytes);
100 uint32_t lengthInBytes,
126 …status_t (*flash_erase)(flash_config_t *config, uint32_t start, uint32_t lengthInBytes, uint32_t k…
127 …s_t (*flash_program)(flash_config_t *config, uint32_t start, uint8_t *src, uint32_t lengthInBytes);
128 status_t (*flash_verify_erase)(flash_config_t *config, uint32_t start, uint32_t lengthInBytes);
131 uint32_t lengthInBytes,
265 status_t FLASH_Erase(flash_config_t *config, uint32_t start, uint32_t lengthInBytes, uint32_t key) in FLASH_Erase() argument
271 return runCmdFuncOption.eraseCommand(config, start, lengthInBytes, key); in FLASH_Erase()
275 return VERSION1_FLASH_API_TREE->flash_erase(config, start, lengthInBytes, key); in FLASH_Erase()
280 status_t FLASH_Program(flash_config_t *config, uint32_t start, uint8_t *src, uint32_t lengthInBytes) in FLASH_Program() argument
286 return runCmdFuncOption.programCommand(config, start, src, lengthInBytes); in FLASH_Program()
291 return VERSION1_FLASH_API_TREE->flash_program(config, start, src, lengthInBytes); in FLASH_Program()
296 status_t FLASH_Read(flash_config_t *config, uint32_t start, uint8_t *dest, uint32_t lengthInBytes) in FLASH_Read() argument
303 return runCmdFuncOption.flashReadCommand(config, start, dest, lengthInBytes); in FLASH_Read()
317 return runCmdFuncOption.flashReadCommand(config, start, dest, lengthInBytes); in FLASH_Read()
322 status_t FLASH_VerifyErase(flash_config_t *config, uint32_t start, uint32_t lengthInBytes) in FLASH_VerifyErase() argument
325 return VERSION1_FLASH_API_TREE->flash_verify_erase(config, start, lengthInBytes); in FLASH_VerifyErase()
337 uint32_t lengthInBytes, in FLASH_VerifyProgram() argument
346 …return runCmdFuncOption.verifyProgramCommand(config, start, lengthInBytes, expectedData, failedAdd… in FLASH_VerifyProgram()
352 …return VERSION1_FLASH_API_TREE->flash_verify_program(config, start, lengthInBytes, expectedData, f… in FLASH_VerifyProgram()