Home
last modified time | relevance | path

Searched refs:timer_ (Results 1 – 6 of 6) sorted by relevance

/test/ostest/wukong/test_flow/src/
Dspecial_test_flow.cpp89 if (timer_ != nullptr) { in ~SpecialTestFlow()
90 timer_->Shutdown(); in ~SpecialTestFlow()
91 timer_->Unregister(timerId_); in ~SpecialTestFlow()
92 timer_ = nullptr; in ~SpecialTestFlow()
410 if (timer_ == nullptr) { in RegisterTimer()
411 timer_ = std::make_shared<Utils::Timer>("wukong"); in RegisterTimer()
412 …timerId_ = timer_->Register(std::bind(&SpecialTestFlow::TestTimeout, this), totalTime_ * ONE_MINUT… in RegisterTimer()
413 timer_->Setup(); in RegisterTimer()
Dfocus_test_flow.cpp135 if (timer_ != nullptr) { in ~FocusTestFlow()
136 timer_->Shutdown(); in ~FocusTestFlow()
137 timer_->Unregister(timerId_); in ~FocusTestFlow()
138 timer_ = nullptr; in ~FocusTestFlow()
547 if (timer_ == nullptr) { in RegisterTimer()
548 timer_ = std::make_shared<Utils::Timer>("wukong"); in RegisterTimer()
549 …timerId_ = timer_->Register(std::bind(&FocusTestFlow::TestTimeout, this), totalTime_ * ONE_MINUTE,… in RegisterTimer()
550 timer_->Setup(); in RegisterTimer()
Drandom_test_flow.cpp136 if (timer_ != nullptr) { in ~RandomTestFlow()
137 timer_->Shutdown(); in ~RandomTestFlow()
138 timer_->Unregister(timerId_); in ~RandomTestFlow()
139 timer_ = nullptr; in ~RandomTestFlow()
577 if (timer_ == nullptr) { in RegisterTimer()
578 timer_ = std::make_shared<Utils::Timer>("wukong"); in RegisterTimer()
579 …timerId_ = timer_->Register(std::bind(&RandomTestFlow::TestTimeout, this), totalTime_ * ONE_MINUTE… in RegisterTimer()
580 timer_->Setup(); in RegisterTimer()
/test/ostest/wukong/test_flow/include/
Dfocus_test_flow.h128 std::shared_ptr<Utils::Timer> timer_ = nullptr; variable
Dspecial_test_flow.h128 std::shared_ptr<Utils::Timer> timer_ = nullptr; variable
Drandom_test_flow.h133 std::shared_ptr<Utils::Timer> timer_ = nullptr; variable