Lines Matching defs:result

239             // 1 means partial result is not supported.
387 // This is only the result of a programmer misusing the camera2 api.
821 CaptureRequest request, CaptureResult result) {
837 * result metadata is available.
840 CaptureRequest request, TotalCaptureResult result) {
992 * This function is called every time when a result or an error is received.
993 * @param frameNumber the frame number corresponding to the result or error
1008 "result frame number %d comes out of order, should be %d + 1",
1019 * This function is called every time a result has been completed.
1024 * @param frameNumber the frame number corresponding to the result
1025 * @param result the total or partial result
1026 * @param partial {@true} if the result is partial, {@code false} if total
1028 public void updateTracker(long frameNumber, CaptureResult result, boolean partial) {
1031 // Update the total result's frame status as being successful
1037 if (result == null) {
1038 // Do not record blank results; this also means there will be no total result
1050 partials.add(result);
1059 * @param frameNumber the frame number corresponding to the result
1277 public void onResultReceived(CameraMetadataNative result,
1284 Log.v(TAG, "Received result frame " + frameNumber + " for id "
1292 result.set(CameraCharacteristics.LENS_INFO_SHADING_MAP_SIZE,
1309 mFrameNumberTracker.updateTracker(frameNumber, /*result*/null, isPartialResult);
1321 mFrameNumberTracker.updateTracker(frameNumber, /*result*/null, isPartialResult);
1331 // Either send a partial result or the final capture completed result
1334 new CaptureResult(result, request, resultExtras);
1336 // Partial result
1355 new TotalCaptureResult(result, request, resultExtras, partialResults);
1357 // Final capture result
1375 // Collect the partials for a total result; or mark the frame as totally completed