Home
last modified time | relevance | path

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

/system/libfmq/
DErasedMessageQueue.cpp102 bool ErasedMessageQueue::beginRead(size_t nMessages, MemTransaction* memTx) const { in beginRead() function in ErasedMessageQueue
105 auto result = inner->beginRead(nMessages, &memTxInternal); in beginRead()
DErasedMessageQueue.hpp144 bool beginRead(size_t nMessages, MemTransaction* memTx) const;
DAndroid.bp150 "--allowlist-function=.*beginRead",
Dlibfmq.rs433 unsafe { self.inner.beginRead(n, addr_of_mut!(txn)) }.then_some(txn) in begin_read()
/system/libfmq/tests/
Dfmq_unit_tests.cpp826 ASSERT_TRUE(this->mQueue->beginRead(dataLen, &tx)); in TYPED_TEST()
861 ASSERT_TRUE(this->mQueue->beginRead(dataLen, &tx)); in TYPED_TEST()
899 ASSERT_FALSE(this->mQueue->beginRead(dataLen, &tx)); in TYPED_TEST()
1103 ASSERT_TRUE(this->mQueue->beginRead(this->mNumMessagesMax, &tx)); in TYPED_TEST()
Dmsgq_test_client.cpp681 ASSERT_TRUE(this->mQueue->beginRead(dataLen, &tx)); in TYPED_TEST()
716 ASSERT_TRUE(this->mQueue->beginRead(dataLen, &tx)); in TYPED_TEST()
/system/libfmq/include/fmq/
DMessageQueueBase.h449 bool beginRead(size_t nMessages, MemTransaction* memTx) const;
1277 return beginRead(nMessages, &tx) && in read()
1287 MessageQueueBase<MQDescriptorType, T, flavor>::beginRead(size_t nMessages, in beginRead() function
/system/libfmq/fuzzer/
Dfmq_fuzzer.cpp131 if (!readMq.beginRead(numElements, &tx)) { in reader()