Lines Matching refs:bundleName
654 bool IsExistDebugByApp(const std::string& bundleName) in IsExistDebugByApp() argument
656 if (!IsSupportNonDebuggableApp() && !bundleName.empty() && !IsDebugableApp(bundleName)) { in IsExistDebugByApp()
675 std::string bundleName = GetProcessName(pid); in IsExistDebugByPid() local
676 if (!IsSupportNonDebuggableApp() && !IsDebugableApp(bundleName)) { in IsExistDebugByPid()
677 HLOGE("-p option only support debug aplication for %s", bundleName.c_str()); in IsExistDebugByPid()
761 std::string bundleName = ReadFileToString(filePath); in GetProcessName() local
762 return bundleName.substr(0, strlen(bundleName.c_str())); in GetProcessName()
768 bool IsDebugableApp(const std::string& bundleName) in IsDebugableApp() argument
771 if (bundleName.empty()) { in IsDebugableApp()
791 int uid = proxy->GetUidByDebugBundleName(bundleName, Constants::ANY_USERID); in IsDebugableApp()
793 HLOGE("Get application info failed, bundleName:%s, uid is %d.", bundleName.c_str(), uid); in IsDebugableApp()