Searched defs:lpCookie (Results 1 - 2 of 2) sorted by last modified time

/frameworks/base/core/jni/
H A Dandroid_media_AudioRecord.cpp418 audiorecord_callback_cookie *lpCookie = (audiorecord_callback_cookie *)env->GetLongField( local
426 if (lpCookie) {
428 ALOGV("deleting lpCookie: %p", lpCookie);
429 while (lpCookie->busy) {
430 if (lpCookie->cond.waitRelative(sLock,
436 sAudioRecordCallBackCookies.remove(lpCookie);
437 env->DeleteGlobalRef(lpCookie->audioRecord_class);
438 env->DeleteGlobalRef(lpCookie->audioRecord_ref);
439 delete lpCookie;
[all...]
H A Dandroid_media_AudioTrack.cpp554 audiotrack_callback_cookie *lpCookie = &pJniStorage->mCallbackData; local
556 while (lpCookie->busy) {
557 if (lpCookie->cond.waitRelative(sLock,
563 sAudioTrackCallBackCookies.remove(lpCookie);
565 env->DeleteGlobalRef(lpCookie->audioTrack_class);
566 env->DeleteGlobalRef(lpCookie->audioTrack_ref);

Completed in 60 milliseconds