HomeSort by relevance Sort by last modified time
    Searched defs:thiz (Results 26 - 50 of 77) sorted by null

12 3 4

  /frameworks/wilhelm/src/itf/
I3DDoppler.c 29 I3DDoppler *thiz = (I3DDoppler *) self; local
31 interface_lock_exclusive(thiz);
32 thiz->mVelocityCartesian = velocityCartesian;
33 thiz->mVelocityActive = CARTESIAN_SET_SPHERICAL_UNKNOWN;
34 interface_unlock_exclusive(thiz);
47 I3DDoppler *thiz = (I3DDoppler *) self; local
48 interface_lock_exclusive(thiz);
49 thiz->mVelocitySpherical.mAzimuth = azimuth;
50 thiz->mVelocitySpherical.mElevation = elevation;
51 thiz->mVelocitySpherical.mSpeed = speed
67 I3DDoppler *thiz = (I3DDoppler *) self; local
114 I3DDoppler *thiz = (I3DDoppler *) self; local
131 I3DDoppler *thiz = (I3DDoppler *) self; local
153 I3DDoppler *thiz = (I3DDoppler *) self; local
    [all...]
I3DGrouping.c 37 I3DGrouping *thiz = (I3DGrouping *) self; local
38 IObject *thisObject = InterfaceToIObject(thiz);
44 interface_lock_exclusive(thiz);
45 C3DGroup *oldGroup = thiz->mGroup;
66 thiz->mGroup = newGroup;
68 interface_unlock_exclusive(thiz);
82 I3DGrouping *thiz = (I3DGrouping *) self; local
83 interface_lock_shared(thiz);
84 C3DGroup *group = thiz->mGroup;
86 interface_unlock_shared(thiz);
101 I3DGrouping *thiz = (I3DGrouping *) self; local
108 I3DGrouping *thiz = (I3DGrouping *) self; local
    [all...]
IAcousticEchoCancellation.c 36 IAndroidAcousticEchoCancellation *thiz = (IAndroidAcousticEchoCancellation *) self; local
37 interface_lock_exclusive(thiz);
38 thiz->mEnabled = (SLboolean) enabled;
39 if (NO_ECHOCANCEL(thiz)) {
42 android::status_t status = thiz->mAECEffect->setEnabled((bool) thiz->mEnabled);
45 interface_unlock_exclusive(thiz);
58 IAndroidAcousticEchoCancellation *thiz = (IAndroidAcousticEchoCancellation *) self; local
59 interface_lock_exclusive(thiz);
60 SLboolean enabled = thiz->mEnabled
114 IAndroidAcousticEchoCancellation *thiz = (IAndroidAcousticEchoCancellation *) self; local
124 IAndroidAcousticEchoCancellation *thiz = (IAndroidAcousticEchoCancellation *) self; local
131 IAndroidAcousticEchoCancellation *thiz = (IAndroidAcousticEchoCancellation *) self; local
    [all...]
IAndroidEffectCapabilities.c 30 IAndroidEffectCapabilities *thiz = (IAndroidEffectCapabilities *) self; local
31 interface_lock_shared(thiz);
33 *pNumSupportedAudioEffects = thiz->mNumFx;
36 interface_unlock_shared(thiz);
49 IAndroidEffectCapabilities *thiz = (IAndroidEffectCapabilities *) self; local
50 if (index > thiz->mNumFx) {
53 interface_lock_shared(thiz);
55 *pEffectType = (SLInterfaceID) &thiz->mFxDescriptors[index].type;
58 *pEffectImplementation = (SLInterfaceID) &thiz->mFxDescriptors[index].uuid;
61 int len = strlen(thiz->mFxDescriptors[index].name)
81 IAndroidEffectCapabilities *thiz = (IAndroidEffectCapabilities *) self; local
91 IAndroidEffectCapabilities *thiz = (IAndroidEffectCapabilities *) self; local
133 IAndroidEffectCapabilities *thiz = (IAndroidEffectCapabilities *) self; local
    [all...]
IAndroidEffectSend.c 32 IAndroidEffectSend *thiz = (IAndroidEffectSend *) self; local
33 interface_lock_exclusive(thiz);
35 CAudioPlayer *ap = (SL_OBJECTID_AUDIOPLAYER == InterfaceToObjectID(thiz)) ?
36 (CAudioPlayer *) thiz->mThis : NULL;
49 thiz->mSendLevel = initialLevel;
50 thiz->mEnabled = enable;
53 interface_unlock_exclusive(thiz);
68 IAndroidEffectSend *thiz = (IAndroidEffectSend *) self; local
69 interface_lock_shared(thiz);
71 SLboolean enable = thiz->mEnabled
91 IAndroidEffectSend *thiz = (IAndroidEffectSend *) self; local
124 IAndroidEffectSend *thiz = (IAndroidEffectSend *) self; local
152 IAndroidEffectSend *thiz = (IAndroidEffectSend *) self; local
191 IAndroidEffectSend *thiz = (IAndroidEffectSend *) self; local
232 IAndroidEffectSend *thiz = (IAndroidEffectSend *) self; local
    [all...]
IAudioIODeviceCapabilities.c 76 IAudioIODeviceCapabilities * thiz = (IAudioIODeviceCapabilities *) self; local
77 interface_lock_exclusive(thiz);
78 thiz->mAvailableAudioInputsChangedCallback = callback;
79 thiz->mAvailableAudioInputsChangedContext = pContext;
80 interface_unlock_exclusive(thiz);
146 IAudioIODeviceCapabilities * thiz = (IAudioIODeviceCapabilities *) self; local
147 interface_lock_exclusive(thiz);
148 thiz->mAvailableAudioOutputsChangedCallback = callback;
149 thiz->mAvailableAudioOutputsChangedContext = pContext;
150 interface_unlock_exclusive(thiz);
163 IAudioIODeviceCapabilities * thiz = (IAudioIODeviceCapabilities *) self; local
315 IAudioIODeviceCapabilities *thiz = (IAudioIODeviceCapabilities *) self; local
    [all...]
IAutomaticGainControl.c 35 IAndroidAutomaticGainControl *thiz = (IAndroidAutomaticGainControl *) self; local
36 interface_lock_exclusive(thiz);
37 thiz->mEnabled = (SLboolean) enabled;
38 if (NO_AUTOGAIN(thiz)) {
41 android::status_t status = thiz->mAGCEffect->setEnabled((bool) thiz->mEnabled);
44 interface_unlock_exclusive(thiz);
56 IAndroidAutomaticGainControl *thiz = (IAndroidAutomaticGainControl *) self; local
57 interface_lock_exclusive(thiz);
58 SLboolean enabled = thiz->mEnabled
111 IAndroidAutomaticGainControl *thiz = (IAndroidAutomaticGainControl *) self; local
121 IAndroidAutomaticGainControl *thiz = (IAndroidAutomaticGainControl *) self; local
128 IAndroidAutomaticGainControl *thiz = (IAndroidAutomaticGainControl *) self; local
    [all...]
IBassBoost.c 42 IBassBoost *thiz = (IBassBoost *) self; local
43 interface_lock_exclusive(thiz);
44 thiz->mEnabled = (SLboolean) enabled;
48 if (NO_BASSBOOST(thiz)) {
51 android::status_t status = thiz->mBassBoostEffect->setEnabled((bool) thiz->mEnabled);
55 interface_unlock_exclusive(thiz);
68 IBassBoost *thiz = (IBassBoost *) self; local
69 interface_lock_exclusive(thiz);
70 SLboolean enabled = thiz->mEnabled
96 IBassBoost *thiz = (IBassBoost *) self; local
124 IBassBoost *thiz = (IBassBoost *) self; local
187 IBassBoost *thiz = (IBassBoost *) self; local
201 IBassBoost *thiz = (IBassBoost *) self; local
210 IBassBoost *thiz = (IBassBoost *) self; local
    [all...]
IBufferQueue.c 26 static SLuint32 getAssociatedState(IBufferQueue *thiz)
29 switch (InterfaceToObjectID(thiz)) {
31 state = ((CAudioPlayer *) thiz->mThis)->mPlay.mState;
34 state = ((CAudioRecorder *) thiz->mThis)->mRecord.mState;
56 IBufferQueue *thiz = (IBufferQueue *) self; local
57 interface_lock_exclusive(thiz);
58 BufferHeader *oldRear = thiz->mRear, *newRear;
59 if ((newRear = oldRear + 1) == &thiz->mArray[thiz->mNumBuffers + 1]) {
60 newRear = thiz->mArray
85 IBufferQueue *thiz = (IBufferQueue *) self; local
128 IBufferQueue *thiz = (IBufferQueue *) self; local
151 IBufferQueue *thiz = (IBufferQueue *) self; local
176 IBufferQueue *thiz = (IBufferQueue *) self; local
206 IBufferQueue *thiz = (IBufferQueue *) self; local
    [all...]
IEngineCapabilities.c 107 IEngineCapabilities *thiz = (IEngineCapabilities *) self; local
114 if (index >= thiz->mMaxIndexLED) {
124 *pIndex = thiz->mMaxIndexLED;
129 for (index = 0; index < thiz->mMaxIndexLED; ++index) {
149 IEngineCapabilities *thiz = (IEngineCapabilities *) self; local
156 if (index >= thiz->mMaxIndexVibra) {
166 *pIndex = thiz->mMaxIndexVibra;
171 for (index = 0; index < thiz->mMaxIndexVibra; ++index) {
194 IEngineCapabilities *thiz = (IEngineCapabilities *) self; local
195 *pIsThreadSafe = thiz->mThreadSafe
215 IEngineCapabilities *thiz = (IEngineCapabilities *) self; local
    [all...]
ILEDArray.c 26 ILEDArray *thiz = (ILEDArray *) self; local
27 interface_lock_poke(thiz);
28 thiz->mLightMask = lightMask;
29 interface_unlock_poke(thiz);
43 ILEDArray *thiz = (ILEDArray *) self; local
44 interface_lock_peek(thiz);
45 SLuint32 lightMask = thiz->mLightMask;
46 interface_unlock_peek(thiz);
70 ILEDArray *thiz = (ILEDArray *) self; local
72 interface_lock_exclusive(thiz);
89 ILEDArray *thiz = (ILEDArray *) self; local
111 ILEDArray *thiz = (ILEDArray *) self; local
    [all...]
IMIDIMuteSolo.c 30 IMIDIMuteSolo *thiz = (IMIDIMuteSolo *) self; local
32 interface_lock_exclusive(thiz);
34 thiz->mChannelMuteMask |= mask;
36 thiz->mChannelMuteMask &= ~mask;
37 interface_unlock_exclusive(thiz);
53 IMIDIMuteSolo *thiz = (IMIDIMuteSolo *) self; local
54 interface_lock_peek(thiz);
55 SLuint16 mask = thiz->mChannelMuteMask;
56 interface_unlock_peek(thiz);
73 IMIDIMuteSolo *thiz = (IMIDIMuteSolo *) self local
96 IMIDIMuteSolo *thiz = (IMIDIMuteSolo *) self; local
115 IMIDIMuteSolo *thiz = (IMIDIMuteSolo *) self; local
130 IMIDIMuteSolo *thiz = (IMIDIMuteSolo *) self; local
153 IMIDIMuteSolo *thiz = (IMIDIMuteSolo *) self; local
173 IMIDIMuteSolo *thiz = (IMIDIMuteSolo *) self; local
195 IMIDIMuteSolo *thiz = (IMIDIMuteSolo *) self; local
225 IMIDIMuteSolo *thiz = (IMIDIMuteSolo *) self; local
    [all...]
IMIDITime.c 29 IMIDITime *thiz = (IMIDITime *) self; local
30 SLuint32 duration = thiz->mDuration;
43 IMIDITime *thiz = (IMIDITime *) self; local
45 if (!(position < thiz->mDuration)) {
48 interface_lock_poke(thiz);
49 thiz->mPosition = position;
50 interface_unlock_poke(thiz);
65 IMIDITime *thiz = (IMIDITime *) self; local
66 interface_lock_peek(thiz);
67 SLuint32 position = thiz->mPosition
81 IMIDITime *thiz = (IMIDITime *) self; local
106 IMIDITime *thiz = (IMIDITime *) self; local
130 IMIDITime *thiz = (IMIDITime *) self; local
    [all...]
IMetadataTraversal.c 30 IMetadataTraversal *thiz = (IMetadataTraversal *) self; local
31 interface_lock_poke(thiz);
32 thiz->mMode = mode;
33 interface_unlock_poke(thiz);
53 IMetadataTraversal *thiz = (IMetadataTraversal *) self; local
54 interface_lock_peek(thiz);
55 SLuint32 count = thiz->mCount;
56 interface_unlock_peek(thiz);
73 IMetadataTraversal *thiz = (IMetadataTraversal *) self; local
74 interface_lock_peek(thiz);
104 IMetadataTraversal *thiz = (IMetadataTraversal *) self; local
122 IMetadataTraversal *thiz = (IMetadataTraversal *) self; local
    [all...]
IMuteSolo.c 26 IMuteSolo *thiz = (IMuteSolo *) self; local
27 IObject *thisObject = thiz->mThis;
32 interface_lock_exclusive(thiz);
35 interface_unlock_exclusive(thiz);
38 interface_unlock_exclusive(thiz);
48 interface_unlock_exclusive_attributes(thiz, oldMuteMask != ap->mMuteMask ? ATTR_GAIN :
65 IMuteSolo *thiz = (IMuteSolo *) self; local
66 IObject *thisObject = thiz->mThis;
72 interface_lock_shared(thiz);
85 interface_unlock_shared(thiz);
98 IMuteSolo *thiz = (IMuteSolo *) self; local
137 IMuteSolo *thiz = (IMuteSolo *) self; local
173 IMuteSolo *thiz = (IMuteSolo *) self; local
202 IMuteSolo *thiz = (IMuteSolo *) self; local
    [all...]
INoiseSuppression.c 34 IAndroidNoiseSuppression *thiz = (IAndroidNoiseSuppression *) self; local
35 interface_lock_exclusive(thiz);
36 thiz->mEnabled = (SLboolean) enabled;
37 if (NO_NOISESUPPRESS(thiz)) {
40 android::status_t status = thiz->mNSEffect->setEnabled((bool) thiz->mEnabled);
43 interface_unlock_exclusive(thiz);
55 IAndroidNoiseSuppression *thiz = (IAndroidNoiseSuppression *) self; local
56 interface_lock_exclusive(thiz);
57 SLboolean enabled = thiz->mEnabled
109 IAndroidNoiseSuppression *thiz = (IAndroidNoiseSuppression *) self; local
119 IAndroidNoiseSuppression *thiz = (IAndroidNoiseSuppression *) self; local
126 IAndroidNoiseSuppression *thiz = (IAndroidNoiseSuppression *) self; local
    [all...]
IPlaybackRate.c 26 IPlaybackRate *thiz = (IPlaybackRate *) self; local
28 if (!(thiz->mMinRate <= rate && rate <= thiz->mMaxRate)) {
31 interface_lock_exclusive(thiz);
33 CAudioPlayer *ap = (SL_OBJECTID_AUDIOPLAYER == InterfaceToObjectID(thiz)) ?
34 (CAudioPlayer *) thiz->mThis : NULL;
36 result = android_audioPlayer_setPlaybackRateAndConstraints(ap, rate, thiz->mProperties);
44 thiz->mRate = rate;
46 interface_unlock_exclusive(thiz);
60 IPlaybackRate *thiz = (IPlaybackRate *) self local
76 IPlaybackRate *thiz = (IPlaybackRate *) self; local
115 IPlaybackRate *thiz = (IPlaybackRate *) self; local
135 IPlaybackRate *thiz = (IPlaybackRate *) self; local
162 IPlaybackRate *thiz = (IPlaybackRate *) self; local
190 IPlaybackRate *thiz = (IPlaybackRate *) self; local
    [all...]
IPrefetchStatus.c 29 IPrefetchStatus *thiz = (IPrefetchStatus *) self; local
30 interface_lock_shared(thiz);
31 SLuint32 status = thiz->mStatus;
32 interface_unlock_shared(thiz);
48 IPrefetchStatus *thiz = (IPrefetchStatus *) self; local
49 interface_lock_shared(thiz);
50 SLpermille level = thiz->mLevel;
51 interface_unlock_shared(thiz);
65 IPrefetchStatus *thiz = (IPrefetchStatus *) self; local
66 interface_lock_exclusive(thiz);
84 IPrefetchStatus *thiz = (IPrefetchStatus *) self; local
104 IPrefetchStatus *thiz = (IPrefetchStatus *) self; local
123 IPrefetchStatus *thiz = (IPrefetchStatus *) self; local
147 IPrefetchStatus *thiz = (IPrefetchStatus *) self; local
171 IPrefetchStatus *thiz = (IPrefetchStatus *) self; local
    [all...]
ISeek.c 34 ISeek *thiz = (ISeek *) self; local
35 interface_lock_exclusive(thiz);
36 thiz->mPos = pos;
38 interface_unlock_exclusive_attributes(thiz, ATTR_POSITION);
59 ISeek *thiz = (ISeek *) self; local
60 interface_lock_exclusive(thiz);
65 switch (IObjectToObjectID((thiz)->mThis)) {
67 CAudioPlayer *ap = InterfaceToCAudioPlayer(thiz);
76 CMediaPlayer *mp = InterfaceToCMediaPlayer(thiz);
89 thiz->mLoopEnabled = SL_BOOLEAN_FALSE != loopEnable; // normaliz
116 ISeek *thiz = (ISeek *) self; local
140 ISeek *thiz = (ISeek *) self; local
    [all...]
IStreamInformation.c 32 IStreamInformation *thiz = (IStreamInformation *) self; local
33 interface_lock_shared(thiz);
35 *info = thiz->mStreamInfoTable.itemAt(0).containerInfo;
36 interface_unlock_shared(thiz);
70 IStreamInformation *thiz = (IStreamInformation *) self; local
72 interface_lock_shared(thiz);
74 XAuint32 nbStreams = thiz->mStreamInfoTable.itemAt(0).containerInfo.numStreams;
78 *domain = thiz->mStreamInfoTable.itemAt(streamIndex).domain;
85 interface_unlock_shared(thiz);
107 IStreamInformation *thiz = (IStreamInformation *) self
172 IStreamInformation *thiz = (IStreamInformation *) self; local
219 IStreamInformation *thiz = (IStreamInformation *) self; local
245 IStreamInformation *thiz = (IStreamInformation *) self; local
289 IStreamInformation *thiz = (IStreamInformation *) self; local
317 IStreamInformation *thiz = (IStreamInformation *) self; local
    [all...]
IVibra.c 26 IVibra *thiz = (IVibra *) self; local
27 interface_lock_poke(thiz);
28 thiz->mVibrate = SL_BOOLEAN_FALSE != vibrate; // normalize
29 interface_unlock_poke(thiz);
43 IVibra *thiz = (IVibra *) self; local
44 interface_lock_peek(thiz);
45 SLboolean vibrate = thiz->mVibrate;
46 interface_unlock_peek(thiz);
65 IVibra *thiz = (IVibra *) self; local
66 interface_lock_poke(thiz);
83 IVibra *thiz = (IVibra *) self; local
105 IVibra *thiz = (IVibra *) self; local
127 IVibra *thiz = (IVibra *) self; local
151 IVibra *thiz = (IVibra *) self; local
    [all...]
IVirtualizer.c 42 IVirtualizer *thiz = (IVirtualizer *) self; local
43 interface_lock_exclusive(thiz);
44 thiz->mEnabled = (SLboolean) enabled;
48 if (NO_VIRTUALIZER(thiz)) {
52 thiz->mVirtualizerEffect->setEnabled((bool) thiz->mEnabled);
56 interface_unlock_exclusive(thiz);
70 IVirtualizer *thiz = (IVirtualizer *) self; local
71 interface_lock_exclusive(thiz);
72 SLboolean enabled = thiz->mEnabled
98 IVirtualizer *thiz = (IVirtualizer *) self; local
126 IVirtualizer *thiz = (IVirtualizer *) self; local
189 IVirtualizer *thiz = (IVirtualizer *) self; local
203 IVirtualizer *thiz = (IVirtualizer *) self; local
212 IVirtualizer *thiz = (IVirtualizer *) self; local
    [all...]
I3DLocation.c 29 I3DLocation *thiz = (I3DLocation *) self; local
31 interface_lock_exclusive(thiz);
32 thiz->mLocationCartesian = locationCartesian;
33 thiz->mLocationActive = CARTESIAN_SET_SPHERICAL_UNKNOWN;
34 interface_unlock_exclusive(thiz);
52 I3DLocation *thiz = (I3DLocation *) self; local
53 interface_lock_exclusive(thiz);
54 thiz->mLocationSpherical.mAzimuth = azimuth;
55 thiz->mLocationSpherical.mElevation = elevation;
56 thiz->mLocationSpherical.mDistance = distance
73 I3DLocation *thiz = (I3DLocation *) self; local
120 I3DLocation *thiz = (I3DLocation *) self; local
174 I3DLocation *thiz = (I3DLocation *) self; local
198 I3DLocation *thiz = (I3DLocation *) self; local
222 I3DLocation *thiz = (I3DLocation *) self; local
249 I3DLocation *thiz = (I3DLocation *) self; local
276 I3DLocation *thiz = (I3DLocation *) self; local
    [all...]
  /external/chromium_org/ppapi/shared_impl/
tracked_callback.cc 121 scoped_refptr<TrackedCallback> thiz(this);
234 scoped_refptr<TrackedCallback> thiz = this; local
238 tracker_->Remove(thiz);
  /frameworks/wilhelm/src/
entry.c 90 CEngine *thiz = theOneTrueEngine; local
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))
    [all...]

Completed in 132 milliseconds

12 3 4