From: Glenn Kasten Date: Fri, 3 Feb 2012 18:32:24 +0000 (-0800) Subject: Camel case readability & private disconnect(bool) X-Git-Tag: android-x86-4.4-r1~1579^2~201^2 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=58123c3a8b5f34f9d1f70264a3c568ed90288501;p=android-x86%2Fframeworks-av.git Camel case readability & private disconnect(bool) Change-Id: If66516ed2703e048c5e6ccc6cd431446a024f4a1 --- diff --git a/services/audioflinger/AudioFlinger.cpp b/services/audioflinger/AudioFlinger.cpp index 93c91fb60a..779c4f5c38 100644 --- a/services/audioflinger/AudioFlinger.cpp +++ b/services/audioflinger/AudioFlinger.cpp @@ -5885,13 +5885,13 @@ void AudioFlinger::ThreadBase::setMode(audio_mode_t mode) void AudioFlinger::ThreadBase::disconnectEffect(const sp& effect, const wp& handle, - bool unpiniflast) { + bool unpinIfLast) { Mutex::Autolock _l(mLock); ALOGV("disconnectEffect() %p effect %p", this, effect.get()); // delete the effect module if removing last handle on it if (effect->removeHandle(handle) == 0) { - if (!effect->isPinned() || unpiniflast) { + if (!effect->isPinned() || unpinIfLast) { removeEffect_l(effect); AudioSystem::unregisterEffect(effect->id()); } @@ -6207,7 +6207,7 @@ sp AudioFlinger::EffectModule::controlHandle() return mHandles.size() != 0 ? mHandles[0].promote() : 0; } -void AudioFlinger::EffectModule::disconnect(const wp& handle, bool unpiniflast) +void AudioFlinger::EffectModule::disconnect(const wp& handle, bool unpinIfLast) { ALOGV("disconnect() %p handle %p ", this, handle.unsafe_get()); // keep a strong reference on this EffectModule to avoid calling the @@ -6216,7 +6216,7 @@ void AudioFlinger::EffectModule::disconnect(const wp& handle, bool { sp thread = mThread.promote(); if (thread != 0) { - thread->disconnectEffect(keep, handle, unpiniflast); + thread->disconnectEffect(keep, handle, unpinIfLast); } } } @@ -6888,13 +6888,13 @@ void AudioFlinger::EffectHandle::disconnect() disconnect(true); } -void AudioFlinger::EffectHandle::disconnect(bool unpiniflast) +void AudioFlinger::EffectHandle::disconnect(bool unpinIfLast) { - ALOGV("disconnect(%s)", unpiniflast ? "true" : "false"); + ALOGV("disconnect(%s)", unpinIfLast ? "true" : "false"); if (mEffect == 0) { return; } - mEffect->disconnect(this, unpiniflast); + mEffect->disconnect(this, unpinIfLast); if (mHasControl && mEnabled) { sp thread = mEffect->thread().promote(); diff --git a/services/audioflinger/AudioFlinger.h b/services/audioflinger/AudioFlinger.h index 97103c491d..eff4a04863 100644 --- a/services/audioflinger/AudioFlinger.h +++ b/services/audioflinger/AudioFlinger.h @@ -442,7 +442,7 @@ private: status_t *status); void disconnectEffect(const sp< EffectModule>& effect, const wp& handle, - bool unpiniflast); + bool unpinIfLast); // return values for hasAudioSession (bit field) enum effect_state { @@ -1120,7 +1120,7 @@ private: const wp& thread() { return mThread; } status_t addHandle(const sp& handle); - void disconnect(const wp& handle, bool unpiniflast); + void disconnect(const wp& handle, bool unpinIfLast); size_t removeHandle (const wp& handle); effect_descriptor_t& desc() { return mDescriptor; } @@ -1196,7 +1196,9 @@ mutable Mutex mLock; // mutex for process, commands and handl uint32_t *replySize, void *pReplyData); virtual void disconnect(); - virtual void disconnect(bool unpiniflast); + private: + void disconnect(bool unpinIfLast); + public: virtual sp getCblk() const { return mCblkMemory; } virtual status_t onTransact(uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags);