Home | History | Annotate | Download | only in data

Lines Matching refs:ByteArray

25 const int32_t ByteArray::COPY_BUFFER_SIZE = 8192;
27 ByteArray::~ByteArray() {}
29 int32_t ByteArray::Length() { return filled_length_; }
30 int32_t ByteArray::Size() { return storage_length_; }
32 int32_t ByteArray::SetFilledLength(int32_t filled_length) {
37 int32_t ByteArray::Get(int32_t index) {
43 int32_t ByteArray::Get(int32_t index, ByteVector* b) {
48 int32_t ByteArray::Get(int32_t index,
60 void ByteArray::Put(int32_t index, byte_t b) {
73 int32_t ByteArray::Put(int index, ByteVector* b) {
78 int32_t ByteArray::Put(int32_t index,
97 int32_t ByteArray::CopyTo(ByteArray* array) {
101 int32_t ByteArray::CopyTo(ByteArray* array, int32_t offset, int32_t length) {
105 int32_t ByteArray::CopyTo(int32_t dst_offset, ByteArray* array,
128 int32_t ByteArray::CopyTo(OutputStream* os) {
132 int32_t ByteArray::CopyTo(OutputStream* os, int32_t offset, int32_t length) {
145 bool ByteArray::CopyFrom(InputStream* is, int32_t length) {
165 bool ByteArray::CopyFrom(InputStream* is) {
183 ByteArray::ByteArray(int32_t filled_length,
189 ByteArray::ByteArray(int32_t filled_length, int32_t storage_length) {
193 void ByteArray::Init(int32_t filled_length,