/external/libexif/libexif/ |
exif-mem.h | 2 * \brief Define the ExifMem data type and the associated functions. 3 * ExifMem defines the memory management functions used within libexif. 49 /*! Free method for ExifMem 56 /*! ExifMem define a memory allocator */ 57 typedef struct _ExifMem ExifMem; 59 /*! Create a new ExifMem 65 ExifMem *exif_mem_new (ExifMemAllocFunc a, ExifMemReallocFunc r, 67 /*! Refcount an ExifMem 69 void exif_mem_ref (ExifMem *); 71 /*! Unrefcount an ExifMem [all...] |
exif-mem.c | 33 ExifMem * 37 ExifMem *mem; 41 mem = alloc_func ? alloc_func (sizeof (ExifMem)) : 42 realloc_func (NULL, sizeof (ExifMem)); 54 exif_mem_ref (ExifMem *mem) 61 exif_mem_unref (ExifMem *mem) 69 exif_mem_free (ExifMem *mem, void *d) 79 exif_mem_alloc (ExifMem *mem, ExifLong ds) 89 exif_mem_realloc (ExifMem *mem, void *d, ExifLong ds) 94 ExifMem * [all...] |
exif-mnote-data-priv.h | 70 ExifMem *mem; 74 void exif_mnote_data_construct (ExifMnoteData *, ExifMem *mem);
|
exif-loader.h | 45 * \param[in] mem the ExifMem 48 ExifLoader *exif_loader_new_mem (ExifMem *mem);
|
exif-log.c | 35 ExifMem *mem; 71 exif_log_new_mem (ExifMem *mem) 88 ExifMem *mem = exif_mem_new_default (); 114 ExifMem *mem = log ? log->mem : NULL;
|
exif-entry.h | 90 ExifEntry *exif_entry_new_mem (ExifMem *);
|
exif-content.c | 38 ExifMem *mem; 45 ExifMem *mem = exif_mem_new_default (); 54 exif_content_new_mem (ExifMem *mem) 95 ExifMem *mem = (content && content->priv) ? content->priv->mem : NULL;
|
exif-content.h | 53 ExifContent *exif_content_new_mem (ExifMem *);
|
exif-log.h | 42 ExifLog *exif_log_new_mem (ExifMem *);
|
exif-mnote-data.c | 35 exif_mnote_data_construct (ExifMnoteData *d, ExifMem *mem) 57 ExifMem *mem = d ? d->mem : NULL;
|
exif-loader.c | 84 ExifMem *mem; 319 ExifMem *mem = exif_mem_new_default (); 328 exif_loader_new_mem (ExifMem *mem) 356 ExifMem *mem;
|
exif-data.h | 76 ExifData *exif_data_new_mem (ExifMem *); 111 * freed by the caller using the matching free function as used by the #ExifMem
|
exif-data.c | 58 ExifMem *mem; 94 ExifMem *mem = exif_mem_new_default (); 103 exif_data_new_mem (ExifMem *mem) 251 /* TODO: this is using the wrong ExifMem to free e->data */ 1028 ExifMem *mem = (data && data->priv) ? data->priv->mem : NULL; [all...] |
exif-entry.c | 43 ExifMem *mem; 111 ExifMem *mem = exif_mem_new_default (); 120 exif_entry_new_mem (ExifMem *mem) 160 ExifMem *mem = e->priv->mem; [all...] |
/external/libexif/libexif/canon/ |
exif-mnote-data-canon.h | 56 ExifMnoteData *exif_mnote_data_canon_new (ExifMem *mem, ExifDataOption o);
|
exif-mnote-data-canon.c | 360 exif_mnote_data_canon_new (ExifMem *mem, ExifDataOption o)
|
/external/libexif/libexif/fuji/ |
exif-mnote-data-fuji.h | 51 ExifMnoteData *exif_mnote_data_fuji_new (ExifMem *);
|
exif-mnote-data-fuji.c | 324 exif_mnote_data_fuji_new (ExifMem *mem)
|
/external/libexif/libexif/olympus/ |
exif-mnote-data-olympus.h | 65 ExifMnoteData *exif_mnote_data_olympus_new (ExifMem *);
|
exif-mnote-data-olympus.c | 634 exif_mnote_data_olympus_new (ExifMem *mem)
|
/external/libexif/libexif/pentax/ |
exif-mnote-data-pentax.h | 57 ExifMnoteData *exif_mnote_data_pentax_new (ExifMem *);
|
exif-mnote-data-pentax.c | 424 exif_mnote_data_pentax_new (ExifMem *mem)
|
/external/libexif/contrib/examples/ |
write-exif.c | 168 ExifMem *mem = exif_mem_new_default(); 189 /* The ExifMem and ExifEntry are now owned elsewhere */
|