Searched refs:curStrLen (Results 1 – 1 of 1) sorted by relevance
/aosp12/system/media/alsa_utils/ |
H A D | alsa_device_profile.c | 485 size_t curStrLen = 0; in profile_get_sample_rate_strs() local 503 curStrLen = strlcat(buffer, numBuffer, buffSize); in profile_get_sample_rate_strs() 518 size_t curStrLen = 0; in profile_get_format_strs() local 609 size_t curStrLen = 0; in profile_get_channel_count_strs() local 620 curStrLen = strlcat(buffer, chans_strs[2], buffSize); in profile_get_channel_count_strs() 635 if (buffSize - curStrLen < strlen(chans_strs[channel_count]) + 2) { in profile_get_channel_count_strs() 642 if (curStrLen != 0) strlcat(buffer, "|", buffSize); in profile_get_channel_count_strs() 643 curStrLen = strlcat(buffer, chans_strs[channel_count], buffSize); in profile_get_channel_count_strs() 648 if (buffSize - curStrLen < strlen(index_chans_strs[channel_count]) + 2) { in profile_get_channel_count_strs() 655 if (curStrLen != 0) strlcat(buffer, "|", buffSize); in profile_get_channel_count_strs() [all …]
|