Home
last modified time | relevance | path

Searched refs:mThiz (Results 1 – 8 of 8) sorted by relevance

/frameworks/av/media/codec2/faultinjection/
DSimpleMethodState.cpp25 SimpleMethodState::Injecter::Injecter(SimpleMethodState *thiz) : mThiz(thiz) {} in Injecter()
28 mThiz->mMode = HANG; in hang()
32 mThiz->mMode = execute ? EXECUTE : NO_OP; in fail()
33 mThiz->mOverride = true; in fail()
34 mThiz->mResultOverride = err; in fail()
DC2ComponentWrapper.cpp55 C2ComponentWrapper::Injecter::Injecter(C2ComponentWrapper *thiz) : mThiz(thiz) {} in Injecter()
58 return SimpleMethodState::Injecter(&mThiz->mStartState); in start()
DSimpleMethodState.h59 SimpleMethodState *const mThiz;
DC2ComponentWrapper.h40 C2ComponentWrapper *const mThiz;
/frameworks/base/services/core/jni/tvinput/
DJTvInputHal.cpp25 mThiz = env->NewWeakGlobalRef(thiz); in JTvInputHal()
35 env->DeleteWeakGlobalRef(mThiz); in ~JTvInputHal()
36 mThiz = NULL; in ~JTvInputHal()
269 env->CallVoidMethod(mThiz, gTvInputHalClassInfo.deviceAvailable, infoObject); in onDeviceAvailable()
286 env->CallVoidMethod(mThiz, gTvInputHalClassInfo.deviceUnavailable, deviceId); in onDeviceUnavailable()
299 env->CallVoidMethod(mThiz, gTvInputHalClassInfo.streamConfigsChanged, deviceId, in onStreamConfigurationsChanged()
325 env->CallVoidMethod(mThiz, gTvInputHalClassInfo.tvMessageReceived, deviceId, in onTvMessage()
344 env->CallVoidMethod(mThiz, gTvInputHalClassInfo.firstFrameCaptured, deviceId, streamId); in onCaptured()
DJTvInputHal.h241 jweak mThiz; variable
/frameworks/av/media/codec2/components/base/include/
DSimpleC2Component.h246 std::weak_ptr<SimpleC2Component> mThiz;
/frameworks/av/media/codec2/components/base/
DSimpleC2Component.cpp666 mThiz = thiz; in setComponent()
680 std::shared_ptr<SimpleC2Component> thiz = mThiz.lock(); in onMessageReceived()