• Home
  • Raw
  • Download

Lines Matching refs:thiz

32         IAndroidEffectSend *thiz = (IAndroidEffectSend *) self;  in IAndroidEffectSend_EnableEffectSend()  local
33 interface_lock_exclusive(thiz); in IAndroidEffectSend_EnableEffectSend()
35 CAudioPlayer *ap = (SL_OBJECTID_AUDIOPLAYER == InterfaceToObjectID(thiz)) ? in IAndroidEffectSend_EnableEffectSend()
36 (CAudioPlayer *) thiz->mThis : NULL; in IAndroidEffectSend_EnableEffectSend()
49 thiz->mSendLevel = initialLevel; in IAndroidEffectSend_EnableEffectSend()
50 thiz->mEnabled = enable; in IAndroidEffectSend_EnableEffectSend()
53 interface_unlock_exclusive(thiz); in IAndroidEffectSend_EnableEffectSend()
68 IAndroidEffectSend *thiz = (IAndroidEffectSend *) self; in IAndroidEffectSend_IsEnabled() local
69 interface_lock_shared(thiz); in IAndroidEffectSend_IsEnabled()
71 SLboolean enable = thiz->mEnabled; in IAndroidEffectSend_IsEnabled()
72 interface_unlock_shared(thiz); in IAndroidEffectSend_IsEnabled()
91 IAndroidEffectSend *thiz = (IAndroidEffectSend *) self; in IAndroidEffectSend_SetDirectLevel() local
92 interface_lock_exclusive(thiz); in IAndroidEffectSend_SetDirectLevel()
93 CAudioPlayer *ap = (SL_OBJECTID_AUDIOPLAYER == InterfaceToObjectID(thiz)) ? in IAndroidEffectSend_SetDirectLevel()
94 (CAudioPlayer *) thiz->mThis : NULL; in IAndroidEffectSend_SetDirectLevel()
100 interface_unlock_exclusive_attributes(thiz, ATTR_GAIN); in IAndroidEffectSend_SetDirectLevel()
102 interface_unlock_exclusive(thiz); in IAndroidEffectSend_SetDirectLevel()
106 interface_unlock_exclusive(thiz); in IAndroidEffectSend_SetDirectLevel()
124 IAndroidEffectSend *thiz = (IAndroidEffectSend *) self; in IAndroidEffectSend_GetDirectLevel() local
125 interface_lock_shared(thiz); in IAndroidEffectSend_GetDirectLevel()
126 CAudioPlayer *ap = (SL_OBJECTID_AUDIOPLAYER == InterfaceToObjectID(thiz)) ? in IAndroidEffectSend_GetDirectLevel()
127 (CAudioPlayer *) thiz->mThis : NULL; in IAndroidEffectSend_GetDirectLevel()
135 interface_unlock_shared(thiz); in IAndroidEffectSend_GetDirectLevel()
152 IAndroidEffectSend *thiz = (IAndroidEffectSend *) self; in IAndroidEffectSend_SetSendLevel() local
153 interface_lock_exclusive(thiz); in IAndroidEffectSend_SetSendLevel()
155 CAudioPlayer *ap = (SL_OBJECTID_AUDIOPLAYER == InterfaceToObjectID(thiz)) ? in IAndroidEffectSend_SetSendLevel()
156 (CAudioPlayer *) thiz->mThis : NULL; in IAndroidEffectSend_SetSendLevel()
173 thiz->mSendLevel = sendLevel; in IAndroidEffectSend_SetSendLevel()
176 interface_unlock_exclusive(thiz); in IAndroidEffectSend_SetSendLevel()
191 IAndroidEffectSend *thiz = (IAndroidEffectSend *) self; in IAndroidEffectSend_GetSendLevel() local
192 interface_lock_exclusive(thiz); in IAndroidEffectSend_GetSendLevel()
194 CAudioPlayer *ap = (SL_OBJECTID_AUDIOPLAYER == InterfaceToObjectID(thiz)) ? in IAndroidEffectSend_GetSendLevel()
195 (CAudioPlayer *) thiz->mThis : NULL; in IAndroidEffectSend_GetSendLevel()
211 *pSendLevel = thiz->mSendLevel; in IAndroidEffectSend_GetSendLevel()
214 interface_unlock_exclusive(thiz); in IAndroidEffectSend_GetSendLevel()
232 IAndroidEffectSend *thiz = (IAndroidEffectSend *) self; in IAndroidEffectSend_init() local
233 thiz->mItf = &IAndroidEffectSend_Itf; in IAndroidEffectSend_init()
234 thiz->mEnabled = SL_BOOLEAN_FALSE; in IAndroidEffectSend_init()
235 thiz->mSendLevel = SL_MILLIBEL_MIN; in IAndroidEffectSend_init()