Home
last modified time | relevance | path

Searched refs:mConnectionId (Results 1 – 8 of 8) sorted by relevance

/hardware/interfaces/media/bufferpool/aidl/default/
DBufferPoolClient.cpp58 return mConnectionId; in getConnectionId()
121 ConnectionId mConnectionId; member in aidl::android::hardware::media::bufferpool2::implementation::BufferPoolClient::Impl
190 ConnectionId mConnectionId; member
202 : mHasCache(false), mConnectionId(connectionId), in ClientBuffer()
244 BufferPoolData *ptr = new BufferPoolData(mConnectionId, mId); in createCache()
280 &mLocalConnection, &mConnectionId, &mReleasing.mInvalidateId, in Impl()
307 mConnectionId = conInfo.connectionId; in Impl()
373 mConnectionId, bufferId, handle); in allocate()
388 handle != nullptr, (long long)mConnectionId); in allocate()
425 ALOGV("client receive from reference %lld", (long long)mConnectionId); in receive()
[all …]
DConnection.cpp64 mConnectionId, transactionId, bufferId, &handle); in fetch()
75 Connection::Connection() : mInitialized(false), mConnectionId(-1LL) {} in Connection()
79 mAccessor->close(mConnectionId); in ~Connection()
87 mConnectionId = connectionId; in initialize()
103 return mAccessor->allocate(mConnectionId, params, bufferId, handle); in allocate()
DConnection.h87 ConnectionId mConnectionId; member
DClientManager.cpp353 ConnectionId connectionId = buffer->mConnectionId; in postSend()
/hardware/interfaces/media/bufferpool/aidl/default/tests/
Dsingle.cpp58 status = mManager->create(mAllocator, &mConnectionId); in SetUp()
64 status = mManager->registerSender(mManager, mConnectionId, &mReceiverId, &isNew); in SetUp()
66 mReceiverId == mConnectionId); in SetUp()
71 mManager->close(mConnectionId); in TearDown()
83 ConnectionId mConnectionId; member in __anon54a080870111::BufferpoolSingleTest
99 status = mManager->allocate(mConnectionId, vecParams, &allocHandle, &buffer[i]); in TEST_F()
125 status = mManager->allocate(mConnectionId, vecParams, &allocHandle, &buffer); in TEST_F()
152 status = mManager->allocate(mConnectionId, vecParams, &allocHandle, &sbuffer); in TEST_F()
Dmulti.cpp97 status = mManager->create(mAllocator, &mConnectionId); in SetUp()
110 mManager->close(mConnectionId); in TearDown()
122 ConnectionId mConnectionId; member in __anon722bb5300111::BufferpoolMultiTest
203 status = mManager->registerSender(receiver, mConnectionId, &receiverId, &isNew); in TEST_F()
213 status = mManager->allocate(mConnectionId, vecParams, &shandle, &sbuffer); in TEST_F()
Dcond.cpp101 status = mManager->create(mAllocator, &mConnectionId); in SetUp()
114 mManager->close(mConnectionId); in TearDown()
126 ConnectionId mConnectionId; member in __anonc821b1690111::BufferpoolMultiTest
225 status = mManager->registerSender(receiver, mConnectionId, &receiverId, &isNew); in TEST_F()
237 status = mManager->allocate(mConnectionId, vecParams, &shandle, &sbuffer); in TEST_F()
/hardware/interfaces/media/bufferpool/aidl/default/include/bufferpool2/
DBufferPoolTypes.h30 int64_t mConnectionId; member
34 BufferPoolData() : mConnectionId(0), mId(0) {} in BufferPoolData()
38 : mConnectionId(connectionId), mId(id) {} in BufferPoolData()