Home
last modified time | relevance | path

Searched refs:recordThread (Results 1 – 4 of 4) sorted by relevance

/frameworks/av/services/audioflinger/
DTracks.cpp2023 RecordThread *recordThread = (RecordThread *)thread.get(); in start() local
2024 return recordThread->start(this, event, triggerSession); in start()
2034 RecordThread *recordThread = (RecordThread *)thread.get(); in stop() local
2035 if (recordThread->stop(this) && isExternalTrack()) { in stop()
2055 RecordThread *recordThread = (RecordThread *) thread.get(); in destroy() local
2056 recordThread->destroyTrack_l(this); in destroy()
2116 AudioFlinger::RecordThread::PatchRecord::PatchRecord(RecordThread *recordThread, in PatchRecord() argument
2123 : RecordTrack(recordThread, NULL, sampleRate, format, channelMask, frameCount, in PatchRecord()
2127 uint64_t mixBufferNs = ((uint64_t)2 * recordThread->frameCount() * 1000000000) / in PatchRecord()
2128 recordThread->sampleRate(); in PatchRecord()
DRecordTracks.h92 PatchRecord(RecordThread *recordThread,
DAudioFlinger.cpp1145 RecordThread *recordThread = checkRecordThread_l(ioHandle); in getParameters() local
1146 if (recordThread != NULL) { in getParameters()
1147 return recordThread->getParameters(keys); in getParameters()
1205 RecordThread *recordThread = checkRecordThread_l(ioHandle); in getInputFramesLost() local
1206 if (recordThread != NULL) { in getInputFramesLost()
1207 return recordThread->getInputFramesLost(); in getInputFramesLost()
DThreads.cpp6407 RecordThread *recordThread = (RecordThread *) threadBase.get(); in reset() local
6408 mRsmpInFront = recordThread->mRsmpInRear; in reset()
6416 RecordThread *recordThread = (RecordThread *) threadBase.get(); in sync() local
6417 const int32_t rear = recordThread->mRsmpInRear; in sync()
6428 } else if ((size_t) filled <= recordThread->mRsmpInFrames) { in sync()
6432 framesIn = recordThread->mRsmpInFrames; in sync()
6454 RecordThread *recordThread = (RecordThread *) threadBase.get(); in getNextBuffer() local
6455 int32_t rear = recordThread->mRsmpInRear; in getNextBuffer()
6460 LOG_ALWAYS_FATAL_IF(!(0 <= filled && (size_t) filled <= recordThread->mRsmpInFrames)); in getNextBuffer()
6462 front &= recordThread->mRsmpInFramesP2 - 1; in getNextBuffer()
[all …]