Searched refs:TaskTimeStatsType (Results 1 – 7 of 7) sorted by relevance
26 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 <<()
30 enum class TaskTimeStatsType : uint8_t { enum40 PANDA_PUBLIC_API TaskTimeStatsType StringToTaskTimeStats(std::string_view str);41 PANDA_PUBLIC_API std::ostream &operator<<(std::ostream &os, TaskTimeStatsType type);
51 … TaskTimeStatsType taskStatsType = TaskTimeStatsType::NO_STATISTICS);66 TaskTimeStatsType GetTaskTimeStatsType() const;188 explicit TaskScheduler(size_t workersCount, TaskTimeStatsType taskTimeStatsType);331 TaskTimeStatsType taskTimeStatsType_;
23 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()
35 auto *tm = TaskScheduler::Create(THREADS_COUNT, TaskTimeStatsType::LIGHT_STATISTICS); in TEST()68 auto *tm = TaskScheduler::Create(THREADS_COUNT, TaskTimeStatsType::NO_STATISTICS); in TEST()
110 TaskScheduler::Create(COUNT_OF_WORKERS, TaskTimeStatsType::NO_STATISTICS); in SetUp()
27 class TaskSchedulerTest : public testing::TestWithParam<TaskTimeStatsType> {