Home
last modified time | relevance | path

Searched refs:gcTime (Results 1 - 8 of 8) sorted by relevance

/arkcompiler/runtime_core/static_core/runtime/mem/gc/g1/
H A Dg1_pause_tracker.cpp37 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 Dgc_hung.cpp237 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 Dsamples_record.h67 uint64_t gcTime = 0; member
H A Dsamples_record.cpp160 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 Dsamples_record_test.cpp185 EXPECT_EQ(profileInfo->gcTime, 101); in HWTEST_F_L0()
/arkcompiler/toolchain/tooling/base/
H A Dpt_types.cpp2637 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 Dpt_types.h2194 Profile &SetGcTime(int64_t gcTime) in SetGcTime() argument
2196 gcTime_ = gcTime; in SetGcTime()
/arkcompiler/toolchain/tooling/test/
H A Ddebugger_types_test.cpp2167 "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