Home
last modified time | relevance | path

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

/aosp12/system/nvram/messages/
H A Dio.cpp209 : OutputStreamBuffer(scratch_space_, kScratchSpaceSize) {} in CountingOutputStreamBuffer()
212 bytes_written_ += pos_ - scratch_space_; in Advance()
213 pos_ = scratch_space_; in Advance()
214 end_ = scratch_space_ + kScratchSpaceSize; in Advance()
218 uint8_t CountingOutputStreamBuffer::scratch_space_[kScratchSpaceSize]; member in nvram::CountingOutputStreamBuffer
/aosp12/system/nvram/messages/include/nvram/messages/
H A Dio.h172 return bytes_written_ + (pos_ - scratch_space_); in bytes_written()
190 static uint8_t scratch_space_[kScratchSpaceSize]; variable