Searched defs:text_ptr (Results 1 - 5 of 5) sorted by relevance

/vbox/src/libs/libpng-1.2.8/
H A Dpngpread.c1098 png_textp text_ptr; local
1124 text_ptr = (png_textp)png_malloc(png_ptr,
1126 text_ptr->compression = PNG_TEXT_COMPRESSION_NONE;
1127 text_ptr->key = key;
1129 text_ptr->lang = NULL;
1130 text_ptr->lang_key = NULL;
1132 text_ptr->text = text;
1134 ret = png_set_text_2(png_ptr, info_ptr, text_ptr, 1);
1137 png_free(png_ptr, text_ptr);
1197 png_textp text_ptr; local
1389 png_textp text_ptr; local
[all...]
H A Dpngget.c721 png_get_text(png_structp png_ptr, png_infop info_ptr, png_textp *text_ptr, argument
729 if (text_ptr != NULL)
730 *text_ptr = info_ptr->text;
H A Dpngset.c690 png_set_text(png_structp png_ptr, png_infop info_ptr, png_textp text_ptr, argument
694 ret=png_set_text_2(png_ptr, info_ptr, text_ptr, num_text);
700 png_set_text_2(png_structp png_ptr, png_infop info_ptr, png_textp text_ptr, argument
712 * to hold all of the incoming text_ptr objects.
756 if (text_ptr[i].key == NULL)
759 key_len = png_strlen(text_ptr[i].key);
761 if(text_ptr[i].compression <= 0)
770 if (text_ptr[i].lang != NULL)
771 lang_len = png_strlen(text_ptr[i].lang);
774 if (text_ptr[
[all...]
H A Dpngtest.c995 png_textp text_ptr; local
998 if (png_get_text(read_ptr, read_info_ptr, &text_ptr, &num_text) > 0)
1001 png_set_text(write_ptr, write_info_ptr, text_ptr, num_text);
1135 png_textp text_ptr; local
1138 if (png_get_text(read_ptr, end_info_ptr, &text_ptr, &num_text) > 0)
1141 png_set_text(write_ptr, write_end_info_ptr, text_ptr, num_text);
H A Dpngrutil.c1857 png_textp text_ptr; local
1904 text_ptr = (png_textp)png_malloc_warn(png_ptr,
1906 if (text_ptr == NULL)
1912 text_ptr->compression = PNG_TEXT_COMPRESSION_NONE;
1913 text_ptr->key = key;
1915 text_ptr->lang = NULL;
1916 text_ptr->lang_key = NULL;
1917 text_ptr->itxt_length = 0;
1919 text_ptr->text = text;
1920 text_ptr
1936 png_textp text_ptr; local
2033 png_textp text_ptr; local
[all...]

Completed in 1337 milliseconds