Home
last modified time | relevance | path

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

/system/libvintf/libaidlvintf_test_helper/
DVintf.cpp49 size_t lastDot = descriptor.rfind('.'); in getAidlHalInstanceNames() local
50 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()
/system/core/libutils/binder/
DString8.cpp456 const char* lastDot; in find_extension() local
466 lastDot = strrchr(lastSlash, '.'); in find_extension()
467 if (lastDot == nullptr) in find_extension()
471 return lastDot; in find_extension()
/system/libhidl/transport/
DServiceManagement.cpp113 size_t lastDot = descriptor.rfind('.'); in tryShortenProcessName() local
114 if (lastDot == std::string::npos) return; in tryShortenProcessName()
115 size_t secondDot = descriptor.rfind('.', lastDot - 1); in tryShortenProcessName()