Home | History | Annotate | Download | only in data

Lines Matching defs:ByteArray

30 class ByteArray : virtual public RefCount {
32 virtual ~ByteArray();
86 // @param index the index into the ByteArray
96 // Fully copies this ByteArray to another ByteArray to the extent that the
98 virtual int32_t CopyTo(ByteArray* array);
100 // Copies a segment of this ByteArray to another ByteArray.
102 // @param offset the offset in this ByteArray to start copying from
105 virtual int32_t CopyTo(ByteArray* array, int32_t offset, int32_t length);
107 // Copies this ByteArray to another ByteArray.
110 // @param srcOffset the offset in this ByteArray to start copying from
114 ByteArray* array,
118 // Copies this ByteArray to an OutputStream.
123 // Copies this ByteArray to an OutputStream.
130 // Copies from the InputStream into this ByteArray.
135 // Copies everything from the InputStream into this ByteArray.
143 ByteArray(int32_t filled_length, int32_t storage_length, bool growable);
144 ByteArray(int32_t filled_length, int32_t storage_length);
181 // Close this instance of the ByteArray.
197 typedef Ptr<ByteArray> ByteArrayPtr;