HomeSort by relevance Sort by last modified time
    Searched refs:ByteBuffer (Results 1 - 25 of 1641) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/flatbuffers/net/FlatBuffers/
IFlatbufferObject.cs 24 void __init(int _i, ByteBuffer _bb);
26 ByteBuffer ByteBuffer { get; }
Struct.cs 25 public ByteBuffer bb;
  /external/flatbuffers/java/com/google/flatbuffers/
Struct.java 19 import java.nio.ByteBuffer;
29 /** The underlying ByteBuffer to hold the data of the Struct. */
30 protected ByteBuffer bb;
  /frameworks/base/core/java/android/util/apk/
ByteBufferFactory.java 19 import java.nio.ByteBuffer;
22 * Provider of {@link ByteBuffer} instances.
26 /** Initiates a {@link ByteBuffer} with the given size. */
27 ByteBuffer create(int capacity);
SignatureInfo.java 19 import java.nio.ByteBuffer;
27 public final ByteBuffer signatureBlock;
39 public final ByteBuffer eocd;
41 SignatureInfo(ByteBuffer signatureBlock, long apkSigningBlockOffset, long centralDirOffset,
42 long eocdOffset, ByteBuffer eocd) {
DataDigester.java 19 import java.nio.ByteBuffer;
23 /** Consumes the {@link ByteBuffer}. */
24 void consume(ByteBuffer buffer) throws DigestException;
  /tools/apksig/src/main/java/com/android/apksig/internal/asn1/
Asn1OpaqueObject.java 19 import java.nio.ByteBuffer;
25 private final ByteBuffer mEncoded;
27 public Asn1OpaqueObject(ByteBuffer encoded) {
32 mEncoded = ByteBuffer.wrap(encoded);
35 public ByteBuffer getEncoded() {
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/samplegrouping/
GroupEntry.java 19 import java.nio.ByteBuffer;
22 public abstract void parse(ByteBuffer byteBuffer);
23 public abstract ByteBuffer get();
  /packages/apps/Camera2/src/com/android/camera/processing/memory/
ByteBufferDirectPool.java 19 import java.nio.ByteBuffer;
23 * represents the size of the bytebuffer.
25 public final class ByteBufferDirectPool extends SimpleLruResourcePool<Integer, ByteBuffer> {
31 protected ByteBuffer create(Integer bytes) {
32 return ByteBuffer.allocateDirect(bytes);
36 protected ByteBuffer recycle(Integer integer, ByteBuffer byteBuffer) {
38 byteBuffer.rewind();
39 byteBuffer.limit(byteBuffer.capacity())
    [all...]
  /external/brotli/java/org/brotli/wrapper/common/
CommonJNI.java 9 import java.nio.ByteBuffer;
15 static native boolean nativeSetDictionaryData(ByteBuffer data);
  /external/conscrypt/benchmark-base/src/main/java/org/conscrypt/
BufferType.java 18 import java.nio.ByteBuffer;
28 ByteBuffer newBuffer(int size) {
29 return ByteBuffer.allocate(size);
34 ByteBuffer newBuffer(int size) {
35 return ByteBuffer.allocateDirect(size);
39 abstract ByteBuffer newBuffer(int size);
41 ByteBuffer newApplicationBuffer(SSLEngine engine) {
45 ByteBuffer newPacketBuffer(SSLEngine engine) {
  /libcore/ojluni/src/main/java/sun/nio/
ByteBuffered.java 28 import java.nio.ByteBuffer;
31 /** This is an interface to adapt existing APIs to use {@link java.nio.ByteBuffer
37 * the underlying data structure, it can create a class of InputStream that wraps the ByteBuffer,
45 * Returns the <tt>ByteBuffer</tt> behind this object, if this particular
49 * @return The <tt>ByteBuffer</tt>, if this particular instance has one,
53 * If the ByteBuffer is no longer valid.
57 public ByteBuffer getByteBuffer() throws IOException;
  /prebuilts/jdk/jdk8/darwin-x86/sample/nio/chatserver/
DataReader.java 41 import java.nio.ByteBuffer;
45 void onData(Client client, ByteBuffer buffer, int bytes);
  /prebuilts/jdk/jdk8/linux-x86/sample/nio/chatserver/
DataReader.java 41 import java.nio.ByteBuffer;
45 void onData(Client client, ByteBuffer buffer, int bytes);
  /libcore/dalvik/src/main/java/dalvik/system/
InMemoryDexClassLoader.java 19 import java.nio.ByteBuffer;
34 public InMemoryDexClassLoader(ByteBuffer[] dexBuffers, ClassLoader parent) {
45 public InMemoryDexClassLoader(ByteBuffer dexBuffer, ClassLoader parent) {
46 this(new ByteBuffer[] { dexBuffer }, parent);
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
ItemDataBox.java 5 import java.nio.ByteBuffer;
11 ByteBuffer data = ByteBuffer.allocate(0);
19 public ByteBuffer getData() {
23 public void setData(ByteBuffer data) {
34 public void _parseDetails(ByteBuffer content) {
40 protected void getContent(ByteBuffer byteBuffer) {
41 byteBuffer.put(data);
UnknownBox.java 22 import java.nio.ByteBuffer;
29 ByteBuffer data;
41 public void _parseDetails(ByteBuffer content) {
47 protected void getContent(ByteBuffer byteBuffer) {
49 byteBuffer.put(data);
52 public ByteBuffer getData() {
56 public void setData(ByteBuffer data) {
  /tools/apksig/src/main/java/com/android/apksig/internal/apk/
SignatureInfo.java 19 import java.nio.ByteBuffer;
27 public final ByteBuffer signatureBlock;
39 public final ByteBuffer eocd;
42 ByteBuffer signatureBlock,
46 ByteBuffer eocd) {
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
ColorSpace.java 18 import java.nio.ByteBuffer;
42 ByteBuffer input, ByteBuffer output, int width, int height) {
61 ByteBuffer input, ByteBuffer output, int width, int height) {
80 ByteBuffer input, ByteBuffer output, int width, int height) {
99 ByteBuffer input, ByteBuffer output, int width, int height) {
105 private static void expectInputSize(ByteBuffer input, int expectedSize)
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
ASCCharsetDecoderTest.java 20 import java.nio.ByteBuffer;
45 ByteBuffer getUnmappedByteBuffer() {
48 // ByteBuffer buffer = ByteBuffer.allocate(8);
56 ByteBuffer getMalformedByteBuffer() {
58 ByteBuffer buffer = ByteBuffer.allocate(8);
68 ByteBuffer getExceptionByteArray() throws UnsupportedEncodingException {
GBCharsetDecoderTest.java 20 import java.nio.ByteBuffer;
48 ByteBuffer getUnmappedByteBuffer() throws UnsupportedEncodingException {
52 ByteBuffer getMalformedByteBuffer() throws UnsupportedEncodingException {
53 ByteBuffer buffer = ByteBuffer.allocate(20);
60 ByteBuffer getExceptionByteArray() throws UnsupportedEncodingException {
UTF16BECharsetDecoderTest.java 20 import java.nio.ByteBuffer;
48 ByteBuffer getUnmappedByteBuffer() throws UnsupportedEncodingException {
53 ByteBuffer getMalformedByteBuffer() throws UnsupportedEncodingException {
55 // ByteBuffer buffer = ByteBuffer.allocate(100);
64 ByteBuffer getExceptionByteArray() throws UnsupportedEncodingException {
68 protected ByteBuffer getByteBuffer() {
69 return ByteBuffer.wrap(new byte[] { 0, 32, 0, 98, 0, 117, 0, 102, 0,
UTF16LECharsetDecoderTest.java 20 import java.nio.ByteBuffer;
48 ByteBuffer getUnmappedByteBuffer() throws UnsupportedEncodingException {
53 ByteBuffer getMalformedByteBuffer() throws UnsupportedEncodingException {
55 // ByteBuffer buffer = ByteBuffer.allocate(100);
64 ByteBuffer getExceptionByteArray() throws UnsupportedEncodingException {
68 protected ByteBuffer getByteBuffer() {
69 return ByteBuffer.wrap(new byte[] { 32, 0, 98, 0, 117, 0, 102, 0, 102,
UTFCharsetDecoderTest.java 20 import java.nio.ByteBuffer;
48 ByteBuffer getUnmappedByteBuffer() throws UnsupportedEncodingException {
52 ByteBuffer getMalformedByteBuffer() throws UnsupportedEncodingException {
53 ByteBuffer buffer = ByteBuffer.allocate(getByteBuffer().remaining() + 1);
60 ByteBuffer getExceptionByteArray() throws UnsupportedEncodingException {
68 protected ByteBuffer getByteBuffer() {
69 return ByteBuffer.wrap(new byte[] { 32, 98, 117, 102, 102, 101, 114,
  /libcore/ojluni/src/main/java/java/nio/channels/
ReadableByteChannel.java 29 import java.nio.ByteBuffer;
106 public int read(ByteBuffer dst) throws IOException;

Completed in 411 milliseconds

1 2 3 4 5 6 7 8 91011>>