Home
last modified time | relevance | path

Searched refs:kDevBlockPrefix (Results 1 – 2 of 2) sorted by relevance

/aosp12/system/core/fs_mgr/libdm/
H A Ddm.cpp582 static constexpr std::string_view kDevBlockPrefix("/dev/block/"); in ExtractBlockDeviceName() local
583 if (android::base::StartsWith(path, kDevBlockPrefix)) { in ExtractBlockDeviceName()
584 return path.substr(kDevBlockPrefix.length()); in ExtractBlockDeviceName()
/aosp12/system/core/fs_mgr/
H A Dfs_mgr.cpp658 static constexpr std::string_view kDevBlockPrefix("/dev/block/"); in SetReadAheadSize() local
659 if (!android::base::StartsWith(block_device, kDevBlockPrefix)) { in SetReadAheadSize()
667 if (android::base::StartsWith(block_device, kDevBlockPrefix)) { in SetReadAheadSize()
668 block_name = block_device.substr(kDevBlockPrefix.length()); in SetReadAheadSize()