Home
last modified time | relevance | path

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

/system/core/trusty/storage/tests/
Dmain.cpp130 uint32_t data_buf[chunk_len/sizeof(uint32_t)]; in WriteZeroChunk() local
135 memset(data_buf, 0, chunk_len); in WriteZeroChunk()
137 rc = storage_write(handle, off, data_buf, sizeof(data_buf), in WriteZeroChunk()
146 uint32_t data_buf[chunk_len/sizeof(uint32_t)]; in WritePatternChunk() local
151 fill_pattern32(data_buf, chunk_len, off); in WritePatternChunk()
153 rc = storage_write(handle, off, data_buf, sizeof(data_buf), in WritePatternChunk()
180 uint32_t data_buf[chunk_len/sizeof(uint32_t)]; in ReadChunk() local
181 uint8_t *data_ptr = (uint8_t *)data_buf; in ReadChunk()
187 rc = storage_read(handle, off, data_buf, chunk_len); in ReadChunk()
210 uint32_t data_buf[chunk_len/sizeof(uint32_t)]; in ReadPattern() local
[all …]