/prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/22.5.0/ |
ddmlib-22.5.0.jar | |
/prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/22.5.1/ |
ddmlib-22.5.1.jar | |
/prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/22.5.3/ |
ddmlib-22.5.3.jar | |
/prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/22.7.0/ |
ddmlib-22.7.0.jar | |
/prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/22.7.1/ |
ddmlib-22.7.1.jar | |
/prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/22.7.3/ |
ddmlib-22.7.3.jar | |
/prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/22.8.0/ |
ddmlib-22.8.0.jar | |
/prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/22.9.2/ |
ddmlib-22.9.2.jar | |
/prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/23.0.1/ |
ddmlib-23.0.1.jar | |
/prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/23.0.2/ |
ddmlib-23.0.2.jar | |
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/ |
stun.cc | 40 using talk_base::ByteBuffer; 239 talk_base::ByteBuffer buf; 300 talk_base::ByteBuffer buf; 313 bool StunMessage::Read(ByteBuffer* buf) { 376 bool StunMessage::Write(ByteBuffer* buf) const { 436 void StunAttribute::ConsumePadding(talk_base::ByteBuffer* buf) const { 443 void StunAttribute::WritePadding(talk_base::ByteBuffer* buf) const { 513 bool StunAddressAttribute::Read(ByteBuffer* buf) { 551 bool StunAddressAttribute::Write(ByteBuffer* buf) const { 621 bool StunXorAddressAttribute::Read(ByteBuffer* buf) [all...] |
stun.h | 38 #include "talk/base/bytebuffer.h" 198 bool Read(talk_base::ByteBuffer* buf); 202 bool Write(talk_base::ByteBuffer* buf) const; 239 virtual bool Read(talk_base::ByteBuffer* buf) = 0; 243 virtual bool Write(talk_base::ByteBuffer* buf) const = 0; 261 void WritePadding(talk_base::ByteBuffer* buf) const; 262 void ConsumePadding(talk_base::ByteBuffer* buf) const; 306 virtual bool Read(talk_base::ByteBuffer* buf); 307 virtual bool Write(talk_base::ByteBuffer* buf) const; 344 virtual bool Read(talk_base::ByteBuffer* buf) [all...] |
/frameworks/base/core/java/android/hardware/camera2/ |
DngCreator.java | 32 import java.nio.ByteBuffer; 167 ByteBuffer rgbBuffer = convertToRGB(pixels); 207 ByteBuffer rgbBuffer = convertToRGB(pixels); 334 * Any mark or limit set on this {@link ByteBuffer} is ignored, and will be cleared by this 340 * @param pixels an {@link java.nio.ByteBuffer} of pixel data to write. 348 public void writeByteBuffer(OutputStream dngOutput, Size size, ByteBuffer pixels, long offset) 401 ByteBuffer buf = planes[0].getBuffer(); 449 private void writeByteBuffer(int width, int height, ByteBuffer pixels, OutputStream dngOutput, 504 * Generate a direct RGB {@link ByteBuffer} from a YUV420_888 {@link Image}. 506 private static ByteBuffer convertToRGB(Image yuvImage) [all...] |
/cts/suite/audio_quality/client/src/com/android/cts/audiotest/ |
AudioProtocol.java | 36 import java.nio.ByteBuffer; 62 private ByteBuffer mHeaderBuffer = ByteBuffer.allocate(PROTOCOL_HEADER_SIZE); 63 private ByteBuffer mDataBuffer = ByteBuffer.allocate(MAX_NON_DATA_PAYLOAD_SIZE); 64 private ByteBuffer mReplyBuffer = ByteBuffer.allocate(PROTOCOL_SIMPLE_REPLY_SIZE); 82 private HashMap<Integer, ByteBuffer> mDataMap = new HashMap<Integer, ByteBuffer>(); 143 private void read(InputStream in, ByteBuffer buffer, int len) throws IOException, ExitRequest [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/ |
ByteBufferTest.java | 22 import java.nio.ByteBuffer; 35 * Tests java.nio.ByteBuffer 42 protected ByteBuffer buf; 45 buf = ByteBuffer.allocate(10); 136 ByteBuffer readonly = buf.asReadOnlyBuffer(); 169 ByteBuffer ret = buf.compact(); 223 ByteBuffer other = ByteBuffer.allocate(buf.capacity()); 240 assertTrue(ByteBuffer.wrap(new byte[21]).compareTo(ByteBuffer.allocateDirect(21)) == 0) [all...] |
/libcore/luni/src/main/java/java/nio/ |
FileChannelImpl.java | 283 public int read(ByteBuffer buffer, long position) throws IOException { 290 public int read(ByteBuffer buffer) throws IOException { 294 private int readImpl(ByteBuffer buffer, long position) throws IOException { 349 public long read(ByteBuffer[] buffers, int offset, int length) throws IOException { 389 ByteBuffer buffer = fileSrc.map(MapMode.READ_ONLY, filePosition, count); 399 ByteBuffer buffer = ByteBuffer.allocate((int) count); 446 ByteBuffer buffer = null; 474 public int write(ByteBuffer buffer, long position) throws IOException { 481 public int write(ByteBuffer buffer) throws IOException [all...] |
/development/samples/training/threadsample/src/com/example/android/threadsample/ |
PhotoDownloadRunnable.java | 123 byte[] byteBuffer = mPhotoTask.getByteBuffer(); 139 if (null == byteBuffer) { 280 byteBuffer = new byte[bufferOffset]; 283 System.arraycopy(tempBuffer, 0, byteBuffer, 0, bufferOffset); 290 byteBuffer = new byte[contentSize]; 305 byteBuffer, 359 mPhotoTask.setByteBuffer(byteBuffer); 376 // If the byteBuffer is null, reports that the download failed. 377 if (null == byteBuffer) {
|
/external/chromium_org/mojo/public/java/src/org/chromium/mojo/system/ |
DataPipe.java | 7 import java.nio.ByteBuffer; 217 * must be a direct ByteBuffer and the limit should be a multiple of the data pipe's element 231 public int writeData(ByteBuffer elements, WriteFlags flags); 234 * Begins a two-phase write to the data pipe producer . On success, returns a |ByteBuffer| 252 public ByteBuffer beginWriteData(int numBytes, WriteFlags flags); 286 * and returns the amount actually read. |elements| must be a direct ByteBuffer. If flags 293 public int readData(ByteBuffer elements, ReadFlags flags); 296 * Begins a two-phase read from the data pipe consumer. On success, returns a |ByteBuffer| 309 public ByteBuffer beginReadData(int numBytes, ReadFlags flags);
|
MessagePipeHandle.java | 7 import java.nio.ByteBuffer; 88 * message data, |bytes| may be null, otherwise it must be a direct ByteBuffer. If there are no 95 void writeMessage(ByteBuffer bytes, List<? extends Handle> handles, WriteFlags flags); 183 * be a direct ByteBuffer and the return value will indicate if the message was read or not. If 189 ReadMessageResult readMessage(ByteBuffer bytes, int maxNumberOfHandles,
|
/tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/ |
AbstractDirectory.java | 23 import java.nio.ByteBuffer; 74 * @param data the {@code ByteBuffer} to fill 77 protected abstract void read(ByteBuffer data) throws IOException; 84 * @param data the {@code ByteBuffer} to write 87 protected abstract void write(ByteBuffer data) throws IOException; 214 final ByteBuffer data = ByteBuffer.allocate( 245 final ByteBuffer data = ByteBuffer.allocate(
|
/development/samples/OpenGL/HelloOpenGLES20/src/com/example/android/opengl/ |
Square.java | 18 import java.nio.ByteBuffer; 75 ByteBuffer bb = ByteBuffer.allocateDirect( 84 ByteBuffer dlb = ByteBuffer.allocateDirect(
|
/external/apache-harmony/x-net/src/test/support/common/java/org/apache/harmony/xnet/tests/support/ |
MySSLContextSpi.java | 20 import java.nio.ByteBuffer; 234 public SSLEngineResult unwrap(ByteBuffer src, ByteBuffer[] dsts, 240 public SSLEngineResult wrap(ByteBuffer[] srcs, int offset, 241 int length, ByteBuffer dst) throws SSLException {
|
/external/chromium_org/third_party/libjingle/source/talk/base/ |
socketadapters.h | 41 class ByteBuffer; 212 void DirectSend(const ByteBuffer& buf); 214 void HandleHello(ByteBuffer* request); 216 void HandleAuth(ByteBuffer* request); 218 void HandleConnect(ByteBuffer* request);
|
/external/chromium_org/third_party/webrtc/base/ |
socketadapters.h | 24 class ByteBuffer; 195 void DirectSend(const ByteBuffer& buf); 197 void HandleHello(ByteBuffer* request); 199 void HandleAuth(ByteBuffer* request); 201 void HandleConnect(ByteBuffer* request);
|
/external/conscrypt/src/main/java/org/conscrypt/ |
OpenSSLEngineImpl.java | 20 import java.nio.ByteBuffer; 100 /** Used during handshake when {@link #wrap(ByteBuffer, ByteBuffer)} is called. */ 102 private static OpenSSLBIOSource nullSource = OpenSSLBIOSource.wrap(ByteBuffer.allocate(0)); 386 public SSLEngineResult unwrap(ByteBuffer src, ByteBuffer[] dsts, int offset, int length) 396 ByteBuffer dst = dsts[i]; 452 ByteBuffer srcDuplicate = src.duplicate(); 460 ByteBuffer dst = getNextAvailableByteBuffer(dsts, offset, length); 465 ByteBuffer arrayDst = dst [all...] |