Lines Matching refs:cache_file
59 with open(cache_file_path, 'rb') as cache_file:
61 builders[builder_name] = cPickle.load(cache_file)
160 with open(cache_file_path, 'wb') as cache_file:
161 cPickle.dump(self, cache_file, -1)
371 with open(cache_file_path, 'rb') as cache_file:
372 self._log = cache_file.read()
392 with open(cache_file_path, 'wb') as cache_file:
393 cache_file.write(data)
408 with open(cache_file_path, 'rb') as cache_file:
409 self._results = cPickle.load(cache_file)
435 with open(cache_file_path, 'wb') as cache_file:
436 cPickle.dump(data, cache_file, -1)