Home
last modified time | relevance | path

Searched refs:allocateDirectBuffer (Results 1 – 4 of 4) sorted by relevance

/external/conscrypt/common/src/main/java/org/conscrypt/
DBufferAllocator.java28 public AllocatedBuffer allocateDirectBuffer(int capacity) {
43 public abstract AllocatedBuffer allocateDirectBuffer(int capacity); in allocateDirectBuffer() method in BufferAllocator
DConscryptEngine.java999 allocatedBuffer = bufferAllocator.allocateDirectBuffer(len); in writePlaintextDataHeap()
1061 allocatedBuffer = bufferAllocator.allocateDirectBuffer(len); in readPlaintextDataHeap()
1128 allocatedBuffer = bufferAllocator.allocateDirectBuffer(len); in writeEncryptedDataHeap()
1250 allocatedBuffer = bufferAllocator.allocateDirectBuffer(len); in readEncryptedDataHeap()
/external/libmojo/mojo/android/system/src/org/chromium/mojo/system/impl/
DCoreImpl.java106 ByteBuffer buffer = allocateDirectBuffer(handles.size() * 16 + 4); in waitMany()
138 ByteBuffer buffer = allocateDirectBuffer(8); in wait()
156 optionsBuffer = allocateDirectBuffer(8); in createMessagePipe()
176 optionsBuffer = allocateDirectBuffer(16); in createDataPipe()
199 optionsBuffer = allocateDirectBuffer(8); in createSharedBuffer()
281 handlesBuffer = allocateDirectBuffer(handles.size() * HANDLE_SIZE); in writeMessage()
309 handlesBuffer = allocateDirectBuffer(maxNumberOfHandles * HANDLE_SIZE); in readMessage()
429 optionsBuffer = allocateDirectBuffer(8); in duplicate()
491 private ByteBuffer allocateDirectBuffer(int capacity) { in allocateDirectBuffer() method in CoreImpl
/external/conscrypt/benchmark-base/src/main/java/org/conscrypt/
DPooledAllocator.java37 public AllocatedBuffer allocateDirectBuffer(int capacity) { in allocateDirectBuffer() method in PooledAllocator