Home | History | Annotate | Download | only in stress

Lines Matching defs:outputs

85     // reader. If it's true, mFirstImageReader should be used for regular and reprocess outputs.
1030 Surface[] outputs = new Surface[1];
1031 outputs[0] = output;
1035 return submitMixedCaptureBurstRequest(outputs, inputResults)[0];
1041 * @param outputs An array of output surfaces. One output surface will be used in one request
1049 private TotalCaptureResult[] submitMixedCaptureBurstRequest(Surface[] outputs,
1051 if (outputs == null || outputs.length <= 0) {
1052 throw new IllegalArgumentException("outputs must have at least 1 surface");
1053 } else if (inputResults != null && inputResults.length != outputs.length) {
1054 throw new IllegalArgumentException("The lengths of outputs and inputResults " +
1060 ArrayList<CaptureRequest> captureRequests = new ArrayList<>(outputs.length);
1064 for (int i = 0; i < outputs.length; i++) {
1073 builder.addTarget(outputs[i]);
1088 if (numReprocessCaptures == 0 || numReprocessCaptures == outputs.length) {
1089 results = new TotalCaptureResult[outputs.length];