Lines Matching refs:mDevPath
52 mDevPath = StringPrintf("/dev/block/vold/%s", getId().c_str()); in PublicVolume()
60 status_t res = ReadMetadataUntrusted(mDevPath, &mFsType, &mFsUuid, &mFsLabel); in readMetadata()
92 return CreateDeviceNode(mDevPath, mDevice); in doCreate()
96 return DestroyDeviceNode(mDevPath); in doDestroy()
104 if (vfat::Check(mDevPath)) { in doMount()
109 if (exfat::Check(mDevPath)) { in doMount()
144 if (vfat::Mount(mDevPath, mRawPath, false, false, false, AID_ROOT, in doMount()
146 PLOG(ERROR) << getId() << " failed to mount " << mDevPath; in doMount()
150 if (exfat::Mount(mDevPath, mRawPath, AID_ROOT, in doMount()
152 PLOG(ERROR) << getId() << " failed to mount " << mDevPath; in doMount()
319 res = GetBlockDevSize(mDevPath, &size); in doFormat()
321 LOG(ERROR) << "Couldn't get device size " << mDevPath; in doFormat()
342 if (WipeBlockDevice(mDevPath) != OK) { in doFormat()
347 res = vfat::Format(mDevPath, 0); in doFormat()
349 res = exfat::Format(mDevPath); in doFormat()