Home
last modified time | relevance | path

Searched refs:executorCallback_ (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/base/useriam/user_auth_framework/frameworks/native/executors/src/
H A Dexecutor.cpp100 if (executorCallback_ == nullptr) { in RegisterExecutorCallback()
101 executorCallback_ = Common::MakeShared<FrameworkExecutorCallback>(weak_from_this()); in RegisterExecutorCallback()
102 IF_FALSE_LOGE_AND_RETURN(executorCallback_ != nullptr); in RegisterExecutorCallback()
104 executorCallback = executorCallback_; in RegisterExecutorCallback()
/ohos5.0/base/useriam/user_auth_framework/frameworks/native/executors/include/
H A Dexecutor.h58 std::shared_ptr<ExecutorRegisterCallback> executorCallback_ {nullptr};
/ohos5.0/base/useriam/user_auth_framework/services/core/src/
H A Dremote_executor_proxy.cpp158 executorCallback_ = Common::MakeShared<RemoteExecutorProxyCallback>(weak_from_this()); in Start()
159 IF_FALSE_LOGE_AND_RETURN_VAL(executorCallback_ != nullptr, GENERAL_ERROR); in Start()
162 uint64_t executorIndex = CoAuthClient::GetInstance().Register(registerInfo_, executorCallback_); in Start()
/ohos5.0/base/useriam/user_auth_framework/services/core/inc/
H A Dremote_executor_proxy.h59 std::shared_ptr<ExecutorRegisterCallback> executorCallback_ = nullptr; variable