Home | History | Annotate | Download | only in itf

Lines Matching full:thiz

26     IVibra *thiz = (IVibra *) self;
27 interface_lock_poke(thiz);
28 thiz->mVibrate = SL_BOOLEAN_FALSE != vibrate; // normalize
29 interface_unlock_poke(thiz);
43 IVibra *thiz = (IVibra *) self;
44 interface_lock_peek(thiz);
45 SLboolean vibrate = thiz->mVibrate;
46 interface_unlock_peek(thiz);
65 IVibra *thiz = (IVibra *) self;
66 interface_lock_poke(thiz);
67 thiz->mFrequency = frequency;
68 interface_unlock_poke(thiz);
83 IVibra *thiz = (IVibra *) self;
84 interface_lock_peek(thiz);
85 SLmilliHertz frequency = thiz->mFrequency;
86 interface_unlock_peek(thiz);
105 IVibra *thiz = (IVibra *) self;
106 interface_lock_poke(thiz);
107 thiz->mIntensity = intensity;
108 interface_unlock_poke(thiz);
127 IVibra *thiz = (IVibra *) self;
128 interface_lock_peek(thiz);
129 SLpermille intensity = thiz->mIntensity;
130 interface_unlock_peek(thiz);
151 IVibra *thiz = (IVibra *) self;
152 thiz->mItf = &IVibra_Itf;
153 thiz->mVibrate = SL_BOOLEAN_FALSE;
155 thiz->mFrequency = Vibra_id_descriptors[0].descriptor->minFrequency;
156 thiz->mIntensity = 1000;