Lines Matching refs:info
99 read_backing_store (j_common_ptr cinfo, backing_store_ptr info,
103 if (fseek(info->temp_file, file_offset, SEEK_SET))
105 if (JFREAD(info->temp_file, buffer_address, byte_count)
112 write_backing_store (j_common_ptr cinfo, backing_store_ptr info,
116 if (fseek(info->temp_file, file_offset, SEEK_SET))
118 if (JFWRITE(info->temp_file, buffer_address, byte_count)
125 close_backing_store (j_common_ptr cinfo, backing_store_ptr info)
127 fclose(info->temp_file);
155 * behind the scenes. We don't have to use info->temp_name[] at all;
160 jpeg_open_backing_store (j_common_ptr cinfo, backing_store_ptr info,
163 if ((info->temp_file = getTempFile()) == NULL)
165 info->read_backing_store = read_backing_store;
166 info->write_backing_store = write_backing_store;
167 info->close_backing_store = close_backing_store;