• Home
  • Raw
  • Download

Lines Matching refs:v

128 int VolumeManager::addVolume(Volume *v) {  in addVolume()  argument
129 mVolumes->push_back(v); in addVolume()
172 Volume *v = lookupVolume(label); in formatVolume() local
174 if (!v) { in formatVolume()
184 return v->formatVol(wipe); in formatVolume()
1273 Volume *v = lookupVolume(label); in mountVolume() local
1275 if (!v) { in mountVolume()
1280 return v->mountVol(); in mountVolume()
1329 Volume *v = lookupVolume(label); in shareEnabled() local
1331 if (!v) { in shareEnabled()
1341 if (v->getState() != Volume::State_Shared) { in shareEnabled()
1350 Volume *v = lookupVolume(label); in shareVolume() local
1352 if (!v) { in shareVolume()
1367 if (v->getState() == Volume::State_NoMedia) { in shareVolume()
1372 if (v->getState() != Volume::State_Idle) { in shareVolume()
1383 dev_t d = v->getShareDevice(); in shareVolume()
1413 v->handleVolumeShared(); in shareVolume()
1433 Volume *v = lookupVolume(label); in unshareVolume() local
1435 if (!v) { in unshareVolume()
1445 if (v->getState() != Volume::State_Shared) { in unshareVolume()
1464 v->handleVolumeUnshared(); in unshareVolume()
1525 Volume *v = lookupVolume(label); in unmountVolume() local
1527 if (!v) { in unmountVolume()
1532 if (v->getState() == Volume::State_NoMedia) { in unmountVolume()
1537 if (v->getState() != Volume::State_Mounted) { in unmountVolume()
1539 v->getState()); in unmountVolume()
1544 cleanupAsec(v, force); in unmountVolume()
1546 return v->unmountVol(force, revert); in unmountVolume()
1649 int VolumeManager::cleanupAsec(Volume *v, bool force) { in cleanupAsec() argument
1673 if (v == getVolumeForFile(cd->id)) { in cleanupAsec()
1683 SLOGI("Unmounting ASEC %s (dependent on %s)", cd->id, v->getLabel()); in cleanupAsec()
1692 SLOGI("Unmounting OBB %s (dependent on %s)", cd->id, v->getLabel()); in cleanupAsec()