Searched refs:lastDot (Results 1 – 3 of 3) sorted by relevance
49 size_t lastDot = descriptor.rfind('.'); in getAidlHalInstanceNames() local50 CHECK(lastDot != std::string::npos) << "Invalid descriptor: " << descriptor; in getAidlHalInstanceNames()51 const std::string package = descriptor.substr(0, lastDot); in getAidlHalInstanceNames()52 const std::string iface = descriptor.substr(lastDot + 1); in getAidlHalInstanceNames()
456 const char* lastDot; in find_extension() local466 lastDot = strrchr(lastSlash, '.'); in find_extension()467 if (lastDot == nullptr) in find_extension()471 return lastDot; in find_extension()
113 size_t lastDot = descriptor.rfind('.'); in tryShortenProcessName() local114 if (lastDot == std::string::npos) return; in tryShortenProcessName()115 size_t secondDot = descriptor.rfind('.', lastDot - 1); in tryShortenProcessName()