Home
last modified time | relevance | path

Searched refs:threadHandler (Results 1 – 14 of 14) sorted by relevance

/ohos5.0/base/useriam/user_auth_framework/services/base/src/
H A Dthread_handler_manager.cpp51 IF_FALSE_LOGE_AND_RETURN_VAL(threadHandler != nullptr, false); in CreateThreadHandler()
52 threadHandlerMap_.emplace(name, threadHandler); in CreateThreadHandler()
71 auto threadHandler = threadHandlerMap_[name]; in DestroyThreadHandler() local
72 IF_FALSE_LOGE_AND_RETURN(threadHandler != nullptr); in DestroyThreadHandler()
73 threadHandler->PostTask([name]() { in DestroyThreadHandler()
75 IF_FALSE_LOGE_AND_RETURN(threadHandler != nullptr); in DestroyThreadHandler()
76 threadHandler->PostTask([name]() { in DestroyThreadHandler()
82 threadHandler->Suspend(); in DestroyThreadHandler()
120 auto threadHandler = threadHandlerMap_[name]; in PostTask() local
121 IF_FALSE_LOGE_AND_RETURN(threadHandler != nullptr); in PostTask()
[all …]
H A Dfinite_state_machine_impl.cpp130 void FiniteStateMachineImpl::SetThreadHandler(const std::shared_ptr<ThreadHandler> &threadHandler) in SetThreadHandler() argument
132 threadHandler_ = threadHandler; in SetThreadHandler()
159 …initeStateMachineImpl::Inner::SetThreadHandler(const std::shared_ptr<ThreadHandler> &threadHandler) in SetThreadHandler() argument
H A Dfinite_state_machine_impl.h51 void SetThreadHandler(const std::shared_ptr<ThreadHandler> &threadHandler) override;
84 void SetThreadHandler(const std::shared_ptr<ThreadHandler> &threadHandler) override;
/ohos5.0/base/useriam/face_auth/services_ex/src/
H A Dfinite_state_machine_impl.cpp132 void FiniteStateMachineImpl::SetThreadHandler(const std::shared_ptr<ThreadHandler> &threadHandler) in SetThreadHandler() argument
134 threadHandler_ = threadHandler; in SetThreadHandler()
161 …initeStateMachineImpl::Inner::SetThreadHandler(const std::shared_ptr<ThreadHandler> &threadHandler) in SetThreadHandler() argument
/ohos5.0/base/useriam/user_auth_framework/services/remote_connect/src/
H A Dsoft_bus_client_socket.cpp152 … auto threadHandler = ThreadHandlerManager::GetInstance().GetThreadHandler(SINGLETON_THREAD_NAME); in SendKeepAliveMessage() local
153 if (threadHandler == nullptr) { in SendKeepAliveMessage()
157 threadHandler->PostTask( in SendKeepAliveMessage()
/ohos5.0/base/useriam/user_auth_framework/services/core/src/
H A Dschedule_node_builder.cpp103 …Builder> ScheduleNodeBuilder::SetThreadHandler(const std::shared_ptr<ThreadHandler> &threadHandler) in SetThreadHandler() argument
105 info_.threadHandler = threadHandler; in SetThreadHandler()
H A Dschedule_node_impl.cpp40 if (machine_ && info_.threadHandler == nullptr) { in ScheduleNodeImpl()
41 info_.threadHandler = ThreadHandler::GetSingleThreadInstance(); in ScheduleNodeImpl()
42 machine_->SetThreadHandler(info_.threadHandler); in ScheduleNodeImpl()
H A Dschedule_node_builder.h44 …std::shared_ptr<Builder> SetThreadHandler(const std::shared_ptr<ThreadHandler> &threadHandler) ove…
H A Dschedule_node_impl.h53 std::shared_ptr<ThreadHandler> threadHandler; member
/ohos5.0/base/useriam/face_auth/services_ex/inc/
H A Dfinite_state_machine_impl.h51 void SetThreadHandler(const std::shared_ptr<ThreadHandler> &threadHandler) override;
84 void SetThreadHandler(const std::shared_ptr<ThreadHandler> &threadHandler) override;
H A Dfinite_state_machine.h38 virtual void SetThreadHandler(const std::shared_ptr<ThreadHandler> &threadHandler) = 0;
/ohos5.0/base/useriam/user_auth_framework/test/fuzztest/dummy/
H A Ddummy_finite_state_machine.h39 void SetThreadHandler(const std::shared_ptr<ThreadHandler> &threadHandler) {}; in SetThreadHandler() argument
/ohos5.0/base/useriam/user_auth_framework/services/base/inc/
H A Dfinite_state_machine.h38 virtual void SetThreadHandler(const std::shared_ptr<ThreadHandler> &threadHandler) = 0;
/ohos5.0/base/useriam/user_auth_framework/services/core/inc/
H A Dschedule_node.h94 …std::shared_ptr<Builder> SetThreadHandler(const std::shared_ptr<ThreadHandler> &threadHandler) = 0;