Home | History | Annotate | Download | only in libexynosutils

Lines Matching refs:handle

200     void *handle)
202 if (handle == NULL) {
203 ALOGE("%s::handle is null", __func__);
207 if (((ExynosMutex *)handle)->getCreatedStatus() == true)
208 ((ExynosMutex *)handle)->destroy();
210 delete (ExynosMutex *)handle;
216 void *handle)
218 if (handle == NULL) {
219 ALOGE("%s::handle is null", __func__);
223 return ((ExynosMutex *)handle)->lock();
228 void *handle)
230 if (handle == NULL) {
231 ALOGE("%s::handle is null", __func__);
235 return ((ExynosMutex *)handle)->unLock();
240 void *handle)
242 if (handle == NULL) {
243 ALOGE("%s::handle is null", __func__);
247 return ((ExynosMutex *)handle)->tryLock();
252 void *handle)
254 if (handle == NULL) {
255 ALOGE("%s::handle is null", __func__);
259 return ((ExynosMutex *)handle)->getType();
263 void *handle)
265 if (handle == NULL) {
266 ALOGE("%s::handle is null", __func__);
270 return ((ExynosMutex *)handle)->getCreatedStatus();