Lines Matching refs:text_keys
3347 info->text_keys = NULL; in LodePNGText_init()
3355 string_cleanup(&info->text_keys[i]); in LodePNGText_cleanup()
3358 lodepng_free(info->text_keys); in LodePNGText_cleanup()
3365 dest->text_keys = NULL; in LodePNGText_copy()
3369 CERROR_TRY_RETURN(lodepng_add_text(dest, source->text_keys[i], source->text_strings[i])); in LodePNGText_copy()
3376 …char ** new_keys = (char **)(lodepng_realloc(info->text_keys, sizeof(char *) * (info->text_num + 1… in lodepng_add_text_sized()
3379 if(new_keys) info->text_keys = new_keys; in lodepng_add_text_sized()
3385 info->text_keys[info->text_num - 1] = alloc_string(key); in lodepng_add_text_sized()
3387 …if(!info->text_keys[info->text_num - 1] || !info->text_strings[info->text_num - 1]) return 83; /*a… in lodepng_add_text_sized()
7059 if(lodepng_strlen(info.text_keys[i]) > 79) { in lodepng_encode()
7063 if(lodepng_strlen(info.text_keys[i]) < 1) { in lodepng_encode()
7068 …state->error = addChunk_zTXt(&outv, info.text_keys[i], info.text_strings[i], &state->encoder.zlibs… in lodepng_encode()
7072 state->error = addChunk_tEXt(&outv, info.text_keys[i], info.text_strings[i]); in lodepng_encode()
7080 const char * k = info.text_keys[i]; in lodepng_encode()