Home | History | Annotate | Download | only in itf

Lines Matching refs:thiz

26     IRatePitch *thiz = (IRatePitch *) self;
27 if (!(thiz->mMinRate <= rate && rate <= thiz->mMaxRate)) {
30 interface_lock_poke(thiz);
31 thiz->mRate = rate;
32 interface_unlock_poke(thiz);
47 IRatePitch *thiz = (IRatePitch *) self;
48 interface_lock_peek(thiz);
49 SLpermille rate = thiz->mRate;
50 interface_unlock_peek(thiz);
69 IRatePitch *thiz = (IRatePitch *) self;
71 SLpermille minRate = thiz->mMinRate;
72 SLpermille maxRate = thiz->mMaxRate;
91 IRatePitch *thiz = (IRatePitch *) self;
92 thiz->mItf = &IRatePitch_Itf;
93 thiz->mRate = 1000;
95 thiz->mMinRate = 500;
96 thiz->mMaxRate = 2000;