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.c187 char *xdg_cache_home = getenv("XDG_CACHE_HOME"); in radv_builtin_cache_path() local
193 if (xdg_cache_home) { in radv_builtin_cache_path()
195 if (strlen(xdg_cache_home) + strlen(suffix) > PATH_MAX) in radv_builtin_cache_path()
198 strcpy(path, xdg_cache_home); in radv_builtin_cache_path()
/external/mesa3d/src/util/
Ddisk_cache.c166 char *xdg_cache_home = getenv("XDG_CACHE_HOME"); in disk_cache_create() local
168 if (xdg_cache_home) { in disk_cache_create()
169 if (mkdir_if_needed(xdg_cache_home) == -1) in disk_cache_create()
172 path = concatenate_and_mkdir(local, xdg_cache_home, "mesa"); in disk_cache_create()