Searched refs:ref_count_search (Results 1 – 1 of 1) sorted by relevance
255 const auto ref_count_search = mAudioFocusCount.find(request_key); in HandleAcquiring() local260 const bool not_found = ref_count_search == mAudioFocusCount.end(); in HandleAcquiring()261 const bool count_zero = !not_found && ref_count_search->second == 0; in HandleAcquiring()271 ++ref_count_search->second; in HandleAcquiring()288 const auto ref_count_search = mAudioFocusCount.find(request_key); in HandleReleasing() local289 if (ref_count_search == mAudioFocusCount.end()) { in HandleReleasing()294 auto& request_ref_count = ref_count_search->second; in HandleReleasing()297 mAudioFocusCount.erase(ref_count_search); in HandleReleasing()