Home | History | Annotate | Download | only in camera

Lines Matching refs:table

270         create_EXIF(table, exif_tag_count, gps_tag_count, has_datetime_tag);
298 if (table[i].Value) {
299 free(table[i].Value);
328 table[position].GpsTag = TRUE;
329 table[position].Tag = GpsTagNameToValue(tag);
332 table[position].GpsTag = FALSE;
333 table[position].Tag = TagNameToValue(tag);
341 table[position].DataLength = 0;
342 table[position].Value = (char*) malloc(sizeof(char) * (value_length + 1));
344 if (table[position].Value) {
345 memcpy(table[position].Value, value, value_length + 1);
346 table[position].DataLength = value_length + 1;