Searched refs:gcTime (Results 1 - 8 of 8) sorted by relevance
/arkcompiler/runtime_core/static_core/runtime/mem/gc/g1/ |
H A D | g1_pause_tracker.cpp | 37 auto gcTime = CalculateIntervalPauseInMicros(endTimeUs); in AddPause() local 38 if (gcTime > maxGcTimeUs_) { in AddPause() 40 << ark::helpers::TimeConverter(gcTime * ark::os::time::MICRO_TO_NANO) << " > " in AddPause() 63 int64_t gcTime = 0; in CalculateIntervalPauseInMicros() local 68 gcTime += it->DurationInMicros(oldestIntervalTime); in CalculateIntervalPauseInMicros() 71 return gcTime; in CalculateIntervalPauseInMicros()
|
/arkcompiler/runtime_core/static_core/runtime/mem/gc/gc-hung/ |
H A D | gc_hung.cpp | 237 uint64_t gcTime = time::GetCurrentTimeInNanos() - startTimeNs_; in CheckOvertime() local 240 << " total_time=" << helpers::TimeConverter(gcTime); in CheckOvertime() 243 if (gcTime > std::chrono::duration_cast<ResultDuration>(msec).count()) { in CheckOvertime() 245 oss << "GcHung: GC overtime: total:" << helpers::TimeConverter(gcTime) << " cause: " << task.reason; in CheckOvertime()
|
/arkcompiler/ets_runtime/ecmascript/dfx/cpu_profiler/ |
H A D | samples_record.h | 67 uint64_t gcTime = 0;
member
|
H A D | samples_record.cpp | 160 sampleData_ += "\"gcTime\":" in StringifyStateTimeStatistic() 161 + std::to_string(profileInfo_->gcTime) + ",\"cInterpreterTime\":" in StringifyStateTimeStatistic() 311 profileInfo_->gcTime += static_cast<uint64_t>(timeDelta); in StatisticStateTime()
|
/arkcompiler/ets_runtime/ecmascript/dfx/cpu_profiler/tests/ |
H A D | samples_record_test.cpp | 185 EXPECT_EQ(profileInfo->gcTime, 101); in HWTEST_F_L0()
|
/arkcompiler/toolchain/tooling/base/ |
H A D | pt_types.cpp | 2637 int64_t gcTime; in Create() local 2638 ret = params.GetInt64("gcTime", &gcTime); in Create() 2640 profile->gcTime_ = gcTime; in Create() 2642 error += "Unknown or wrong type of 'gcTime';"; in Create() 2747 profile->SetGcTime(static_cast<int64_t>(profileInfo.gcTime)); in FromProfileInfo() 2789 result->Add("gcTime", gcTime_); in ToJson()
|
H A D | pt_types.h | 2194 Profile &SetGcTime(int64_t gcTime) in SetGcTime() argument 2196 gcTime_ = gcTime; in SetGcTime()
|
/arkcompiler/toolchain/tooling/test/ |
H A D | debugger_types_test.cpp | 2167 "tid":1000, "startTime":10, "endTime":25, "gcTime":25, "cInterpreterTime":25, "asmInterpreterTime":25, 2201 "tid":1000, "startTime":10, "endTime":25, "gcTime":25, "cInterpreterTime":25, "asmInterpreterTime":25, 2221 ret = json->GetInt("gcTime", &tmpInt);
|
Completed in 17 milliseconds