Home
last modified time | relevance | path

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

/system/core/fs_mgr/liblp/
Dpartition_opener.cpp48 auto by_name = "/dev/block/by-name/" + path; in GetPartitionAbsolutePath()
49 if (access(by_name.c_str(), F_OK) != 0) { in GetPartitionAbsolutePath()
61 return by_name; in GetPartitionAbsolutePath()
/system/core/fastboot/device/
Dutility.cpp155 std::unique_ptr<DIR, decltype(&closedir)> by_name(opendir("/dev/block/by-name"), closedir); in ListPartitions() local
156 while ((de = readdir(by_name.get())) != nullptr) { in ListPartitions()