Home
last modified time | relevance | path

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

/frameworks/av/media/libaudiohal/impl/
DStreamHalLocal.cpp315 StreamInHalLocal::StreamInHalLocal(audio_stream_in_t *stream, sp<DeviceHalLocal> device) in StreamInHalLocal() function in android::CPP_VERSION::StreamInHalLocal
319 StreamInHalLocal::~StreamInHalLocal() { in ~StreamInHalLocal()
324 status_t StreamInHalLocal::getFrameSize(size_t *size) { in getFrameSize()
329 status_t StreamInHalLocal::setGain(float gain) { in setGain()
333 status_t StreamInHalLocal::read(void *buffer, size_t bytes, size_t *read) { in read()
345 status_t StreamInHalLocal::getInputFramesLost(uint32_t *framesLost) { in getInputFramesLost()
350 status_t StreamInHalLocal::getCapturePosition(int64_t *frames, int64_t *time) { in getCapturePosition()
355 status_t StreamInHalLocal::updateSinkMetadata(const SinkMetadata& sinkMetadata) { in updateSinkMetadata()
368 status_t StreamInHalLocal::start() { in start()
373 status_t StreamInHalLocal::stop() { in stop()
[all …]
DStreamHalLocal.h178 class StreamInHalLocal : public StreamInHalInterface, public StreamHalLocal {
227 StreamInHalLocal(audio_stream_in_t *stream, sp<DeviceHalLocal> device);
229 virtual ~StreamInHalLocal();
DDeviceHalLocal.cpp146 *inStream = new StreamInHalLocal(halStream, this); in openInputStream()