Home | History | Annotate | Download | only in vold

Lines Matching refs:numSectors

226 int VolumeManager::createAsec(const char *id, unsigned int numSectors,
234 if (numSectors < ((1024*1024)/512)) {
235 SLOGE("Invalid container size specified (%d sectors)", numSectors);
259 unsigned fatSize = (((numSectors * 4) / 512) + 1) * 2;
260 unsigned numImgSectors = numSectors + fatSize + 2;