Searched refs:cache_path (Results 1 – 12 of 12) sorted by relevance
/external/python/cpython3/Lib/test/ |
D | test_py_compile.py | 57 self.cache_path = importlib.util.cache_from_source(self.source_path) 77 self.assertFalse(os.path.exists(self.cache_path)) 101 self.assertTrue(os.path.exists(self.cache_path)) 108 self.assertFalse(os.path.exists(self.cache_path)) 114 self.assertFalse(os.path.exists(self.cache_path)) 142 self.assertFalse(os.path.exists(self.cache_path)) 158 cache_path = importlib.util.cache_from_source(weird_path) 160 head, tail = os.path.split(cache_path) 170 self.assertTrue(os.path.exists(cache_path)) 182 with open(self.cache_path, 'rb') as fp: [all …]
|
/external/libyuv/files/ |
D | sync_chromium.py | 100 cache_path = os.path.join(os.path.splitdrive(ROOT_DIR)[0] + os.path.sep, 103 cache_path = '/b/git-cache' 106 cache_path = get_cache_dir() 112 if cache_path: 125 spec[-1] = 'cache_dir = %r' % (cache_path,)
|
/external/webrtc/ |
D | sync_chromium.py | 131 cache_path = os.path.join(os.path.splitdrive(ROOT_DIR)[0] + os.path.sep, 134 cache_path = '/b/git-cache' 140 cache_path = get_cache_dir() 146 if cache_path: 159 spec[-1] = 'cache_dir = %r' % (cache_path,)
|
/external/autotest/server/cros/ |
D | tradefed_test.py | 618 def _instance_copyfile(self, cache_path): argument 622 filename = os.path.basename(cache_path) 623 dirname = os.path.basename(os.path.dirname(cache_path)) 628 shutil.copyfile(cache_path, instance_path) 631 def _instance_copytree(self, cache_path): argument 640 dir2 = os.path.basename(cache_path) 641 dir1 = os.path.basename(os.path.dirname(cache_path)) 643 logging.info('Copying %s to instance %s', cache_path, instance_path) 644 shutil.copytree(cache_path, instance_path) 660 cache_path = self._download_to_cache(gs_uri) [all …]
|
/external/libxcam/modules/ocl/ |
D | cl_kernel.cpp | 137 const char* cache_path = std::getenv ("XCAM_CL_KERNEL_CACHE_PATH"); in build_kernel() local 138 if (NULL == cache_path) { in build_kernel() 139 cache_path = _kernel_cache_path; in build_kernel() 145 cache_path, key_str); in build_kernel() 156 if (access (cache_path, F_OK) == -1) { in build_kernel() 157 mkdir (cache_path, S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH); in build_kernel()
|
/external/toolchain-utils/crosperf/ |
D | results_cache.py | 635 cache_path = self.FormCacheDir(self.GetCacheKeyList(False))[0] 645 return cache_path, keylist 646 return cache_path 653 cache_path = [os.path.join(cache_home, cache_dir)] 655 cache_path = [os.path.join(SCRATCH_DIR, cache_dir)] 660 cache_path.append(os.path.join(path, cache_dir)) 664 return cache_path
|
/external/ImageMagick/MagickCore/ |
D | resource.c | 1046 cache_path[MagickPathExtent]; in RelinquishUniqueFileResource() local 1060 (void) CopyMagickString(cache_path,path,MagickPathExtent); in RelinquishUniqueFileResource() 1061 AppendImageFormat("cache",cache_path); in RelinquishUniqueFileResource() 1062 if (access_utf8(cache_path,F_OK) == 0) in RelinquishUniqueFileResource() 1063 (void) ShredFile(cache_path); in RelinquishUniqueFileResource()
|
/external/bcc/src/cc/ |
D | bcc_proc.c | 265 static int load_ld_cache(const char *cache_path) { in load_ld_cache() argument 269 int ret, fd = open(cache_path, O_RDONLY); in load_ld_cache()
|
/external/python/httplib2/tests/ |
D | test_http.py | 445 cache_path = tests.get_cache_path() 446 http = httplib2.Http(cache=cache_path) 474 cache_path, httplib2.safename(httplib2.urlnorm(uri)[-1])
|
/external/python/cpython3/Lib/importlib/ |
D | _bootstrap_external.py | 758 def _cache_bytecode(self, source_path, cache_path, data): argument 766 return self.set_data(cache_path, data)
|
/external/python/setuptools/pkg_resources/ |
D | __init__.py | 1162 cache_path = self.extraction_path or get_default_cache() 1182 err.cache_path = cache_path
|
/external/python/setuptools/docs/ |
D | pkg_resources.txt | 1366 cache_path
|