Lines Matching refs:fInfo_ptr

82         , fInfo_ptr(nullptr)
89 // fInfo_ptr will never be non-nullptr unless fPng_ptr is.
91 png_infopp info_pp = fInfo_ptr ? &fInfo_ptr : nullptr;
97 SkASSERT(nullptr == fInfo_ptr);
98 fInfo_ptr = info_ptr;
117 png_infop fInfo_ptr;
126 fInfo_ptr = nullptr;
167 png_process_data(fPng_ptr, fInfo_ptr, (png_bytep) buffer, 8);
185 png_process_data(fPng_ptr, fInfo_ptr, chunk, 8);
187 if (!process_data(fPng_ptr, fInfo_ptr, fStream, buffer, kBufferSize, length + 4)) {
231 png_process_data(fPng_ptr, fInfo_ptr, chunk, 8);
241 png_process_data(fPng_ptr, fInfo_ptr, idat, 8);
246 if (!process_data(fPng_ptr, fInfo_ptr, this->stream(), buffer, kBufferSize, length + 4)
266 if (!png_get_PLTE(fPng_ptr, fInfo_ptr, &palette, &numColors)) {
277 if (png_get_tRNS(fPng_ptr, fInfo_ptr, &alphas, &numColorsWithAlpha, nullptr)) {
845 png_get_IHDR(fPng_ptr, fInfo_ptr, &origWidth, &origHeight, &bitDepth,
872 alpha = png_get_valid(fPng_ptr, fInfo_ptr, PNG_INFO_tRNS) ?
876 if (png_get_valid(fPng_ptr, fInfo_ptr, PNG_INFO_tRNS)) {
894 if (png_get_valid(fPng_ptr, fInfo_ptr, PNG_INFO_tRNS)) {
922 auto profile = read_color_profile(fPng_ptr, fInfo_ptr);
943 if (png_get_sBIT(fPng_ptr, fInfo_ptr, &sigBits)) {
952 if (png_get_sBIT(fPng_ptr, fInfo_ptr, &sigBits)) {
966 if (png_get_sBIT(fPng_ptr, fInfo_ptr, &sigBits)) {
978 std::unique_ptr<SkStream>(fStream), fChunkReader, fPng_ptr, fInfo_ptr, bitDepth);
981 std::unique_ptr<SkStream>(fStream), fChunkReader, fPng_ptr, fInfo_ptr, bitDepth,
997 , fInfo_ptr(info_ptr)
1010 // We will never have a nullptr fInfo_ptr with a non-nullptr fPng_ptr
1011 SkASSERT(fInfo_ptr);
1012 png_destroy_read_struct((png_struct**)&fPng_ptr, (png_info**)&fInfo_ptr, nullptr);
1014 fInfo_ptr = nullptr;
1027 png_read_update_info(fPng_ptr, fInfo_ptr);
1138 // This sets fPng_ptr and fInfo_ptr to nullptr. If read_header
1140 // remain nullptr. Any future accesses to fPng_ptr and fInfo_ptr will
1153 fInfo_ptr = info_ptr;