Lines Matching refs:remoteCb
1810 sp<hardware::camera2::ICameraDeviceCallbacks> remoteCb = getRemoteCallback(); in notifyError() local
1819 if ((remoteCb != 0) && (!skipClientNotification)) { in notifyError()
1820 remoteCb->onDeviceError(errorCode, resultExtras); in notifyError()
1825 sp<hardware::camera2::ICameraDeviceCallbacks> remoteCb = getRemoteCallback(); in notifyRepeatingRequestError() local
1827 if (remoteCb != 0) { in notifyRepeatingRequestError()
1828 remoteCb->onRepeatingRequestError(lastFrameNumber, mStreamingRequestId); in notifyRepeatingRequestError()
1839 sp<hardware::camera2::ICameraDeviceCallbacks> remoteCb = getRemoteCallback(); in notifyIdle() local
1841 if (remoteCb != 0) { in notifyIdle()
1842 remoteCb->onDeviceIdle(); in notifyIdle()
1850 sp<hardware::camera2::ICameraDeviceCallbacks> remoteCb = getRemoteCallback(); in notifyShutter() local
1851 if (remoteCb != 0) { in notifyShutter()
1852 remoteCb->onCaptureStarted(resultExtras, timestamp); in notifyShutter()
1863 sp<hardware::camera2::ICameraDeviceCallbacks> remoteCb = getRemoteCallback(); in notifyPrepared() local
1864 if (remoteCb != 0) { in notifyPrepared()
1865 remoteCb->onPrepared(streamId); in notifyPrepared()
1871 sp<hardware::camera2::ICameraDeviceCallbacks> remoteCb = getRemoteCallback(); in notifyRequestQueueEmpty() local
1872 if (remoteCb != 0) { in notifyRequestQueueEmpty()
1873 remoteCb->onRequestQueueEmpty(); in notifyRequestQueueEmpty()
1926 sp<hardware::camera2::ICameraDeviceCallbacks> remoteCb = mRemoteCallback; in onResultAvailable() local
1927 if (remoteCb != NULL) { in onResultAvailable()
1928 remoteCb->onResultReceived(result.mMetadata, result.mResultExtras, in onResultAvailable()