Home
last modified time | relevance | path

Searched refs:returnIn (Results 1 – 6 of 6) sorted by relevance

/hardware/interfaces/audio/core/all-versions/vts/functional/2.0/
DAudioPrimaryHidlHalUtils.h35 static auto get(T t, hidl_vec<hidl_string> keys, ReturnIn returnIn) { in get()
36 return t->getParameters(keys, returnIn); in get()
55 EXPECT_OK(stream->getSupportedSampleRates(returnIn(rates))); in sampleRates()
60 EXPECT_OK(stream->getSupportedChannelMasks(returnIn(channels))); in channelMasks()
65 EXPECT_OK(stream->getSupportedFormats(returnIn(capabilities))); in formats()
/hardware/interfaces/audio/core/all-versions/vts/functional/4.0/
DAudioPrimaryHidlHalUtils.h48 static auto get(T t, hidl_vec<hidl_string> keys, ReturnIn returnIn) { in get()
50 return t->getParameters(context, keys, returnIn); in get()
67 EXPECT_OK(stream->getSupportedSampleRates(getFormat(stream), returnIn(res, rates))); in sampleRates()
74 EXPECT_OK(stream->getSupportedChannelMasks(getFormat(stream), returnIn(res, channels))); in channelMasks()
80 EXPECT_OK(stream->getSupportedFormats(returnIn(capabilities))); in formats()
86 EXPECT_OK(stream->getSupportedFormats(returnIn(res, capabilities))); in formats()
DAudioPrimaryHidlHalTest.cpp44 ASSERT_OK(getDevice()->getMicrophones(returnIn(res, microphones))); in TEST_P()
104 ASSERT_OK(stream->getActiveMicrophones(returnIn(res, activeMicrophones))); in TEST_P()
145 ASSERT_OK(stream->getDevices(returnIn(res, devices))); in testGetDevices()
178 ASSERT_OK(device->getHwAvSync(returnIn(res, sync))); in checkGetHwAVSync()
/hardware/interfaces/audio/core/all-versions/vts/functional/
DDeviceManager.h127 auto ret = factory->openDevice(name, returnIn(result, device)); in openDevice()
144 auto ret = factory->openDevice(IDevicesFactory::Device::PRIMARY, returnIn(result, device)); in openPrimaryDevice()
146 auto ret = factory->openPrimaryDevice(returnIn(result, device)); in openPrimaryDevice()
DAudioPrimaryHidlHalTest.h362 ASSERT_OK(getDevicesFactory()->openDevice(invalidDevice, returnIn(result, device))); in TEST_P()
456 ASSERT_OK((BaseTestClass::getDevice().get()->*getter)(returnIn(res, initialValue)));
475 ASSERT_OK((BaseTestClass::getDevice().get()->*getter)(returnIn(res, getValue)));
679 ASSERT_OK(getDevice()->getInputBufferSize(audioConfig, returnIn(res, bufferSize))); in inputBufferSizeTest()
762 ASSERT_OK(Parameters::get(getDevice(), keys, returnIn(res, values))); in TEST_P()
839 ASSERT_OK(openStream(ioHandle, config, returnIn(*res, mStream, *suggestedConfigPtr))); in open()
850 returnIn(*res, mStream, suggestedConfigRetry))); in open()
1131 stream->getAudioProperties(returnIn(sampleRateHz, mask, format)); in testGetAudioProperties()
1151 ASSERT_OK(Parameters::get(stream, keys, returnIn(res, parameters))); in checkGetNoParameter()
1227 EXPECT_OK(stream->createMmapBuffer(value, returnIn(res, info))); in testMmapBufferOfInvalidSize()
[all …]
/hardware/interfaces/audio/common/all-versions/test/utility/include/utility/
DReturnIn.h64 detail::ReturnIn<ResultStore...> returnIn(ResultStore&... ts) { in returnIn() function