Lines Matching refs:bufferId

76             TransactionId transactionId, BufferId bufferId,
80 void postBufferRelease(BufferId bufferId);
83 BufferId bufferId, ConnectionId receiver,
88 BufferId bufferId, TransactionId transactionId,
92 BufferId bufferId, TransactionId transactionId, bool result, bool *needsSync);
105 const std::vector<uint8_t>& params, BufferId *bufferId,
109 TransactionId transactionId, BufferId bufferId,
358 BufferId bufferId; in allocate() local
361 BufferPoolStatus status = allocateBufferHandle(params, &bufferId, &handle); in allocate()
367 auto cacheIt = mCache.mBuffers.find(bufferId); in allocate()
373 mConnectionId, bufferId, handle); in allocate()
376 bufferId, std::move(clientBuffer))); in allocate()
390 postBufferRelease(bufferId); in allocate()
397 TransactionId transactionId, BufferId bufferId, int64_t timestampMs, in receive() argument
406 if (!postReceive(bufferId, transactionId, timestampMs)) { in receive()
415 auto cacheIt = mCache.mBuffers.find(bufferId); in receive()
440 status = fetchBufferHandle(transactionId, bufferId, &handle); in receive()
445 mConnectionId, bufferId, handle); in receive()
448 std::make_pair(bufferId, std::move( in receive()
472 bool posted = postReceiveResult(bufferId, transactionId, in receive()
474 ALOGV("client receive %lld - %u : %s (%d)", (long long)mConnectionId, bufferId, in receive()
493 void BufferPoolClient::Impl::postBufferRelease(BufferId bufferId) { in postBufferRelease() argument
495 mReleasing.mReleasingIds.push_back(bufferId); in postBufferRelease()
502 BufferId bufferId, ConnectionId receiver, in postSend() argument
517 *transactionId, bufferId, BufferStatus::TRANSFER_TO, mConnectionId, in postSend()
531 BufferId bufferId, TransactionId transactionId, int64_t timestampMs) { in postReceive() argument
537 transactionId, bufferId, BufferStatus::TRANSFER_FROM, in postReceive()
547 transactionId, bufferId, BufferStatus::TRANSFER_TIMEOUT, in postReceive()
557 BufferId bufferId, TransactionId transactionId, bool result, bool *needsSync) { in postReceiveResult() argument
561 transactionId, bufferId, in postReceiveResult()
725 const std::vector<uint8_t>& params, BufferId *bufferId, in allocateBufferHandle() argument
730 params, bufferId, &allocHandle); in allocateBufferHandle()
736 *handle ? *bufferId : 0 , *handle); in allocateBufferHandle()
743 TransactionId transactionId, BufferId bufferId, in fetchBufferHandle() argument
753 infos.emplace_back(FetchInfo{ToAidl(transactionId), ToAidl(bufferId)}); in fetchBufferHandle()
843 TransactionId transactionId, BufferId bufferId, int64_t timestampMs, in receive() argument
846 return mImpl->receive(transactionId, bufferId, timestampMs, handle, buffer); in receive()