HomeSort by relevance Sort by last modified time
    Searched full:bytebuffer (Results 576 - 600 of 994) sorted by null

<<21222324252627282930>>

  /development/samples/USB/MissileLauncher/src/com/android/missilelauncher/
MissileLauncherActivity.java 19 import java.nio.ByteBuffer;
217 ByteBuffer buffer = ByteBuffer.allocate(1);
  /external/chromium_org/components/cronet/android/java/src/org/chromium/net/
HttpUrlRequest.java 8 import java.nio.ByteBuffer;
112 * Returns the entire response as a ByteBuffer.
114 ByteBuffer getByteBuffer();
  /external/chromium_org/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
Connector.java 14 import java.nio.ByteBuffer;
233 ByteBuffer buffer = ByteBuffer.allocateDirect(result.getMessageSize());
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
sctputils_unittest.cc 29 #include "webrtc/base/bytebuffer.h"
44 rtc::ByteBuffer buffer(packet.data(), packet.length());
156 rtc::ByteBuffer buffer(packet.data(), packet.length());
  /external/guava/guava/src/com/google/common/hash/
MessageDigestHashFunction.java 25 import java.nio.ByteBuffer;
64 private final ByteBuffer scratch; // lazy convenience
69 this.scratch = ByteBuffer.allocate(8).order(ByteOrder.LITTLE_ENDIAN);
  /external/guava/guava-tests/test/com/google/common/hash/
HashTestUtils.java 9 import java.nio.ByteBuffer;
35 ByteBuffer bb = ByteBuffer.wrap(new byte[longs.length * 8]).order(bo);
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
IsoFile.java 25 import java.nio.ByteBuffer;
72 public void _parseDetails(ByteBuffer content) {
76 public void parse(ReadableByteChannel inFC, ByteBuffer header, long contentSize, AbstractBoxParser abstractBoxParser) throws IOException {
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/fragment/
SampleFlags.java 23 import java.nio.ByteBuffer;
48 public SampleFlags(ByteBuffer bb) {
60 public void getContent(ByteBuffer os) {
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/
Mp4TrackImpl.java 22 import java.nio.ByteBuffer;
33 private List<ByteBuffer> samples;
173 public List<ByteBuffer> getSamples() {
  /frameworks/base/core/java/android/hardware/camera2/marshal/impl/
MarshalQueryableEnum.java 23 import java.nio.ByteBuffer;
59 public void marshal(T value, ByteBuffer buffer) {
76 public T unmarshal(ByteBuffer buffer) {
  /frameworks/base/media/jni/
android_media_MediaMuxer.cpp 83 // Try to convert the incoming byteBuffer into ABuffer
235 { "nativeWriteSampleData", "(JILjava/nio/ByteBuffer;IIJI)V",
254 jclass byteBufClass = env->FindClass("java/nio/ByteBuffer");
  /frameworks/base/media/tests/MediaDump/src/com/android/mediadump/
RgbPlayerActivity.java 25 import java.nio.ByteBuffer;
79 private ByteBuffer mFlipBuf;
131 mFlipBuf = ByteBuffer.allocate(mBytesPerImage);
  /frameworks/base/tests/AccessoryDisplay/sink/src/com/android/accessorydisplay/sink/
UsbHid.java 19 import java.nio.ByteBuffer;
45 public void generateDescriptor(ByteBuffer buffer) {
100 public void generateReport(ByteBuffer buffer, Contact[] contacts, int contactCount) {
  /frameworks/base/tests/Camera2Tests/CameraToo/tests/src/com/example/android/camera2/cameratoo/
CameraTooTest.java 33 import java.nio.ByteBuffer;
150 ByteBuffer buf = ByteBuffer.allocate(25);
  /frameworks/multidex/library/test/src/android/support/multidex/
ZipUtilTest.java 32 import java.nio.ByteBuffer;
83 ByteBuffer buffer = ByteBuffer.wrap(dirData);
  /frameworks/native/opengl/tests/lighting1709/src/com/android/lightingtest/
ClearActivity.java 19 import java.nio.ByteBuffer;
109 ByteBuffer vbb = ByteBuffer.allocateDirect(v.length*4);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
PropertyResourceBundleTest.java 26 import java.nio.ByteBuffer;
75 CharBuffer cbuffer = charset.decode(ByteBuffer.wrap(content
86 cbuffer = charset.decode(ByteBuffer.wrap(content.getBytes("UTF-8")));
  /libcore/luni/src/main/java/java/nio/channels/
SocketChannel.java 23 import java.nio.ByteBuffer;
262 * @see java.nio.channels.ReadableByteChannel#read(java.nio.ByteBuffer)
264 public abstract int read(ByteBuffer target) throws IOException;
298 * @see java.nio.channels.ScatteringByteChannel#read(java.nio.ByteBuffer[],
301 public abstract long read(ByteBuffer[] targets, int offset, int length) throws IOException;
332 public synchronized final long read(ByteBuffer[] targets) throws IOException {
363 * @see java.nio.channels.WritableByteChannel#write(java.nio.ByteBuffer)
365 public abstract int write(ByteBuffer source) throws IOException;
401 * @see java.nio.channels.GatheringByteChannel#write(java.nio.ByteBuffer[],
404 public abstract long write(ByteBuffer[] sources, int offset, int length) throws IOException
    [all...]
  /libcore/luni/src/main/java/java/security/
MessageDigestSpi.java 20 import java.nio.ByteBuffer;
70 * the {@code ByteBuffer}.
72 protected void engineUpdate(ByteBuffer input) {
SecureClassLoader.java 20 import java.nio.ByteBuffer;
115 protected final Class<?> defineClass(String name, ByteBuffer b, CodeSource cs) {
116 //FIXME 1.5 - remove b.array(), call super.defineClass(,ByteBuffer,)
  /libcore/luni/src/test/java/libcore/java/io/
InterruptedStreamTest.java 29 import java.nio.ByteBuffer;
145 channel.read(ByteBuffer.allocate(BUFFER_SIZE));
184 channel.write(ByteBuffer.allocate(BUFFER_SIZE));
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
SignatureSpiTest.java 5 import java.nio.ByteBuffer;
292 protected void engineUpdate(ByteBuffer input) {
391 signature.update(ByteBuffer.wrap("Hello".getBytes()));
  /packages/apps/Nfc/src/com/android/nfc/snep/
SnepMessage.java 25 import java.nio.ByteBuffer;
79 ByteBuffer input = ByteBuffer.wrap(data);
  /packages/experimental/CameraPreviewTest/src/com/example/android/videochatcameratest/
SurfaceTextureView.java 13 import java.nio.ByteBuffer;
164 mTextureVertices = ByteBuffer.allocateDirect(TEXTURE_VERTICES.length *
167 mQuadVertices = ByteBuffer.allocateDirect(QUAD_VERTICES.length *
  /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/handlers/
MultiTouchChannel.java 27 import java.nio.ByteBuffer;
106 public void onEmulatorMessage(int msg_type, ByteBuffer msg_data) {
130 public void onEmulatorQuery(int query_id, int query_type, ByteBuffer query_data) {

Completed in 1038 milliseconds

<<21222324252627282930>>