Home
last modified time | relevance | path

Searched refs:batch (Results 1 – 5 of 5) sorted by relevance

/system/libhidl/transport/allocator/1.0/default/
DAshmemAllocator.cpp68 hidl_vec<hidl_memory> batch; in batchAllocate() local
69 batch.resize(count); in batchAllocate()
73 batch[allocated] = allocateOne(size); in batchAllocate()
75 if (batch[allocated].handle() == nullptr) { in batchAllocate()
87 _hidl_cb(true /* success */, batch); in batchAllocate()
91 cleanup(std::move(batch[i])); in batchAllocate()
/system/libhidl/transport/allocator/1.0/
DIAllocator.hal39 * @return batch Unmapped memory objects.
41 batchAllocate(uint64_t size, uint64_t count) generates (bool success, vec<memory> batch);
/system/chre/apps/test/common/proto/
Dchre_cross_validation_sensor.proto17 // C2H: Data payload to be validated. This is a batch of data exactly as it
/system/tools/hidl/test/hidl_test/
Dhidl_test_client.cpp964 [&](bool success, const hidl_vec<hidl_memory>& batch) { in TEST_F() argument
966 EXPECT_EQ(kBatchSize, batch.size()); in TEST_F()
968 for (uint64_t i = 0; i < batch.size(); i++) { in TEST_F()
969 sp<IMemory> memory = mapMemory(batch[i]); in TEST_F()
976 EXPECT_EQ(memory->getSize(), batch[i].size()); in TEST_F()
983 batchCopy = batch; in TEST_F()
/system/chre/doc/
Dnanoapp_developer_guide.md151 required, nanoapps are encouraged to batch their messages and opportunistically
252 with the longest batch interval that still meets the latency requirement.