Home
last modified time | relevance | path

Searched refs:StreamInHalLocal (Results 1 – 3 of 3) sorted by relevance

/frameworks/av/media/libaudiohal/impl/
DStreamHalLocal.cpp278 StreamInHalLocal::StreamInHalLocal(audio_stream_in_t *stream, sp<DeviceHalLocal> device) in StreamInHalLocal() function in android::CPP_VERSION::StreamInHalLocal
282 StreamInHalLocal::~StreamInHalLocal() { in ~StreamInHalLocal()
287 status_t StreamInHalLocal::getFrameSize(size_t *size) { in getFrameSize()
292 status_t StreamInHalLocal::setGain(float gain) { in setGain()
296 status_t StreamInHalLocal::read(void *buffer, size_t bytes, size_t *read) { in read()
308 status_t StreamInHalLocal::getInputFramesLost(uint32_t *framesLost) { in getInputFramesLost()
313 status_t StreamInHalLocal::getCapturePosition(int64_t *frames, int64_t *time) { in getCapturePosition()
318 status_t StreamInHalLocal::updateSinkMetadata(const SinkMetadata& sinkMetadata) { in updateSinkMetadata()
331 status_t StreamInHalLocal::start() { in start()
336 status_t StreamInHalLocal::stop() { in stop()
[all …]
DStreamHalLocal.h173 class StreamInHalLocal : public StreamInHalInterface, public StreamHalLocal {
222 StreamInHalLocal(audio_stream_in_t *stream, sp<DeviceHalLocal> device);
224 virtual ~StreamInHalLocal();
DDeviceHalLocal.cpp146 *inStream = new StreamInHalLocal(halStream, this); in openInputStream()