Lines Matching defs:thiz
90 CEngine *thiz = theOneTrueEngine;
91 if (NULL != thiz) {
101 object_lock_exclusive(&thiz->mObject);
105 SLuint8 *interfaceStateP = thiz->mObject.mInterfaceStates;
116 if ((NULL == expose) || (*expose)((char *) thiz + x->mOffset)) {
129 object_unlock_exclusive(&thiz->mObject);
131 *pEngine = &thiz->mObject.mItf;
143 thiz = (CEngine *) construct(pCEngine_class, exposedMask, NULL);
144 if (NULL == thiz) {
151 memset(&thiz->mThreadPool, 0, sizeof(ThreadPool));
152 memset(&thiz->mSyncThread, 0, sizeof(pthread_t));
154 thiz->mEqNumPresets = 0;
155 thiz->mEqPresetNames = NULL;
158 thiz->mObject.mLossOfControlMask = lossOfControlGlobal ? ~0 : 0;
159 thiz->mEngine.mLossOfControlGlobal = lossOfControlGlobal;
160 thiz->mEngineCapabilities.mThreadSafe = threadSafe;
161 IObject_Publish(&thiz->mObject);
162 theOneTrueEngine = thiz;
165 *pEngine = &thiz->mObject.mItf;