Lines Matching refs:rowsDecoded
529 Result decodeAllRows(void* dst, size_t rowBytes, int* rowsDecoded) override { in decodeAllRows() argument
544 if (rowsDecoded) { in decodeAllRows()
545 *rowsDecoded = fRowsWrittenToOutput; in decodeAllRows()
568 Result decode(int* rowsDecoded) override { in decode() argument
579 if (rowsDecoded) { in decode()
580 *rowsDecoded = fRowsWrittenToOutput; in decode()
675 Result decodeAllRows(void* dst, size_t rowBytes, int* rowsDecoded) override { in decodeAllRows() argument
697 if (rowsDecoded) { in decodeAllRows()
698 *rowsDecoded = fLinesDecoded; in decodeAllRows()
715 Result decode(int* rowsDecoded) override { in decode() argument
720 if (rowsDecoded) { in decode()
721 *rowsDecoded = 0; in decode()
750 if (rowsDecoded) { in decode()
751 *rowsDecoded = rowsWrittenToOutput; in decode()
1141 int* rowsDecoded) { in onGetPixels() argument
1153 return this->decodeAllRows(dst, rowBytes, rowsDecoded); in onGetPixels()
1177 SkCodec::Result SkPngCodec::onIncrementalDecode(int* rowsDecoded) { in onIncrementalDecode() argument
1181 return this->decode(rowsDecoded); in onIncrementalDecode()