Lines Matching refs:label
98 std::string label = volume.getLabel(); in bindMountVolume() local
101 std::string srcUserPath = GetFuseMountPathForUser(volumeUserId, label); in bindMountVolume()
104 std::string dstUserPath = GetFuseMountPathForUser(myUserId, label); in bindMountVolume()
118 std::string label = getLabel(); in mountFuseBindMounts() local
137 androidSource = StringPrintf("/mnt/runtime/default/%s/%d/Android", label.c_str(), userId); in mountFuseBindMounts()
147 StringPrintf("/mnt/user/%d/%s/%d/Android/data", userId, label.c_str(), userId)); in mountFuseBindMounts()
155 StringPrintf("/mnt/user/%d/%s/%d/Android/obb", userId, label.c_str(), userId)); in mountFuseBindMounts()
167 label.c_str(), userId)); in mountFuseBindMounts()
169 userId, label.c_str(), userId)); in mountFuseBindMounts()
235 std::string label = getLabel(); in unmountFuseBindMounts() local
248 StringPrintf("/mnt/installer/%d/%s/%d/Android/obb", userId, label.c_str(), userId)); in unmountFuseBindMounts()
258 userId, label.c_str(), userId)); in unmountFuseBindMounts()
266 userId, label.c_str(), userId)); in unmountFuseBindMounts()
286 StringPrintf("/mnt/user/%d/%s/%d/Android/data", userId, label.c_str(), userId)); in unmountFuseBindMounts()
296 StringPrintf("/mnt/user/%d/%s/%d/Android/obb", userId, label.c_str(), userId)); in unmountFuseBindMounts()
333 std::string label = getLabel(); in doMount() local
336 mSdcardFsDefault = StringPrintf("/mnt/runtime/default/%s", label.c_str()); in doMount()
337 mSdcardFsRead = StringPrintf("/mnt/runtime/read/%s", label.c_str()); in doMount()
338 mSdcardFsWrite = StringPrintf("/mnt/runtime/write/%s", label.c_str()); in doMount()
339 mSdcardFsFull = StringPrintf("/mnt/runtime/full/%s", label.c_str()); in doMount()
342 setPath(StringPrintf("/storage/%s", label.c_str())); in doMount()
370 label.c_str(), in doMount()
421 res = MountUserFuse(user_id, getInternalPath(), label, &fd); in doMount()
431 if (UnmountUserFuse(user_id, getInternalPath(), label) != OK) { in doMount()
455 ConfigureReadAheadForFuse(GetFuseMountPathForUser(user_id, label), 256u); in doMount()
476 ConfigureMaxDirtyRatioForFuse(GetFuseMountPathForUser(user_id, label), 40u); in doMount()
504 std::string label = getLabel(); in doUnmount() local
512 if (UnmountUserFuse(userId, getInternalPath(), label) != OK) { in doUnmount()