/usr/include/elementary-1/elm_cache.h is in libelementary-dev 1.8.5-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | /**
* @defgroup Caches Caches
* @ingroup Elementary
*
* These are functions which let one fine-tune some cache values for
* Elementary applications, thus allowing for performance adjustments.
*
* @{
*/
/**
* @brief Flush all caches.
*
* Frees all data that was in cache and is not currently being used to reduce
* memory usage. This frees Edje's, Evas' and Eet's cache. This is equivalent
* to calling all of the following functions:
* @li edje_file_cache_flush()
* @li edje_collection_cache_flush()
* @li eet_clearcache()
* @li evas_image_cache_flush()
* @li evas_font_cache_flush()
* @li evas_render_dump()
* @note Evas caches are flushed for every canvas associated with a window.
*
* @ingroup Caches
*/
EAPI void elm_cache_all_flush(void);
/**
* @}
*/
|