Home
last modified time | relevance | path

Searched refs:current_process_cpu_time (Results 1 – 2 of 2) sorted by relevance

/art/runtime/gc/
Dheap.cc1161 uint64_t current_process_cpu_time) const { in CalculateGcWeightedAllocatedBytes()
1163 double weight = current_process_cpu_time - gc_last_process_cpu_time_ns; in CalculateGcWeightedAllocatedBytes()
1168 uint64_t current_process_cpu_time = ProcessCpuNanoTime(); in CalculatePreGcWeightedAllocatedBytes() local
1170 CalculateGcWeightedAllocatedBytes(pre_gc_last_process_cpu_time_ns_, current_process_cpu_time); in CalculatePreGcWeightedAllocatedBytes()
1171 pre_gc_last_process_cpu_time_ns_ = current_process_cpu_time; in CalculatePreGcWeightedAllocatedBytes()
1175 uint64_t current_process_cpu_time = ProcessCpuNanoTime(); in CalculatePostGcWeightedAllocatedBytes() local
1177 CalculateGcWeightedAllocatedBytes(post_gc_last_process_cpu_time_ns_, current_process_cpu_time); in CalculatePostGcWeightedAllocatedBytes()
1178 post_gc_last_process_cpu_time_ns_ = current_process_cpu_time; in CalculatePostGcWeightedAllocatedBytes()
Dheap.h981 uint64_t current_process_cpu_time) const;