Searched refs:MaxSizeBytes (Results 1 – 5 of 5) sorted by relevance
130 Policy.MaxSizeBytes = Size * Mult; in parseCachePruningPolicy()164 Policy.MaxSizeBytes == 0 && Policy.MaxSizeFiles == 0) { in pruneCache()280 if (Policy.MaxSizePercentageOfAvailableSpace > 0 || Policy.MaxSizeBytes > 0) { in pruneCache()290 if (Policy.MaxSizeBytes == 0) in pruneCache()291 Policy.MaxSizeBytes = AvailableSpace; in pruneCache()294 Policy.MaxSizeBytes); in pruneCache()299 << Policy.MaxSizeBytes << " bytes\n"); in pruneCache()
172 void setCacheMaxSizeBytes(uint64_t MaxSizeBytes) { in setCacheMaxSizeBytes() argument173 if (MaxSizeBytes) in setCacheMaxSizeBytes()174 CacheOptions.Policy.MaxSizeBytes = MaxSizeBytes; in setCacheMaxSizeBytes()
627 thinlto_code_gen_t cg, unsigned MaxSizeBytes) { in thinlto_codegen_set_cache_size_bytes() argument628 return unwrap(cg)->setCacheMaxSizeBytes(MaxSizeBytes); in thinlto_codegen_set_cache_size_bytes()633 uint64_t MaxSizeBytes = MaxSizeMegabytes; in thinlto_codegen_set_cache_size_megabytes() local634 MaxSizeBytes *= 1024 * 1024; in thinlto_codegen_set_cache_size_megabytes()635 return unwrap(cg)->setCacheMaxSizeBytes(MaxSizeBytes); in thinlto_codegen_set_cache_size_megabytes()
50 uint64_t MaxSizeBytes = 0; member
38 policy.MaxSizeBytes = properties.GetLLDBIndexCacheMaxByteSize(); in GetLLDBIndexCachePolicy()