Lines Matching refs:bundleName
480 std::string bundleName;
483 if (!LoadStringFromFile(filePath, bundleName)) {
487 bundleName.resize(strlen(bundleName.c_str()));
489 bundleName = processName;
491 auto pos = bundleName.find(":");
493 bundleName = bundleName.substr(0, pos);
495 CHECK_TRUE(!bundleName.empty(), false, "Pid or process name is illegal!");
503 bool ret = proxy->GetApplicationInfo(bundleName, AppExecFwk::GET_APPLICATION_INFO_WITH_DISABLE,
513 std::string bundleName;
516 if (!LoadStringFromFile(filePath, bundleName)) {
520 bundleName.resize(strlen(bundleName.c_str()));
522 bundleName = processName;
524 auto pos = bundleName.find(":");
526 bundleName = bundleName.substr(0, pos);
528 CHECK_TRUE(!bundleName.empty(), false, "Pid or process name is illegal!");
535 bool ret = proxy->GetApplicationInfo(bundleName, AppExecFwk::ApplicationFlag::GET_BASIC_APPLICATION_INFO,
537 CHECK_TRUE(ret, false, "%s:%s GetApplicationInfo failed!", __func__, bundleName.c_str());
540 PROFILER_LOG_INFO(LOG_CORE, "%s: check application encryped.%d : %s", __func__, isEncrypted, bundleName.c_str());