Searched refs:ByteBuffer (Results 226 - 250 of 310) sorted by relevance

1234567891011>>

/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/sampleentry/
H A DVisualSampleEntry.java25 import java.nio.ByteBuffer;
135 public void _parseDetails(ByteBuffer content) {
182 protected void getContent(ByteBuffer byteBuffer) {
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/
H A DDTSSpecificBox.java9 import java.nio.ByteBuffer;
47 public void _parseDetails(ByteBuffer content) {
69 protected void getContent(ByteBuffer byteBuffer) {
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/apple/
H A DQuicktimeTextSampleEntry.java22 import java.nio.ByteBuffer;
57 public void _parseDetails(ByteBuffer content) {
212 protected void getContent(ByteBuffer byteBuffer) {
/external/chromium_org/components/cronet/android/java/src/org/chromium/net/
H A DHttpUrlConnectionUrlRequest.java19 import java.nio.ByteBuffer;
324 ByteBuffer byteBuffer = ByteBuffer.wrap(bytes);
392 mSink.write(ByteBuffer.wrap(buffer, start, count));
398 mSink.write(ByteBuffer.wrap(buffer, start, count));
458 * Returns the response as a ByteBuffer.
461 public ByteBuffer getByteBuffer() {
H A DChromiumUrlRequest.java17 import java.nio.ByteBuffer;
185 public ByteBuffer getByteBuffer() {
251 * {@link #appendChunk(ByteBuffer, boolean)} after {@link #start()}.
275 public void appendChunk(ByteBuffer chunk, boolean isLastChunk)
545 * @param byteBuffer The ByteBuffer to append. Must be a direct buffer, and
550 private void onBytesRead(ByteBuffer buffer) {
644 private int readFromUploadChannel(ByteBuffer dest) {
680 ByteBuffer chunk, int chunkSize, boolean isLastChunk);
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Drtpdump.cc56 void RtpDumpFileHeader::WriteToByteBuffer(rtc::ByteBuffer* buf) {
133 rtc::ByteBuffer buf(header, sizeof(header));
177 rtc::ByteBuffer buf(header, sizeof(header));
310 rtc::ByteBuffer buffer;
346 rtc::ByteBuffer buf;
373 rtc::ByteBuffer buf;
H A Dtestutils.cc50 uint32 in_ssrc, rtc::ByteBuffer *buf) const {
61 bool RawRtpPacket::ReadFromByteBuffer(rtc::ByteBuffer* buf) {
87 void RawRtcpPacket::WriteToByteBuffer(rtc::ByteBuffer *buf) const {
96 bool RawRtcpPacket::ReadFromByteBuffer(rtc::ByteBuffer* buf) {
144 rtc::ByteBuffer buf;
178 rtc::ByteBuffer buf(reinterpret_cast<const char*>(&packet.data[0]),
208 rtc::ByteBuffer buf;
/external/replicaisland/src/com/replica/replicaisland/
H A DGrid.java20 import java.nio.ByteBuffer;
82 mFixedVertexBuffer = ByteBuffer.allocateDirect(FIXED_SIZE * size * 3)
84 mFixedTexCoordBuffer = ByteBuffer.allocateDirect(FIXED_SIZE * size * 2)
93 mFloatVertexBuffer = ByteBuffer.allocateDirect(FLOAT_SIZE * size * 3)
95 mFloatTexCoordBuffer = ByteBuffer.allocateDirect(FLOAT_SIZE * size * 2)
110 mIndexBuffer = ByteBuffer.allocateDirect(CHAR_SIZE * indexCount)
/external/chromium_org/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
H A DExecutorFactory.java16 import java.nio.ByteBuffer;
31 private static final ByteBuffer NOTIFY_BUFFER = null;
H A DMessageHeader.java9 import java.nio.ByteBuffer;
211 void setRequestId(ByteBuffer buffer, long requestId) {
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dstunserver_unittest.cc59 rtc::ByteBuffer buf;
70 rtc::ByteBuffer buf(packet->buf, packet->size);
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
H A DDivideTimeScaleTrack.java22 import java.nio.ByteBuffer;
85 public List<ByteBuffer> getSamples() {
H A DMultiplyTimeScaleTrack.java23 import java.nio.ByteBuffer;
91 public List<ByteBuffer> getSamples() {
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
H A DInitialObjectDescriptor.java23 import java.nio.ByteBuffer;
74 public void parseDetail(ByteBuffer bb) throws IOException {
H A DObjectDescriptorFactory.java23 import java.nio.ByteBuffer;
158 public static BaseDescriptor createFrom(int objectTypeIndication, ByteBuffer bb) throws IOException {
/external/smack/src/org/xbill/DNS/
H A DUDPClient.java114 channel.write(ByteBuffer.wrap(data));
130 long ret = channel.read(ByteBuffer.wrap(temp));
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/builder/
H A DFragmentedMp4Builder.java28 import java.nio.ByteBuffer;
97 List<ByteBuffer> samples1 = o1.getSamples().subList(l2i(startSample1) - 1, l2i(endSample1) - 1);
98 List<ByteBuffer> samples2 = o2.getSamples().subList(l2i(startSample2) - 1, l2i(endSample2) - 1);
100 for (ByteBuffer byteBuffer : samples1) {
104 for (ByteBuffer byteBuffer : samples2) {
187 for (ByteBuffer sample : getSamples(startSample, endSample, track, i)) {
198 List<ByteBuffer> bbs = getSamples(startSample, endSample, track, i);
199 final List<ByteBuffer> samples = ByteBufferHelper.mergeAdjacentBuffers(bbs);
200 ByteBuffer header = ByteBuffer
[all...]
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Dxmppsocket.h82 rtc::ByteBuffer buffer_;
/external/deqp/execserver/
H A DxsDefs.hpp61 typedef de::RingBuffer<deUint8> ByteBuffer; typedef in namespace:xs
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DXMPMetaParser.java132 return parseXmlFromBytebuffer(new ByteBuffer((byte[]) input), options);
162 ByteBuffer buffer = new ByteBuffer(stream);
183 private static Document parseXmlFromBytebuffer(ByteBuffer buffer, ParseOptions options)
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/h264/
H A DAvcConfigurationBox.java30 import java.nio.ByteBuffer;
145 public void _parseDetails(ByteBuffer content) {
157 public void getContent(ByteBuffer byteBuffer) {
214 public AVCDecoderConfigurationRecord(ByteBuffer content) {
265 public void getContent(ByteBuffer byteBuffer) {
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/dexbacked/
H A DBaseDexBufferTest.java38 import java.nio.ByteBuffer;
216 ByteBuffer byteBuf = ByteBuffer.allocateDirect(4).order(ByteOrder.LITTLE_ENDIAN);
250 ByteBuffer byteBuf = ByteBuffer.allocateDirect(8).order(ByteOrder.LITTLE_ENDIAN);
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/adaptivestreaming/
H A DFlatManifestWriterImpl.java45 import java.nio.ByteBuffer;
348 final ByteBuffer waveformatex = ByteBuffer.allocate(22);
355 final ByteBuffer dec3Content = ByteBuffer.allocate((int) ec3SpecificBox.getContentSize());
376 final ByteBuffer waveformatex = ByteBuffer.allocate(22);
402 final ByteBuffer dtsCodecPrivateData = ByteBuffer.allocate(8);
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/
H A DMacTest.java24 import java.nio.ByteBuffer;
302 ByteBuffer bBuf = ByteBuffer.wrap(buf, 0, 10);
604 * Test for <code>update(ByteBuffer input)</code>
620 ByteBuffer byteNull = null;
621 ByteBuffer byteBuff = ByteBuffer.allocate(0);
648 * Test for <code>update(ByteBuffer input)</code>
665 ByteBuffer byteBuf;
669 byteBuf = ByteBuffer
[all...]
/external/chromium_org/mojo/android/javatests/src/org/chromium/mojo/bindings/
H A DReadAndDispatchMessageTest.java20 import java.nio.ByteBuffer;
32 private ByteBuffer mData;

Completed in 2916 milliseconds

1234567891011>>