Home
last modified time | relevance | path

Searched refs:TaskTimeStatsType (Results 1 – 7 of 7) sorted by relevance

/arkcompiler/runtime_core/static_core/libpandabase/taskmanager/utils/
Dtask_time_stats.cpp26 TaskTimeStatsType StringToTaskTimeStats(std::string_view str) in StringToTaskTimeStats()
29 return TaskTimeStatsType::NO_STATISTICS; in StringToTaskTimeStats()
32 return TaskTimeStatsType::LIGHT_STATISTICS; in StringToTaskTimeStats()
37 std::ostream &operator<<(std::ostream &os, TaskTimeStatsType type) in operator <<()
40 case TaskTimeStatsType::NO_STATISTICS: in operator <<()
43 case TaskTimeStatsType::LIGHT_STATISTICS: in operator <<()
Dtask_time_stats.h30 enum class TaskTimeStatsType : uint8_t { enum
40 PANDA_PUBLIC_API TaskTimeStatsType StringToTaskTimeStats(std::string_view str);
41 PANDA_PUBLIC_API std::ostream &operator<<(std::ostream &os, TaskTimeStatsType type);
/arkcompiler/runtime_core/static_core/libpandabase/taskmanager/
Dtask_scheduler.h51TaskTimeStatsType taskStatsType = TaskTimeStatsType::NO_STATISTICS);
66 TaskTimeStatsType GetTaskTimeStatsType() const;
188 explicit TaskScheduler(size_t workersCount, TaskTimeStatsType taskTimeStatsType);
331 TaskTimeStatsType taskTimeStatsType_;
Dtask_scheduler.cpp23 TaskScheduler::TaskScheduler(size_t workersCount, TaskTimeStatsType taskTimeStatsType) in TaskScheduler()
27 case TaskTimeStatsType::LIGHT_STATISTICS: in TaskScheduler()
30 case TaskTimeStatsType::NO_STATISTICS: in TaskScheduler()
38 TaskScheduler *TaskScheduler::Create(size_t threadsCount, TaskTimeStatsType taskTimeStatsType) in Create()
458 return taskTimeStatsType_ != TaskTimeStatsType::NO_STATISTICS; in IsTaskLifetimeStatisticsUsed()
/arkcompiler/runtime_core/static_core/libpandabase/tests/taskmanager/
Dtask_sheduler_logging_test.cpp35 auto *tm = TaskScheduler::Create(THREADS_COUNT, TaskTimeStatsType::LIGHT_STATISTICS); in TEST()
68 auto *tm = TaskScheduler::Create(THREADS_COUNT, TaskTimeStatsType::NO_STATISTICS); in TEST()
Dtask_manager_gc_corner_case_test.cpp110 TaskScheduler::Create(COUNT_OF_WORKERS, TaskTimeStatsType::NO_STATISTICS); in SetUp()
Dtask_scheduler_test.cpp27 class TaskSchedulerTest : public testing::TestWithParam<TaskTimeStatsType> {