Home
last modified time | relevance | path

Searched refs:cache_path (Results 1 - 6 of 6) sorted by relevance

/third_party/python/Lib/test/
H A Dtest_py_compile.py59 self.cache_path = importlib.util.cache_from_source(self.source_path)
79 self.assertFalse(os.path.exists(self.cache_path))
103 self.assertTrue(os.path.exists(self.cache_path))
110 self.assertFalse(os.path.exists(self.cache_path))
116 self.assertFalse(os.path.exists(self.cache_path))
144 self.assertFalse(os.path.exists(self.cache_path))
160 cache_path = importlib.util.cache_from_source(weird_path)
162 head, tail = os.path.split(cache_path)
172 self.assertTrue(os.path.exists(cache_path))
184 with open(self.cache_path, 'r
[all...]
/third_party/skia/third_party/externals/angle2/tools/android/modularization/convenience/
H A Dlookup_dep.py264 cache_path = abs_jar_path.with_suffix(abs_jar_path.suffix + '.namelist_cache')
266 cache_path = (abs_build_output_dir / 'gen' / cache_path.relative_to(_SRC_DIR))
267 if (cache_path.exists() and os.path.getmtime(cache_path) > os.path.getmtime(abs_jar_path)):
268 with open(cache_path) as f:
274 cache_path.parent.mkdir(parents=True, exist_ok=True)
275 with open(cache_path, 'w') as f:
/third_party/elfutils/debuginfod/
H A Ddebuginfod-client.c147 /* Can contain all other context, like cache_path, server_urls,
291 char *cache_path, char *interval_path, in debuginfod_clean_cache()
322 char * const dirs[] = { cache_path, NULL, }; in debuginfod_clean_cache()
836 char *cache_path = NULL; in debuginfod_query_server() local
973 cache_path: $HOME/.cache in debuginfod_query_server()
986 xalloc_str (cache_path, "%s", cache_var); in debuginfod_query_server()
991 xalloc_str (cache_path, "%s/%s", getenv ("HOME") ?: "/", cache_default_name); in debuginfod_query_server()
994 if (stat (cache_path, &st) < 0) in debuginfod_query_server()
1029 free (cache_path); in debuginfod_query_server()
1030 xalloc_str (cache_path, " in debuginfod_query_server()
290 debuginfod_clean_cache(debuginfod_client *c, char *cache_path, char *interval_path, char *max_unused_path) debuginfod_clean_cache() argument
[all...]
/third_party/mesa3d/src/util/
H A Dfossilize_db.c93 create_foz_db_filenames(char *cache_path, char *name, char **filename, in create_foz_db_filenames() argument
96 if (asprintf(filename, "%s/%s.foz", cache_path, name) == -1) in create_foz_db_filenames()
99 if (asprintf(idx_filename, "%s/%s_idx.foz", cache_path, name) == -1) { in create_foz_db_filenames()
269 foz_prepare(struct foz_db *foz_db, char *cache_path) in foz_prepare() argument
273 if (!create_foz_db_filenames(cache_path, "foz_cache", &filename, &idx_filename)) in foz_prepare()
307 if (!create_foz_db_filenames(cache_path, foz_db_filename, &filename, in foz_prepare()
H A Dfossilize_db.h86 foz_prepare(struct foz_db *foz_db, char *cache_path);
/third_party/python/Lib/importlib/
H A D_bootstrap_external.py972 def _cache_bytecode(self, source_path, cache_path, data):
980 return self.set_data(cache_path, data)

Completed in 6 milliseconds