• Home
  • Raw
  • Download

Lines Matching refs:remoteCb

1915     sp<hardware::camera2::ICameraDeviceCallbacks> remoteCb = getRemoteCallback();  in notifyError()  local
1924 if ((remoteCb != 0) && (!skipClientNotification)) { in notifyError()
1925 remoteCb->onDeviceError(errorCode, resultExtras); in notifyError()
1930 sp<hardware::camera2::ICameraDeviceCallbacks> remoteCb = getRemoteCallback(); in notifyRepeatingRequestError() local
1932 if (remoteCb != 0) { in notifyRepeatingRequestError()
1933 remoteCb->onRepeatingRequestError(lastFrameNumber, mStreamingRequestId); in notifyRepeatingRequestError()
1942 sp<hardware::camera2::ICameraDeviceCallbacks> remoteCb = getRemoteCallback(); in notifyIdle() local
1944 if (remoteCb != 0) { in notifyIdle()
1945 remoteCb->onDeviceIdle(); in notifyIdle()
1953 sp<hardware::camera2::ICameraDeviceCallbacks> remoteCb = getRemoteCallback(); in notifyShutter() local
1954 if (remoteCb != 0) { in notifyShutter()
1955 remoteCb->onCaptureStarted(resultExtras, timestamp); in notifyShutter()
1966 sp<hardware::camera2::ICameraDeviceCallbacks> remoteCb = getRemoteCallback(); in notifyPrepared() local
1967 if (remoteCb != 0) { in notifyPrepared()
1968 remoteCb->onPrepared(streamId); in notifyPrepared()
1974 sp<hardware::camera2::ICameraDeviceCallbacks> remoteCb = getRemoteCallback(); in notifyRequestQueueEmpty() local
1975 if (remoteCb != 0) { in notifyRequestQueueEmpty()
1976 remoteCb->onRequestQueueEmpty(); in notifyRequestQueueEmpty()
2016 sp<hardware::camera2::ICameraDeviceCallbacks> remoteCb = mRemoteCallback; in onResultAvailable() local
2017 if (remoteCb != NULL) { in onResultAvailable()
2018 remoteCb->onResultReceived(result.mMetadata, result.mResultExtras, in onResultAvailable()