Home
last modified time | relevance | path

Searched refs:writeByteArray (Results 1 – 20 of 20) sorted by relevance

/external/skia/include/core/
DSkWriteBuffer.h34 virtual void writeByteArray(const void* data, size_t size) = 0;
36 this->writeByteArray(data->data(), data->size()); in writeDataAsByteArray()
100 void writeByteArray(const void* data, size_t size) override;
/external/protobuf/java/core/src/main/java/com/google/protobuf/
DCodedOutputStream.java270 public abstract void writeByteArray(int fieldNumber, byte[] value) throws IOException; in writeByteArray() method in CodedOutputStream
274 public abstract void writeByteArray(int fieldNumber, byte[] value, int offset, int length) in writeByteArray() method in CodedOutputStream
1173 public final void writeByteArray(final int fieldNumber, final byte[] value) throws IOException { in writeByteArray() method in CodedOutputStream.ArrayEncoder
1174 writeByteArray(fieldNumber, value, 0, value.length); in writeByteArray()
1178 public final void writeByteArray( in writeByteArray() method in CodedOutputStream.ArrayEncoder
1543 public void writeByteArray(final int fieldNumber, final byte[] value) throws IOException { in writeByteArray() method in CodedOutputStream.NioEncoder
1544 writeByteArray(fieldNumber, value, 0, value.length); in writeByteArray()
1548 public void writeByteArray( in writeByteArray() method in CodedOutputStream.NioEncoder
2023 public void writeByteArray(final int fieldNumber, final byte[] value) throws IOException { in writeByteArray() method in CodedOutputStream.ByteOutputEncoder
2024 writeByteArray(fieldNumber, value, 0, value.length); in writeByteArray()
[all …]
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowSignature.java52 dest.writeByteArray(mSignature); in writeToParcel()
DShadowParcel.java375 public void writeByteArray(byte[] val) { in writeByteArray() method in ShadowParcel
657 writeByteArray((byte[]) v); in writeValue()
/external/skia/tools/debugger/
DSkJsonWriteBuffer.h26 void writeByteArray(const void* data, size_t size) override;
DSkJsonWriteBuffer.cpp18 void SkJsonWriteBuffer::writeByteArray(const void* data, size_t size) { in writeByteArray() function in SkJsonWriteBuffer
/external/protobuf/javanano/src/device/main/java/com/google/protobuf/nano/android/
DParcelableMessageNanoCreator.java95 out.writeByteArray(MessageNano.toByteArray(message)); in writeToParcel()
/external/skia/src/core/
DSkTextBlob.cpp735 buffer.writeByteArray(it.glyphs(), it.glyphCount() * sizeof(uint16_t)); in flatten()
736 buffer.writeByteArray(it.pos(), in flatten()
739 buffer.writeByteArray(it.clusters(), sizeof(uint32_t) * it.glyphCount()); in flatten()
740 buffer.writeByteArray(it.text(), it.textSize()); in flatten()
DSkImageInfo.cpp116 buffer.writeByteArray(nullptr, 0); in flatten()
DSkPicture.cpp212 buffer.writeByteArray(&info.fMagic, sizeof(info.fMagic)); in flatten()
DSkWriteBuffer.cpp37 void SkBinaryWriteBuffer::writeByteArray(const void* data, size_t size) { in writeByteArray() function in SkBinaryWriteBuffer
DSkPictureData.cpp337 buffer.writeByteArray(fOpData->bytes(), fOpData->size()); in flatten()
DSkBitmap.cpp645 buffer->writeByteArray(storage.get(), size); in write_raw_pixels()
/external/skia/src/effects/
DSkTableMaskFilter.cpp74 wb.writeByteArray(fTable, 256); in flatten()
DSkEmbossMaskFilter.cpp123 buffer.writeByteArray(&tmpLight, sizeof(tmpLight)); in flatten()
DSkOverdrawColorFilter.cpp48 buffer.writeByteArray(fColors, kNumColors * sizeof(SkPMColor)); in flatten()
DSkTableColorFilter.cpp189 buffer.writeByteArray(storage, size); in flatten()
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
DParcelTest.java371 parcel.writeByteArray(bytes); in testReadWriteByteArray()
410 parcel.writeByteArray(bytes); in testWriteCreateByteArray()
/external/protobuf/javamicro/src/main/java/com/google/protobuf/micro/
DCodedOutputStreamMicro.java205 public void writeByteArray(final int fieldNumber, final byte[] value) in writeByteArray() method in CodedOutputStreamMicro
/external/skia/tests/
DSerializationTest.cpp92 writer.writeByteArray(data, arraySize); in Write()