Home
last modified time | relevance | path

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

/drivers/peripheral/audio/hal/hdi_passthrough/src/
Daudio_adapter_info_common.c402 uint64_t tempSampleRate = strtoul(value, &endptr, DECIMAL_SYSTEM); in TransferSampleRate() local
403 if ((errno == ERANGE && (tempSampleRate == ULONG_MAX)) || (errno != 0 && tempSampleRate == 0)) { in TransferSampleRate()
407 int32_t ret = CheckAttrSamplingRate(tempSampleRate); in TransferSampleRate()
409 *sampleRate = tempSampleRate; in TransferSampleRate()
/drivers/peripheral/audio/hdi_service/primary_impl/src/
Daudio_adapter_info_common.c401 unsigned long tempSampleRate = strtoul(value, &endptr, DECIMAL_SYSTEM); in TransferSampleRate() local
402 if ((errno == ERANGE && (tempSampleRate == ULONG_MAX)) || (errno != 0 && tempSampleRate == 0)) { in TransferSampleRate()
406 if (CheckAttrSamplingRate(tempSampleRate) != HDF_SUCCESS) { in TransferSampleRate()
409 *sampleRate = tempSampleRate; in TransferSampleRate()
/drivers/peripheral/bluetooth/audio/hal/hdi_passthrough/src/
Daudio_adapter_info_common.cpp843 unsigned long tempSampleRate = strtoul(value, &endptr, DECIMAL_SYSTEM); in TransferSampleRate() local
844 if ((errno == ERANGE && (tempSampleRate == ULONG_MAX)) || (errno != 0 && tempSampleRate == 0)) { in TransferSampleRate()
847 int32_t ret = CheckAttrSamplingRate(tempSampleRate); in TransferSampleRate()
849 *sampleRate = tempSampleRate; in TransferSampleRate()