Home
last modified time | relevance | path

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

/system/extras/preopt2cachename/
Dpreopt2cachename.cpp50 size_t file_location_start = file_location.rfind('/'); in ExtractAPKName() local
51 if (file_location_start == std::string::npos) { in ExtractAPKName()
55 if (ext_start == std::string::npos || ext_start < file_location_start) { in ExtractAPKName()
58 std::string apk_name = file_location.substr(file_location_start + 1, in ExtractAPKName()
59 ext_start - file_location_start); in ExtractAPKName()