Lines Matching refs:remoteCb
975 sp<hardware::camera2::ICameraDeviceCallbacks> remoteCb = getRemoteCallback(); in notifyError() local
977 if (remoteCb != 0) { in notifyError()
978 remoteCb->onDeviceError(errorCode, resultExtras); in notifyError()
983 sp<hardware::camera2::ICameraDeviceCallbacks> remoteCb = getRemoteCallback(); in notifyRepeatingRequestError() local
985 if (remoteCb != 0) { in notifyRepeatingRequestError()
986 remoteCb->onRepeatingRequestError(lastFrameNumber); in notifyRepeatingRequestError()
995 sp<hardware::camera2::ICameraDeviceCallbacks> remoteCb = getRemoteCallback(); in notifyIdle() local
997 if (remoteCb != 0) { in notifyIdle()
998 remoteCb->onDeviceIdle(); in notifyIdle()
1006 sp<hardware::camera2::ICameraDeviceCallbacks> remoteCb = getRemoteCallback(); in notifyShutter() local
1007 if (remoteCb != 0) { in notifyShutter()
1008 remoteCb->onCaptureStarted(resultExtras, timestamp); in notifyShutter()
1015 sp<hardware::camera2::ICameraDeviceCallbacks> remoteCb = getRemoteCallback(); in notifyPrepared() local
1016 if (remoteCb != 0) { in notifyPrepared()
1017 remoteCb->onPrepared(streamId); in notifyPrepared()
1054 sp<hardware::camera2::ICameraDeviceCallbacks> remoteCb = mRemoteCallback; in onResultAvailable() local
1055 if (remoteCb != NULL) { in onResultAvailable()
1056 remoteCb->onResultReceived(result.mMetadata, result.mResultExtras); in onResultAvailable()