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