Lines Matching refs:remoteCb
1803 sp<hardware::camera2::ICameraDeviceCallbacks> remoteCb = getRemoteCallback(); in notifyError() local
1812 if ((remoteCb != 0) && (!skipClientNotification)) { in notifyError()
1813 remoteCb->onDeviceError(errorCode, resultExtras); in notifyError()
1818 sp<hardware::camera2::ICameraDeviceCallbacks> remoteCb = getRemoteCallback(); in notifyRepeatingRequestError() local
1820 if (remoteCb != 0) { in notifyRepeatingRequestError()
1821 remoteCb->onRepeatingRequestError(lastFrameNumber, mStreamingRequestId); in notifyRepeatingRequestError()
1832 sp<hardware::camera2::ICameraDeviceCallbacks> remoteCb = getRemoteCallback(); in notifyIdle() local
1834 if (remoteCb != 0) { in notifyIdle()
1835 remoteCb->onDeviceIdle(); in notifyIdle()
1843 sp<hardware::camera2::ICameraDeviceCallbacks> remoteCb = getRemoteCallback(); in notifyShutter() local
1844 if (remoteCb != 0) { in notifyShutter()
1845 remoteCb->onCaptureStarted(resultExtras, timestamp); in notifyShutter()
1856 sp<hardware::camera2::ICameraDeviceCallbacks> remoteCb = getRemoteCallback(); in notifyPrepared() local
1857 if (remoteCb != 0) { in notifyPrepared()
1858 remoteCb->onPrepared(streamId); in notifyPrepared()
1864 sp<hardware::camera2::ICameraDeviceCallbacks> remoteCb = getRemoteCallback(); in notifyRequestQueueEmpty() local
1865 if (remoteCb != 0) { in notifyRequestQueueEmpty()
1866 remoteCb->onRequestQueueEmpty(); in notifyRequestQueueEmpty()
1919 sp<hardware::camera2::ICameraDeviceCallbacks> remoteCb = mRemoteCallback; in onResultAvailable() local
1920 if (remoteCb != NULL) { in onResultAvailable()
1921 remoteCb->onResultReceived(result.mMetadata, result.mResultExtras, in onResultAvailable()