Home
last modified time | relevance | path

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

/system/core/init/
Ddevices.cpp212 auto last_slash = path.rfind('/'); in FindPlatformDevice() local
213 if (last_slash == std::string::npos) return false; in FindPlatformDevice()
215 path.erase(last_slash); in FindPlatformDevice()
381 auto last_slash = uevent.path.rfind('/'); in GetBlockDeviceSymlinks() local
382 links.emplace_back(link_path + "/" + uevent.path.substr(last_slash + 1)); in GetBlockDeviceSymlinks()
/system/libbase/
Dlogging.cpp87 const char* last_slash = strrchr(file, '/'); in GetFileBasename() local
88 if (last_slash != nullptr) { in GetFileBasename()
89 return last_slash + 1; in GetFileBasename()