/hardware/libhardware_legacy/include/hardware_legacy/ |
AudioHardwareBase.h | 48 virtual size_t getInputBufferSize(uint32_t sampleRate, int format, int channelCount);
|
AudioHardwareInterface.h | 251 virtual size_t getInputBufferSize(uint32_t sampleRate, int format, int channelCount) = 0;
|
/device/asus/fugu/libaudio/ |
AudioHardwareInput.h | 40 status_t getInputBufferSize(const audio_config* config);
|
AudioHardwareInput.cpp | 94 status_t AudioHardwareInput::getInputBufferSize(const audio_config* config)
|
audio_hal_thunks.cpp | 430 return adev->input->getInputBufferSize(config);
|
/external/archive-patcher/shared/src/main/java/com/google/archivepatcher/shared/ |
DeflateUncompressor.java | 72 public int getInputBufferSize() {
|
DeflateCompressor.java | 140 public int getInputBufferSize() {
|
/hardware/libhardware_legacy/audio/ |
AudioHardwareInterface.cpp | 113 size_t AudioHardwareBase::getInputBufferSize(uint32_t sampleRate, int format, int channelCount) 116 ALOGW("getInputBufferSize bad sampling rate: %d", sampleRate); 120 ALOGW("getInputBufferSize bad format: %d", format); 124 ALOGW("getInputBufferSize bad channel count: %d", channelCount);
|
A2dpAudioInterface.h | 52 virtual size_t getInputBufferSize(uint32_t sampleRate, int format, int channelCount);
|
AudioDumpInterface.h | 149 virtual size_t getInputBufferSize(uint32_t sampleRate, int format, int channelCount);
|
A2dpAudioInterface.cpp | 203 size_t A2dpAudioInterface::getInputBufferSize(uint32_t sampleRate, int format, int channelCount) 205 return mHardwareInterface->getInputBufferSize(sampleRate, format, channelCount);
|
AudioDumpInterface.cpp | 251 size_t AudioDumpInterface::getInputBufferSize(uint32_t sampleRate, int format, int channelCount) 253 return mFinalInterface->getInputBufferSize(sampleRate, format, channelCount);
|
audio_hw_hal.cpp | 484 return ladev->hwif->getInputBufferSize(config->sample_rate, (int) config->format,
|
/external/archive-patcher/shared/src/test/java/com/google/archivepatcher/shared/ |
DeflateUncompressorTest.java | 103 Assert.assertNotEquals(17, uncompressor.getInputBufferSize()); // Ensure test is valid 105 Assert.assertEquals(17, uncompressor.getInputBufferSize());
|
DeflateCompressorTest.java | 190 Assert.assertNotEquals(17, compressor.getInputBufferSize()); // Ensure test is valid 192 Assert.assertEquals(17, compressor.getInputBufferSize());
|
/frameworks/av/include/media/ |
AudioSystem.h | 133 static status_t getInputBufferSize(uint32_t sampleRate, audio_format_t format, 386 status_t getInputBufferSize(uint32_t sampleRate, audio_format_t format, 413 // cached values for recording getInputBufferSize() queries
|
IAudioFlinger.h | 146 virtual size_t getInputBufferSize(uint32_t sampleRate, audio_format_t format,
|
/frameworks/av/media/libmedia/ |
AudioSystem.cpp | 360 status_t AudioSystem::getInputBufferSize(uint32_t sampleRate, audio_format_t format, 367 return afc->getInputBufferSize(sampleRate, format, channelMask, buffSize); 568 status_t AudioSystem::AudioFlingerClient::getInputBufferSize( 580 size_t inBuffSize = af->getInputBufferSize(sampleRate, format, channelMask); 582 ALOGE("AudioSystem::getInputBufferSize failed sampleRate %d format %#x channelMask %x", [all...] |
IAudioFlinger.cpp | 440 virtual size_t getInputBufferSize(uint32_t sampleRate, audio_format_t format, [all...] |
AudioRecord.cpp | 47 status_t status = AudioSystem::getInputBufferSize(sampleRate, format, channelMask, &size); [all...] |
/hardware/qcom/audio/legacy/alsa_sound/ |
AudioHardwareALSA.h | 487 virtual size_t getInputBufferSize(uint32_t sampleRate, int format, int channels);
|
AudioHardwareALSA.cpp | [all...] |
audio_hw_hal.cpp | 511 return qadev->hwif->getInputBufferSize(config->sample_rate, config->format, channelCount);
|
/frameworks/av/services/audioflinger/ |
AudioFlinger.h | 163 virtual size_t getInputBufferSize(uint32_t sampleRate, audio_format_t format, [all...] |
AudioFlinger.cpp | [all...] |