Home
last modified time | relevance | path

Searched refs:xdg_cache_home (Results 1 – 2 of 2) sorted by relevance

/external/mesa3d/src/amd/vulkan/
Dradv_meta.c220 char *xdg_cache_home = getenv("XDG_CACHE_HOME"); in radv_builtin_cache_path() local
226 if (xdg_cache_home) { in radv_builtin_cache_path()
228 if (strlen(xdg_cache_home) + strlen(suffix) > PATH_MAX) in radv_builtin_cache_path()
231 strcpy(path, xdg_cache_home); in radv_builtin_cache_path()
/external/mesa3d/src/util/
Ddisk_cache.c229 char *xdg_cache_home = getenv("XDG_CACHE_HOME"); in disk_cache_create() local
231 if (xdg_cache_home) { in disk_cache_create()
232 if (mkdir_if_needed(xdg_cache_home) == -1) in disk_cache_create()
235 path = concatenate_and_mkdir(local, xdg_cache_home, CACHE_DIR_NAME); in disk_cache_create()