/base/hiviewdfx/hiview/framework/native/unified_collection/collector/ |
H A D | trace_collector_impl.cpp | 50 UCollect::TraceCaller &caller, uint32_t timeLimit, uint64_t happenTime)
in DumpTraceWithDuration() 52 if (timeLimit > INT32_MAX) {
in DumpTraceWithDuration() 55 return StartDumpTrace(caller, static_cast<int32_t>(timeLimit), happenTime);
in DumpTraceWithDuration() 64 int32_t timeLimit, uint64_t happenTime)
in StartDumpTrace() 83 if (timeLimit == FULL_TRACE_DURATION) {
in StartDumpTrace() 86 traceRetInfo = OHOS::HiviewDFX::Hitrace::DumpTrace(timeLimit, happenTime);
in StartDumpTrace() 49 DumpTraceWithDuration( UCollect::TraceCaller &caller, uint32_t timeLimit, uint64_t happenTime) DumpTraceWithDuration() argument 63 StartDumpTrace(UCollect::TraceCaller &caller, int32_t timeLimit, uint64_t happenTime) StartDumpTrace() argument
|
/base/hiviewdfx/hiview/framework/native/unified_collection/collector/inner_include/ |
H A D | trace_collector_impl.h | 32 UCollect::TraceCaller &caller, uint32_t timeLimit, uint64_t happenTime = 0) override;
37 int32_t timeLimit, uint64_t happenTime = 0);
|
/base/hiviewdfx/hicollie/frameworks/native/ |
H A D | xcollie.cpp | 44 int XCollie::SetTimerCount(const std::string &name, unsigned int timeLimit, int countLimit) in SetTimerCount() argument 46 return WatchdogInner::GetInstance().SetTimerCountTask(name, timeLimit * TO_MILLISECOND_MULTPLE, countLimit); in SetTimerCount()
|
H A D | watchdog_task.h | 38 WatchdogTask(std::string name, unsigned int timeLimit, int countLimit); 54 timeLimit(0), in WatchdogTask() 88 uint64_t timeLimit; member in OHOS::HiviewDFX::WatchdogTask
|
H A D | watchdog_task.cpp | 53 arg(nullptr), flag(0), timeLimit(0), countLimit(0) in WatchdogTask() 65 arg(nullptr), flag(0), watchdogTid(0), timeLimit(0), countLimit(0) in WatchdogTask() 76 arg(arg), flag(flag), timeLimit(0), countLimit(0) in WatchdogTask() 86 WatchdogTask::WatchdogTask(std::string name, unsigned int timeLimit, int countLimit) in WatchdogTask() argument 88 isTaskScheduled(false), isOneshotTask(false), watchdogTid(0), timeLimit(timeLimit), countLimit(countLimit) in WatchdogTask() 91 checkInterval = timeLimit / TIME_LIMIT_NUM_MAX_RATIO; in WatchdogTask() 162 XCOLLIE_LOGD("timeLimit : %{public}" PRIu64 ", countLimit : %{public}d, triggerTimes size : %{public}d", in TimerCountTask() 163 timeLimit, countLimit, size); in TimerCountTask() 167 if (timeInterval < timeLimit) { in TimerCountTask() [all...] |
H A D | watchdog_inner.h | 73 int64_t SetTimerCountTask(const std::string &name, uint64_t timeLimit, int countLimit);
|
H A D | watchdog_inner.cpp | 548 int64_t WatchdogInner::SetTimerCountTask(const std::string &name, uint64_t timeLimit, int countLimit) in SetTimerCountTask() argument 550 if (name.empty() || timeLimit == 0 || countLimit <= 0) { in SetTimerCountTask() 561 return InsertWatchdogTaskLocked(limitedName, WatchdogTask(limitedName, timeLimit, countLimit)); in SetTimerCountTask()
|
/base/hiviewdfx/hiview/interfaces/inner_api/unified_collection/utility/ |
H A D | trace_collector.h | 36 uint32_t timeLimit, uint64_t happenTime = 0) = 0;
|
/base/hiviewdfx/hicollie/interfaces/native/innerkits/include/xcollie/ |
H A D | xcollie.h | 48 // timeLimit: event occured time limt 50 int SetTimerCount(const std::string &name, unsigned int timeLimit, int countLimit);
|
/base/hiviewdfx/hiview/framework/native/unified_collection/decorator/ |
H A D | trace_decorator.cpp | 42 uint32_t timeLimit, uint64_t happenTime)
in DumpTraceWithDuration() 44 auto task = [this, &caller, &timeLimit, &happenTime] {
in DumpTraceWithDuration() 45 return traceCollector_->DumpTraceWithDuration(caller, timeLimit, happenTime);
in DumpTraceWithDuration() 41 DumpTraceWithDuration(UCollect::TraceCaller &caller, uint32_t timeLimit, uint64_t happenTime) DumpTraceWithDuration() argument
|
/base/hiviewdfx/hiview/framework/native/unified_collection/decorator/include/ |
H A D | trace_decorator.h | 113 uint32_t timeLimit, uint64_t happenTime = 0) override;
|