Searched refs:MaxSizeBytes (Results 1 – 4 of 4) sorted by relevance
129 Policy.MaxSizeBytes = Size * Mult; in parseCachePruningPolicy()162 Policy.MaxSizeBytes == 0 && Policy.MaxSizeFiles == 0) { in pruneCache()267 if (Policy.MaxSizePercentageOfAvailableSpace > 0 || Policy.MaxSizeBytes > 0) { in pruneCache()277 if (Policy.MaxSizeBytes == 0) in pruneCache()278 Policy.MaxSizeBytes = AvailableSpace; in pruneCache()281 Policy.MaxSizeBytes); in pruneCache()286 << Policy.MaxSizeBytes << " bytes\n"); in pruneCache()
173 void setCacheMaxSizeBytes(uint64_t MaxSizeBytes) { in setCacheMaxSizeBytes() argument174 if (MaxSizeBytes) in setCacheMaxSizeBytes()175 CacheOptions.Policy.MaxSizeBytes = MaxSizeBytes; in setCacheMaxSizeBytes()
633 thinlto_code_gen_t cg, unsigned MaxSizeBytes) { in thinlto_codegen_set_cache_size_bytes() argument634 return unwrap(cg)->setCacheMaxSizeBytes(MaxSizeBytes); in thinlto_codegen_set_cache_size_bytes()639 uint64_t MaxSizeBytes = MaxSizeMegabytes; in thinlto_codegen_set_cache_size_megabytes() local640 MaxSizeBytes *= 1024 * 1024; in thinlto_codegen_set_cache_size_megabytes()641 return unwrap(cg)->setCacheMaxSizeBytes(MaxSizeBytes); in thinlto_codegen_set_cache_size_megabytes()
49 uint64_t MaxSizeBytes = 0; member