Searched refs:lastDot (Results 1 – 3 of 3) sorted by relevance
25 size_t lastDot = descriptor.rfind('.'); in getAidlHalInstanceNames() local26 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()
537 const char* lastDot; in find_extension() local548 lastDot = strrchr(lastSlash, '.'); in find_extension()549 if (lastDot == nullptr) in find_extension()553 return const_cast<char*>(lastDot); in find_extension()
121 size_t lastDot = descriptor.rfind('.'); in tryShortenProcessName() local122 if (lastDot == std::string::npos) return; in tryShortenProcessName()123 size_t secondDot = descriptor.rfind('.', lastDot - 1); in tryShortenProcessName()