Home | History | Annotate | Download | only in libopensles

Lines Matching defs:this

5  * you may not use this file except in compliance with the License.
26 IRatePitch *this = (IRatePitch *) self;
27 if (!(this->mMinRate <= rate && rate <= this->mMaxRate)) {
30 interface_lock_poke(this);
31 this->mRate = rate;
32 interface_unlock_poke(this);
47 IRatePitch *this = (IRatePitch *) self;
48 interface_lock_peek(this);
49 SLpermille rate = this->mRate;
50 interface_unlock_peek(this);
69 IRatePitch *this = (IRatePitch *) self;
71 SLpermille minRate = this->mMinRate;
72 SLpermille maxRate = this->mMaxRate;
91 IRatePitch *this = (IRatePitch *) self;
92 this->mItf = &IRatePitch_Itf;
93 this->mRate = 1000;
95 this->mMinRate = 500;
96 this->mMaxRate = 2000;