Home
last modified time | relevance | path

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

/system/libvintf/libaidlvintf_test_helper/
DVintf.cpp25 size_t lastDot = descriptor.rfind('.'); in getAidlHalInstanceNames() local
26 CHECK(lastDot != std::string::npos) << "Invalid descriptor: " << descriptor; in getAidlHalInstanceNames()
27 const std::string package = descriptor.substr(0, lastDot); in getAidlHalInstanceNames()
28 const std::string iface = descriptor.substr(lastDot + 1); in getAidlHalInstanceNames()
/system/core/libutils/
DString8.cpp537 const char* lastDot; in find_extension() local
548 lastDot = strrchr(lastSlash, '.'); in find_extension()
549 if (lastDot == nullptr) in find_extension()
553 return const_cast<char*>(lastDot); in find_extension()
/system/libhidl/transport/
DServiceManagement.cpp121 size_t lastDot = descriptor.rfind('.'); in tryShortenProcessName() local
122 if (lastDot == std::string::npos) return; in tryShortenProcessName()
123 size_t secondDot = descriptor.rfind('.', lastDot - 1); in tryShortenProcessName()