/ohos5.0/base/useriam/user_auth_framework/services/base/src/ |
H A D | thread_handler_manager.cpp | 51 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 D | finite_state_machine_impl.cpp | 130 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 D | finite_state_machine_impl.h | 51 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 D | finite_state_machine_impl.cpp | 132 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 D | soft_bus_client_socket.cpp | 152 … 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 D | schedule_node_builder.cpp | 103 …Builder> ScheduleNodeBuilder::SetThreadHandler(const std::shared_ptr<ThreadHandler> &threadHandler) in SetThreadHandler() argument 105 info_.threadHandler = threadHandler; in SetThreadHandler()
|
H A D | schedule_node_impl.cpp | 40 if (machine_ && info_.threadHandler == nullptr) { in ScheduleNodeImpl() 41 info_.threadHandler = ThreadHandler::GetSingleThreadInstance(); in ScheduleNodeImpl() 42 machine_->SetThreadHandler(info_.threadHandler); in ScheduleNodeImpl()
|
H A D | schedule_node_builder.h | 44 …std::shared_ptr<Builder> SetThreadHandler(const std::shared_ptr<ThreadHandler> &threadHandler) ove…
|
H A D | schedule_node_impl.h | 53 std::shared_ptr<ThreadHandler> threadHandler; member
|
/ohos5.0/base/useriam/face_auth/services_ex/inc/ |
H A D | finite_state_machine_impl.h | 51 void SetThreadHandler(const std::shared_ptr<ThreadHandler> &threadHandler) override; 84 void SetThreadHandler(const std::shared_ptr<ThreadHandler> &threadHandler) override;
|
H A D | finite_state_machine.h | 38 virtual void SetThreadHandler(const std::shared_ptr<ThreadHandler> &threadHandler) = 0;
|
/ohos5.0/base/useriam/user_auth_framework/test/fuzztest/dummy/ |
H A D | dummy_finite_state_machine.h | 39 void SetThreadHandler(const std::shared_ptr<ThreadHandler> &threadHandler) {}; in SetThreadHandler() argument
|
/ohos5.0/base/useriam/user_auth_framework/services/base/inc/ |
H A D | finite_state_machine.h | 38 virtual void SetThreadHandler(const std::shared_ptr<ThreadHandler> &threadHandler) = 0;
|
/ohos5.0/base/useriam/user_auth_framework/services/core/inc/ |
H A D | schedule_node.h | 94 …std::shared_ptr<Builder> SetThreadHandler(const std::shared_ptr<ThreadHandler> &threadHandler) = 0;
|