Home
last modified time | relevance | path

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

/system/core/trusty/storage/tests/
Dmain.cpp129 uint32_t data_buf[chunk_len/sizeof(uint32_t)]; in WriteZeroChunk() local
134 memset(data_buf, 0, chunk_len); in WriteZeroChunk()
136 rc = storage_write(handle, off, data_buf, sizeof(data_buf), in WriteZeroChunk()
145 uint32_t data_buf[chunk_len/sizeof(uint32_t)]; in WritePatternChunk() local
150 fill_pattern32(data_buf, chunk_len, off); in WritePatternChunk()
152 rc = storage_write(handle, off, data_buf, sizeof(data_buf), in WritePatternChunk()
179 uint32_t data_buf[chunk_len/sizeof(uint32_t)]; in ReadChunk() local
180 uint8_t *data_ptr = (uint8_t *)data_buf; in ReadChunk()
186 rc = storage_read(handle, off, data_buf, chunk_len); in ReadChunk()
209 uint32_t data_buf[chunk_len/sizeof(uint32_t)]; in ReadPattern() local
[all …]