Searched refs:ByteBuffer (Results 126 - 150 of 310) sorted by relevance

1234567891011>>

/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/fragment/
H A DTrackExtendsBox.java23 import java.nio.ByteBuffer;
52 protected void getContent(ByteBuffer byteBuffer) {
62 public void _parseDetails(ByteBuffer content) {
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/sampleentry/
H A DSubtitleSampleEntry.java6 import java.nio.ByteBuffer;
36 public void _parseDetails(ByteBuffer content) {
45 protected void getContent(ByteBuffer byteBuffer) {
H A DSampleEntry.java29 import java.nio.ByteBuffer;
109 public void parse(ReadableByteChannel readableByteChannel, ByteBuffer header, long contentSize, BoxParser boxParser) throws IOException {
116 public void _parseReservedAndDataReferenceIndex(ByteBuffer content) {
121 public void _parseChildBoxes(ByteBuffer content) {
133 public void _writeReservedAndDataReferenceIndex(ByteBuffer bb) {
138 public void _writeChildBoxes(ByteBuffer bb) {
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/vodafone/
H A DAlbumArtistBox.java25 import java.nio.ByteBuffer;
62 public void _parseDetails(ByteBuffer content) {
68 protected void getContent(ByteBuffer byteBuffer) {
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/
H A DMLPSpecificBox.java7 import java.nio.ByteBuffer;
27 public void _parseDetails(ByteBuffer content) {
36 protected void getContent(ByteBuffer byteBuffer) {
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/basemediaformat/
H A DAvcNalUnitStorageBox.java23 import java.nio.ByteBuffer;
80 public void _parseDetails(ByteBuffer content) {
85 protected void getContent(ByteBuffer byteBuffer) {
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/cenc/
H A DProtectionSystemSpecificHeaderBox.java12 import java.nio.ByteBuffer;
71 protected void getContent(ByteBuffer byteBuffer) {
80 protected void _parseDetails(ByteBuffer content) {
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
H A DBitReaderBuffer.java3 import java.nio.ByteBuffer;
7 private ByteBuffer buffer;
11 public BitReaderBuffer(ByteBuffer buffer) {
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/piff/
H A DTfxdBox.java7 import java.nio.ByteBuffer;
54 public void _parseDetails(ByteBuffer content) {
67 protected void getContent(ByteBuffer byteBuffer) {
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/ultraviolet/
H A DAssetInformationBox.java23 import java.nio.ByteBuffer;
43 protected void getContent(ByteBuffer byteBuffer) {
52 public void _parseDetails(ByteBuffer content) {
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
H A DMessageDigestSpiTest.java24 import java.nio.ByteBuffer;
89 * java.security.MessageDigestSpi#engineUpdate(ByteBuffer)
95 ByteBuffer buf = ByteBuffer.wrap(b, 0, b.length);
102 buf = ByteBuffer.wrap(b, 0, b.length);
157 protected void engineUpdate(ByteBuffer input) {
/external/apache-harmony/x-net/src/test/java/javax/net/ssl/
H A DMySSLContextSpi.java24 import java.nio.ByteBuffer;
223 public SSLEngineResult unwrap(ByteBuffer src, ByteBuffer[] dsts,
229 public SSLEngineResult wrap(ByteBuffer[] srcs, int offset,
230 int length, ByteBuffer dst) throws SSLException {
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
H A DAmf0Track.java24 import java.nio.ByteBuffer;
52 public List<ByteBuffer> getSamples() {
53 LinkedList<ByteBuffer> samples = new LinkedList<ByteBuffer>();
55 samples.add(ByteBuffer.wrap(bytes));
H A DAACTrackImpl.java29 import java.nio.ByteBuffer;
77 private List<ByteBuffer> samples;
100 samples = new LinkedList<ByteBuffer>();
164 ByteBuffer data = descriptor.serialize();
203 public List<ByteBuffer> getSamples() {
222 ByteBuffer bb = ByteBuffer.wrap(data);
253 ByteBuffer bb = ByteBuffer.wrap(header);
275 samples.add(ByteBuffer
[all...]
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/prefixmapper/
H A DFlyweightMapStorage.java22 import java.nio.ByteBuffer;
47 private ByteBuffer phoneNumberPrefixes;
48 private ByteBuffer descriptionIndexes;
74 phoneNumberPrefixes = ByteBuffer.allocate(numOfEntries * prefixSizeInBytes);
95 descriptionIndexes = ByteBuffer.allocate(numOfEntries * descIndexSizeInBytes);
143 phoneNumberPrefixes = ByteBuffer.allocate(numOfEntries * prefixSizeInBytes);
146 descriptionIndexes = ByteBuffer.allocate(numOfEntries * descIndexSizeInBytes);
200 ByteBuffer outputBuffer, int index) throws IOException {
220 ByteBuffer inputBuffer, int index) throws IOException {
239 private static int readWordFromBuffer(ByteBuffer buffe
[all...]
/external/chromium_org/media/base/android/java/src/org/chromium/media/
H A DVideoCaptureTango.java11 import java.nio.ByteBuffer;
24 private ByteBuffer mFrameBuffer = null;
92 mFrameBuffer = ByteBuffer.allocateDirect(
143 ByteBuffer.wrap(data, startY, sizeY).get(mFrameBuffer.array(), 0, sizeY);
159 ByteBuffer.wrap(data, startY, sizeY)
161 ByteBuffer.wrap(data, startU, sizeU)
163 ByteBuffer.wrap(data, startV, sizeV)
H A DWebAudioMediaCodecBridge.java19 import java.nio.ByteBuffer;
107 ByteBuffer[] codecInputBuffers = codec.getInputBuffers();
108 ByteBuffer[] codecOutputBuffers = codec.getOutputBuffers();
124 ByteBuffer dstBuf = codecInputBuffers[inputBufIndex];
152 ByteBuffer buf = codecOutputBuffers[outputBufIndex];
202 long nativeWebAudioMediaCodecBridge, ByteBuffer buf, int size,
/external/guava/guava/src/com/google/common/hash/
H A DAbstractStreamingHashFunction.java21 import java.nio.ByteBuffer;
71 private final ByteBuffer buffer;
83 * @param chunkSize the number of bytes available per {@link #process(ByteBuffer)} invocation;
95 * @param chunkSize the number of bytes available per {@link #process(ByteBuffer)} invocation;
104 this.buffer = ByteBuffer
114 protected abstract void process(ByteBuffer bb);
118 * fill a whole chunk. The passed {@code ByteBuffer} is guaranteed to be
122 * {@link #process(ByteBuffer)}.
124 protected void processRemaining(ByteBuffer bb) {
142 return putBytes(ByteBuffer
[all...]
/external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
H A DSSLEngineImplTest.java20 import java.nio.ByteBuffer;
379 engine.wrap(ByteBuffer.allocate(0), ByteBuffer.allocate(
454 SSLEngineResult result = engine.wrap(ByteBuffer.allocate(0),
455 ByteBuffer.allocate(20000));
476 SSLEngineResult result = engine.wrap(ByteBuffer.allocate(0),
477 ByteBuffer.allocate(20000));
505 ByteBuffer buffer = ByteBuffer.allocate(packetBufferSize);
506 ByteBuffer app_data_buffe
[all...]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/builder/
H A DDefaultMp4Builder.java48 import java.nio.ByteBuffer;
75 HashMap<Track, List<ByteBuffer>> track2Sample = new HashMap<Track, List<ByteBuffer>>();
90 List<ByteBuffer> samples = track.getSamples();
135 protected List<ByteBuffer> putSamples(Track track, List<ByteBuffer> samples) {
377 List<ByteBuffer> samples = new ArrayList<ByteBuffer>();
390 public void parse(ReadableByteChannel readableByteChannel, ByteBuffer header, long contentSize, BoxParser boxParser) throws IOException {
412 ByteBuffer
[all...]
/external/chromium_org/components/devtools_bridge/android/java/src/org/chromium/components/devtools_bridge/
H A DSocketTunnelBase.java11 import java.nio.ByteBuffer;
166 static ByteBuffer buildControlPacket(int connectionId, byte opCode) {
167 ByteBuffer packet = ByteBuffer.allocateDirect(CONTROL_PACKET_SIZE);
174 static ByteBuffer buildDataPacket(int connectionId, byte[] buffer, int count) {
175 ByteBuffer packet = ByteBuffer.allocateDirect(count + 1);
181 protected void sendToDataChannel(ByteBuffer packet) {
199 protected void decodePacket(ByteBuffer packet) throws ProtocolError {
242 public void onMessage(ByteBuffer messag
[all...]
/external/chromium_org/components/devtools_bridge/test/android/javatests/src/org/chromium/components/devtools_bridge/
H A DLocalTunnelBridge.java10 import java.nio.ByteBuffer;
42 protected void sendToDataChannel(ByteBuffer packet) {
115 protected void sendToDataChannel(ByteBuffer packet) {
152 private String stringifyClientPacket(ByteBuffer packet) {
166 private String stringifyServerPacket(ByteBuffer packet) {
180 private PacketDecoder decode(ByteBuffer packet) {
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Dsctputils.cc57 rtc::ByteBuffer buffer(payload.data(), payload.length());
129 rtc::ByteBuffer buffer(payload.data(), payload.length());
174 rtc::ByteBuffer buffer(
176 rtc::ByteBuffer::ORDER_NETWORK);
190 rtc::ByteBuffer buffer(rtc::ByteBuffer::ORDER_NETWORK);
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/
H A DAbstractContainerBox.java25 import java.nio.ByteBuffer;
104 public void parse(ReadableByteChannel readableByteChannel, ByteBuffer header, long contentSize, BoxParser boxParser) throws IOException {
110 public void _parseDetails(ByteBuffer content) {
140 protected void getContent(ByteBuffer byteBuffer) {
144 protected final void parseChildBoxes(ByteBuffer content) {
159 protected final void writeChildBoxes(ByteBuffer bb) {
H A DFullContainerBox.java25 import java.nio.ByteBuffer;
94 public void parse(ReadableByteChannel readableByteChannel, ByteBuffer header, long contentSize, BoxParser boxParser) throws IOException {
101 public void _parseDetails(ByteBuffer content) {
106 protected final void parseChildBoxes(ByteBuffer content) {
135 protected void getContent(ByteBuffer byteBuffer) {
140 protected final void writeChildBoxes(ByteBuffer bb) {

Completed in 547 milliseconds

1234567891011>>