HomeSort by relevance Sort by last modified time
    Searched refs:InputStreamBuffer (Results 1 - 10 of 10) sorted by null

  /system/nvram/messages/include/nvram/messages/
io.h 31 // |InputStreamBuffer| maintains a window of the data to be read. Access to the
37 class NVRAM_EXPORT InputStreamBuffer {
39 InputStreamBuffer() = default;
40 InputStreamBuffer(const void* data, size_t size);
41 InputStreamBuffer(const void* start, const void* end);
42 virtual ~InputStreamBuffer() = default;
67 // Pointers to the buffer to read from. |InputStreamBuffer| only advances
78 // An |InputStreamBuffer| implementation that pulls its data from a delegate,
80 class NVRAM_EXPORT NestedInputStreamBuffer : public InputStreamBuffer {
85 NestedInputStreamBuffer(InputStreamBuffer* delegate, size_t size)
    [all...]
proto.hpp 66 // nvram::InputStreamBuffer stream(buffer_start, buffer_size);
470 bool Decode(Struct* object, InputStreamBuffer* stream) {
  /system/nvram/messages/
io.cpp 52 bool DecodeVarint(InputStreamBuffer* stream_buffer, uint64_t* value) {
74 InputStreamBuffer::InputStreamBuffer(const void* data, size_t size)
75 : InputStreamBuffer(data, static_cast<const uint8_t*>(data) + size) {}
77 InputStreamBuffer::InputStreamBuffer(const void* start, const void* end)
83 bool InputStreamBuffer::Done() {
87 bool InputStreamBuffer::Read(void* data, size_t size) {
105 bool InputStreamBuffer::ReadByte(uint8_t* byte) {
117 bool InputStreamBuffer::Skip(size_t size)
    [all...]
nvram_messages.cpp 194 InputStreamBuffer stream(data, size);
  /frameworks/opt/bitmap/src/com/android/bitmap/util/
Exif.java 26 * Exif and InputStreamBuffer were pulled in from frameworks/ex/photo, and should be part of a
71 final InputStreamBuffer jpeg = new InputStreamBuffer(inputStream, lookAhead, false);
187 private static int pack(final InputStreamBuffer bytes, int offset, int length,
203 private static boolean has(final InputStreamBuffer jpeg, final long byteSize, final int index) {
InputStreamBuffer.java 56 public class InputStreamBuffer {
60 private static final String TAG = InputStreamBuffer.class.getSimpleName();
97 public InputStreamBuffer(final InputStream inputStream, int bufferSize,
  /frameworks/opt/photoviewer/src/com/android/ex/photo/util/
Exif.java 66 final InputStreamBuffer jpeg = new InputStreamBuffer(inputStream, lookAhead, false);
182 private static int pack(final InputStreamBuffer bytes, int offset, int length,
198 private static boolean has(final InputStreamBuffer jpeg, final long byteSize, final int index) {
InputStreamBuffer.java 56 public class InputStreamBuffer {
60 private static final String TAG = "InputStreamBuffer";
97 public InputStreamBuffer(final InputStream inputStream, int bufferSize,
  /system/nvram/messages/tests/
io_test.cpp 28 // A simple |InputStreamBuffer| implementation that sets up a sequence of
32 class TestInputStreamBuffer : public InputStreamBuffer {
68 void CheckRead(InputStreamBuffer* buffer, size_t size, size_t pos) {
96 InputStreamBuffer buf(nullptr, nullptr);
  /system/nvram/core/
persistence.cpp 68 InputStreamBuffer stream(blob.data(), blob.size());

Completed in 416 milliseconds