Home
last modified time | relevance | path

Searched refs:mSingletonInstance (Results 1 – 2 of 2) sorted by relevance

/external/parameter-framework/upstream/test/introspection-subsystem/
DIntrospectionSubsystemObject.h57 ALWAYS_ASSERT(mSingletonInstance != nullptr, "Singleton value has not been registered"); in getSingletonInstanceValue()
58 return mSingletonInstance->mParameter; in getSingletonInstanceValue()
69 ALWAYS_ASSERT(mSingletonInstance == nullptr, "An instance is already registered"); in registerInstance()
70 mSingletonInstance = &instance; in registerInstance()
78 ALWAYS_ASSERT(mSingletonInstance == &instance, "This instance was not registered."); in unregisterInstance()
79 mSingletonInstance = nullptr; in unregisterInstance()
84 static const SubsystemObject *mSingletonInstance; variable
DIntrospectionSubsystemObject.cpp40 const SubsystemObject *SubsystemObject::mSingletonInstance = nullptr; member in parameterFramework::introspectionSubsystem::SubsystemObject