Lines Matching refs:bufferId

66             TransactionId transactionId, BufferId bufferId,
70 void postBufferRelease(BufferId bufferId);
73 BufferId bufferId, ConnectionId receiver,
78 BufferId bufferId, TransactionId transactionId,
82 BufferId bufferId, TransactionId transactionId, bool result, bool *needsSync);
91 const std::vector<uint8_t>& params, BufferId *bufferId,
95 TransactionId transactionId, BufferId bufferId,
308 BufferId bufferId; in allocate() local
311 ResultStatus status = allocateBufferHandle(params, &bufferId, &handle); in allocate()
317 auto cacheIt = mCache.mBuffers.find(bufferId); in allocate()
323 mConnectionId, bufferId, handle); in allocate()
326 bufferId, std::move(clientBuffer))); in allocate()
340 postBufferRelease(bufferId); in allocate()
347 TransactionId transactionId, BufferId bufferId, int64_t timestampUs, in receive() argument
356 if (!postReceive(bufferId, transactionId, timestampUs)) { in receive()
365 auto cacheIt = mCache.mBuffers.find(bufferId); in receive()
390 status = fetchBufferHandle(transactionId, bufferId, &handle); in receive()
395 mConnectionId, bufferId, handle); in receive()
398 std::make_pair(bufferId, std::move( in receive()
422 bool posted = postReceiveResult(bufferId, transactionId, in receive()
424 ALOGV("client receive %lld - %u : %s (%d)", (long long)mConnectionId, bufferId, in receive()
443 void BufferPoolClient::Impl::postBufferRelease(BufferId bufferId) { in postBufferRelease() argument
445 mReleasing.mReleasingIds.push_back(bufferId); in postBufferRelease()
452 BufferId bufferId, ConnectionId receiver, in postSend() argument
462 *transactionId, bufferId, BufferStatus::TRANSFER_TO, mConnectionId, in postSend()
476 BufferId bufferId, TransactionId transactionId, int64_t timestampUs) { in postReceive() argument
482 transactionId, bufferId, BufferStatus::TRANSFER_FROM, in postReceive()
492 transactionId, bufferId, BufferStatus::TRANSFER_TIMEOUT, in postReceive()
502 BufferId bufferId, TransactionId transactionId, bool result, bool *needsSync) { in postReceiveResult() argument
506 transactionId, bufferId, in postReceiveResult()
523 BufferId bufferId = Connection::SYNC_BUFFERID; in trySyncFromRemote() local
525 transactionId, bufferId, in trySyncFromRemote()
591 const std::vector<uint8_t>& params, BufferId *bufferId, in allocateBufferHandle() argument
596 params, bufferId, &allocHandle); in allocateBufferHandle()
602 *handle ? *bufferId : 0 , *handle); in allocateBufferHandle()
609 TransactionId transactionId, BufferId bufferId, in fetchBufferHandle() argument
619 transactionId, bufferId, in fetchBufferHandle()
686 TransactionId transactionId, BufferId bufferId, int64_t timestampUs, in receive() argument
689 return mImpl->receive(transactionId, bufferId, timestampUs, handle, buffer); in receive()