Home
last modified time | relevance | path

Searched refs:findVolume (Results 1 – 8 of 8) sorted by relevance

/system/vold/model/
DDisk.h66 std::shared_ptr<VolumeBase> findVolume(const std::string& id);
DVolumeBase.h100 std::shared_ptr<VolumeBase> findVolume(const std::string& id);
DDisk.cpp143 std::shared_ptr<VolumeBase> Disk::findVolume(const std::string& id) { in findVolume() function in android::vold::Disk
148 auto stackedVol = vol->findVolume(id); in findVolume()
DVolumeBase.cpp162 std::shared_ptr<VolumeBase> VolumeBase::findVolume(const std::string& id) { in findVolume() function in android::vold::VolumeBase
/system/vold/
DVoldNativeService.cpp334 auto vol = VolumeManager::Instance()->findVolume(volId); in mount()
360 auto vol = VolumeManager::Instance()->findVolume(volId); in unmount()
372 auto vol = VolumeManager::Instance()->findVolume(volId); in format()
383 auto vol = VolumeManager::Instance()->findVolume(volId); in pathForVolId()
434 auto fromVol = VolumeManager::Instance()->findVolume(fromVolId); in moveStorage()
435 auto toVol = VolumeManager::Instance()->findVolume(toVolId); in moveStorage()
DVolumeManager.h83 std::shared_ptr<android::vold::VolumeBase> findVolume(const std::string& id);
DVolumeManager.cpp312 std::shared_ptr<android::vold::VolumeBase> VolumeManager::findVolume(const std::string& id) { in findVolume() function in VolumeManager
320 auto vol = disk->findVolume(id); in findVolume()
DIdleMaint.cpp90 PrivateVolume* vol = static_cast<PrivateVolume*>(vm->findVolume(id).get()); in addFromVolumeManager()