HomeSort by relevance Sort by last modified time
    Searched full:bytebuffer (Results 301 - 325 of 964) sorted by null

<<11121314151617181920>>

  /libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/
MySSLContextSpi.java 20 import java.nio.ByteBuffer;
146 public SSLEngineResult unwrap(ByteBuffer src, ByteBuffer[] dsts,
150 public SSLEngineResult wrap(ByteBuffer[] srcs, int offset,
151 int length, ByteBuffer dst) throws SSLException {
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
ClusterChainDirectory.java 23 import java.nio.ByteBuffer;
87 protected final void read(ByteBuffer data) throws IOException {
92 protected final void write(ByteBuffer data) throws IOException {
100 final ByteBuffer fill = ByteBuffer.allocate(rest);
  /libcore/luni/src/test/java/libcore/java/nio/channels/
FileIOInterruptTest.java 26 import java.nio.ByteBuffer;
197 ByteBuffer buffer = ByteBuffer.allocateDirect(10);
202 ByteBuffer buffer2 = ByteBuffer.allocateDirect(10);
203 fileInputChannel.read(new ByteBuffer[] { buffer, buffer2});
230 ByteBuffer buffer = ByteBuffer.allocateDirect(10);
235 ByteBuffer buffer2 = ByteBuffer.allocateDirect(10)
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
AACTrackImpl.java 29 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.wrap(data))
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/decoder/
CpuVideoTrackDecoder.java 33 import java.nio.ByteBuffer;
55 private ByteBuffer mDecodedBuffer;
56 private ByteBuffer mUnrotatedBytes;
81 MediaCodec codec, ByteBuffer[] buffers, int bufferIndex, BufferInfo info) {
114 ByteBuffer outBytes = outputVideoFrame.lockBytes(Frame.MODE_WRITE);
121 mUnrotatedBytes = ByteBuffer.allocateDirect(mWidth * mHeight * 4);
137 private void copyRotate(ByteBuffer input, ByteBuffer output, int rotation) {
237 ByteBuffer input, ByteBuffer output, int colorFormat, int width, int height)
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
MessageDigest1Test.java 20 import java.nio.ByteBuffer;
109 * java.security.MessageDigest#update(ByteBuffer)
114 ByteBuffer byteBuffer = ByteBuffer.wrap(b);
116 int limit = byteBuffer.limit();
117 md.update(byteBuffer);
119 assertEquals(byteBuffer.limit(), byteBuffer.position());
120 assertEquals(limit, byteBuffer.limit())
    [all...]
  /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/lib/
Channel.java 25 import java.nio.ByteBuffer;
84 * Construct message from a ByteBuffer.
88 * position() property of the ByteBuffer.
90 public SdkControllerMessage(int type, ByteBuffer message) {
213 * of the array wrapped by the ByteBuffer.
215 public abstract void onEmulatorMessage(int msg_type, ByteBuffer msg_data);
224 * the array wrapped by the ByteBuffer.
226 public abstract void onEmulatorQuery(int query_id, int query_type, ByteBuffer query_data);
404 ByteBuffer bb = ByteBuffer.allocate(ProtocolConstants.MESSAGE_HEADER_SIZE + len)
    [all...]