Home | History | Annotate | Download | only in src

Lines Matching defs:ByteArrayOutput

17 #include <img_utils/ByteArrayOutput.h>
24 ByteArrayOutput::ByteArrayOutput() {}
26 ByteArrayOutput::~ByteArrayOutput() {}
28 status_t ByteArrayOutput::open() {
32 status_t ByteArrayOutput::write(const uint8_t* buf, size_t offset, size_t count) {
34 ALOGE("%s: Failed to write to ByteArrayOutput.", __FUNCTION__);
40 status_t ByteArrayOutput::close() {
45 size_t ByteArrayOutput::getSize() const {
49 const uint8_t* ByteArrayOutput::getArray() const {