Home
last modified time | relevance | path

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

/system/core/init/
Ddevices.cpp204 auto last_slash = path.rfind('/'); in FindPlatformDevice() local
205 if (last_slash == std::string::npos) return false; in FindPlatformDevice()
207 path.erase(last_slash); in FindPlatformDevice()
373 auto last_slash = uevent.path.rfind('/'); in GetBlockDeviceSymlinks() local
374 links.emplace_back(link_path + "/" + uevent.path.substr(last_slash + 1)); in GetBlockDeviceSymlinks()
/system/libbase/
Dlogging.cpp92 const char* last_slash = strrchr(file, '/'); in GetFileBasename() local
93 if (last_slash != nullptr) { in GetFileBasename()
94 return last_slash + 1; in GetFileBasename()