Lines Matching defs:thiz
29 IMIDITime *thiz = (IMIDITime *) self;
30 SLuint32 duration = thiz->mDuration;
43 IMIDITime *thiz = (IMIDITime *) self;
45 if (!(position < thiz->mDuration)) {
48 interface_lock_poke(thiz);
49 thiz->mPosition = position;
50 interface_unlock_poke(thiz);
65 IMIDITime *thiz = (IMIDITime *) self;
66 interface_lock_peek(thiz);
67 SLuint32 position = thiz->mPosition;
68 interface_unlock_peek(thiz);
81 IMIDITime *thiz = (IMIDITime *) self;
83 SLuint32 duration = thiz->mDuration;
87 interface_lock_exclusive(thiz);
88 thiz->mStartTick = startTick;
89 thiz->mNumTicks = numTicks;
90 interface_unlock_exclusive(thiz);
106 IMIDITime *thiz = (IMIDITime *) self;
107 interface_lock_shared(thiz);
108 SLuint32 startTick = thiz->mStartTick;
109 SLuint32 numTicks = thiz->mNumTicks;
110 interface_unlock_shared(thiz);
130 IMIDITime *thiz = (IMIDITime *) self;
131 thiz->mItf = &IMIDITime_Itf;
132 thiz->mDuration = 0;
133 thiz->mPosition = 0;
134 thiz->mStartTick = 0;
135 thiz->mNumTicks = 0;