Lines Matching refs:DefaultCallContext
19 DefaultCallContext::~DefaultCallContext() = default;
21 DefaultCallContext::DefaultCallContext() = default;
23 DefaultCallContext::DefaultCallContext(const DefaultCallContext& other) noexcept : succeeded_(other.succeeded_)
37 DefaultCallContext::DefaultCallContext(DefaultCallContext&& other) noexcept
41 DefaultCallContext& DefaultCallContext::operator=(const DefaultCallContext& other) noexcept
62 DefaultCallContext& DefaultCallContext::operator=(DefaultCallContext&& other) noexcept
72 const CORE_NS::IInterface* DefaultCallContext::GetInterface(const BASE_NS::Uid& uid) const
83 CORE_NS::IInterface* DefaultCallContext::GetInterface(const BASE_NS::Uid& uid)
86 return const_cast<CORE_NS::IInterface*>(me->DefaultCallContext::GetInterface(uid));
89 BASE_NS::shared_ptr<CORE_NS::IInterface> DefaultCallContext::GetClone() const
91 BASE_NS::shared_ptr<DefaultCallContext> p(new DefaultCallContext(*this));
95 bool DefaultCallContext::DefineParameter(BASE_NS::string_view name, const IAny::Ptr& value)
104 bool DefaultCallContext::Set(BASE_NS::string_view name, const IAny& value)
114 IAny::Ptr DefaultCallContext::Get(BASE_NS::string_view name) const
126 BASE_NS::array_view<const ArgumentNameValue> DefaultCallContext::GetParameters() const
131 bool DefaultCallContext::Succeeded() const
136 bool DefaultCallContext::DefineResult(const IAny::Ptr& value)
142 bool DefaultCallContext::SetResult(const IAny& value)
151 bool DefaultCallContext::SetResult()
161 IAny::Ptr DefaultCallContext::GetResult() const
166 void DefaultCallContext::Reset()
171 void DefaultCallContext::ReportError(BASE_NS::string_view error)