Searched defs:dirIndex (Results 1 - 2 of 2) sorted by relevance

/frameworks/native/cmds/installd/
H A Dutils.cpp257 size_t dirIndex = location.rfind('/'); local
258 CHECK(dirIndex != std::string::npos)
261 std::string dex_dir = location.substr(0, dirIndex);
262 std::string dex_name = location.substr(dirIndex +1);
H A Ddexopt.cpp1328 unsigned long dirIndex = dex_path.rfind('/'); local
1329 if (dirIndex == std::string::npos) {
1333 std::string dex_dir = dex_path.substr(0, dirIndex);
1654 size_t dirIndex = dex_path.rfind('/'); local
1655 if (dirIndex == std::string::npos) {
1662 std::string apk_dir = dex_path.substr(0, dirIndex);

Completed in 61 milliseconds