Home
last modified time | relevance | path

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

/system/vold/
DVolumeManager.cpp175 CHECK(mInternalEmulated == nullptr); in start()
176 mInternalEmulated = std::shared_ptr<android::vold::VolumeBase>( in start()
178 mInternalEmulated->create(); in start()
187 CHECK(mInternalEmulated != nullptr); in stop()
188 mInternalEmulated->destroy(); in stop()
189 mInternalEmulated = nullptr; in stop()
312 if (mInternalEmulated != nullptr && mInternalEmulated->getId() == id) { in findVolume()
313 return mInternalEmulated; in findVolume()
599 if (mInternalEmulated != nullptr) { in reset()
600 mInternalEmulated->destroy(); in reset()
[all …]
DVolumeManager.h160 std::shared_ptr<android::vold::VolumeBase> mInternalEmulated; variable