/ohos5.0/foundation/bundlemanager/bundle_framework/interfaces/inner_api/bundlemgr_extension/src/ |
H A D | bms_extension_data_mgr.cpp | 42 if (bmsExtension_.bmsExtensionBundleMgr.extensionName.empty() || !handler_) { in Init() 85 …leMgrExtRegister::GetInstance().GetBundleMgrExt(bmsExtension_.bmsExtensionBundleMgr.extensionName); in CheckApiInfo() 89 …LOGE("create class: %{public}s failed", bmsExtension_.bmsExtensionBundleMgr.extensionName.c_str()); in CheckApiInfo() 125 …leMgrExtRegister::GetInstance().GetBundleMgrExt(bmsExtension_.bmsExtensionBundleMgr.extensionName); in IsRdDevice() 220 …leMgrExtRegister::GetInstance().GetBundleMgrExt(bmsExtension_.bmsExtensionBundleMgr.extensionName); in GetBundleStats() 235 …leMgrExtRegister::GetInstance().GetBundleMgrExt(bmsExtension_.bmsExtensionBundleMgr.extensionName); in ClearData() 250 …leMgrExtRegister::GetInstance().GetBundleMgrExt(bmsExtension_.bmsExtensionBundleMgr.extensionName); in ClearCache() 265 …leMgrExtRegister::GetInstance().GetBundleMgrExt(bmsExtension_.bmsExtensionBundleMgr.extensionName); in GetUidByBundleName() 280 …leMgrExtRegister::GetInstance().GetBundleMgrExt(bmsExtension_.bmsExtensionBundleMgr.extensionName); in GetBundleNameByUid() 295 …leMgrExtRegister::GetInstance().GetBundleMgrExt(bmsExtension_.bmsExtensionBundleMgr.extensionName); in VerifyActivationLock() [all …]
|
/ohos5.0/foundation/ability/ability_runtime/frameworks/native/appkit/app/ |
H A D | extension_plugin_info.cpp | 97 std::string extensionName = it->second; in ParseExtensions() local 101 item.extensionName = extensionName; in ParseExtensions() 103 auto findTask = [extensionName](ExtensionPluginItem &item) { in ParseExtensions() 104 return item.extensionName == extensionName; in ParseExtensions() 111 …::APPKIT, "Success load extension type: %{public}d, name:%{public}s", type, extensionName.c_str()); in ParseExtensions() 147 …l ExtensionPluginInfo::CheckFileType(const std::string& fileName, const std::string& extensionName) in CheckFileType() argument 151 extensionName.c_str()); in CheckFileType() 165 return LowerStr(suffixStr) == extensionName; in CheckFileType()
|
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/vulkan/ |
H A D | create_functions_vk.cpp | 215 PLUGIN_LOG_V("%s", ref.extensionName); in GetWrapper() 217 if (strcmp(ref.extensionName, VK_EXT_DEBUG_UTILS_EXTENSION_NAME) == 0) { in GetWrapper() 220 …} else if (!debugExtension && strcmp(ref.extensionName, VK_EXT_DEBUG_REPORT_EXTENSION_NAME) == 0) { in GetWrapper() 246 PLUGIN_LOG_V("%s", ref.extensionName); in CreateInstance() 248 if (strcmp(ref.extensionName, VK_EXT_DEBUG_UTILS_EXTENSION_NAME) == 0) { in CreateInstance() 251 …} else if (!debugExtension && strcmp(ref.extensionName, VK_EXT_DEBUG_REPORT_EXTENSION_NAME) == 0) { in CreateInstance() 271 return (std::strcmp(supportedExtension.extensionName, requiredExtension) == 0); in CreateInstance() 466 return std::strcmp(lhs.extensionName, rhs.extensionName) < 0; in GetWrapper() 524 value.extensionName[extension.copy( in HasExtension() 525 value.extensionName, Math::min(countof(value.extensionName), extension.size()), 0U)] = '\0'; in HasExtension() [all …]
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/default_app/ |
H A D | element.h | 27 std::string extensionName; member 33 … && this->abilityName == other.abilityName && this->extensionName == other.extensionName) {
|
/ohos5.0/foundation/filemanagement/app_file_service/tests/unittests/backup_sa/module_ipc/ |
H A D | svc_restore_deps_manager_test.cpp | 97 .extensionName = "", 105 .extensionName = "", 134 .extensionName = "", 282 .extensionName = "", 414 .extensionName = "", 422 .extensionName = "", 430 .extensionName = "", 458 .extensionName = "",
|
H A D | service_test.cpp | 1333 aInfo.extensionName = "abcdef"; 1348 aInfo.extensionName = ""; 1360 aInfo.extensionName = ""; 1366 aInfo.extensionName = ""; 1392 aInfo.extensionName = "abcdef"; 1402 aInfo.extensionName = ""; 1434 aInfo.extensionName = "abcdef"; 1444 aInfo.extensionName = ""; 1455 aInfo.extensionName = "abcdef";
|
/ohos5.0/foundation/bundlemanager/bundle_framework/interfaces/inner_api/bundlemgr_extension/include/ |
H A D | bms_extension.h | 23 std::string extensionName; member 29 return "[ extensionName = " + extensionName in ToString()
|
/ohos5.0/foundation/ability/ability_runtime/interfaces/kits/native/appkit/app/ |
H A D | extension_plugin_info.h | 27 std::string extensionName; member 65 bool CheckFileType(const std::string &fileName, const std::string &extensionName);
|
/ohos5.0/foundation/bundlemanager/bundle_framework/test/fuzztest/fuzztest_application/bundlefileutil_fuzzer/ |
H A D | bundlefileutil_fuzzer.cpp | 37 std::string extensionName (reinterpret_cast<const char*>(data), size); in DoSomethingInterestingWithMyAPI() 38 fileUtil.CheckFileType(fileName, extensionName); in DoSomethingInterestingWithMyAPI()
|
/ohos5.0/foundation/ability/ability_runtime/interfaces/inner_api/connectionobs_manager/src/ |
H A D | connection_data.cpp | 42 if (!parcel.WriteString16(Str8ToStr16(extensionName))) { in Marshalling() 89 extensionName = Str16ToStr8(strValue); in ReadFromParcel()
|
/ohos5.0/foundation/bundlemanager/bundle_framework/common/utils/src/ |
H A D | bundle_file_util.cpp | 118 bool BundleFileUtil::CheckFileType(const std::string &fileName, const std::string &extensionName) in CheckFileType() argument 120 …APP_LOGD("path is %{public}s, support suffix is %{public}s", fileName.c_str(), extensionName.c_str… in CheckFileType() 132 return LowerStr(suffixStr) == extensionName; in CheckFileType()
|
/ohos5.0/foundation/filemanagement/app_file_service/utils/include/b_json/ |
H A D | b_json_entity_caps.h | 34 std::string extensionName; member 42 std::string extensionName; member 87 arrObj["extensionName"] = item.extensionName;
|
/ohos5.0/foundation/ability/ability_runtime/test/unittest/connection_observer_test/ |
H A D | connection_observer_test.cpp | 143 connectionData.extensionName = TEST_ABILITY_NAME; 159 EXPECT_EQ(connectionData.extensionName, readedData->extensionName);
|
/ohos5.0/foundation/resourceschedule/memmgr/services/memmgrservice/src/event/ |
H A D | extension_connection_observer.cpp | 32 … data.extensionBundleName.c_str(), data.extensionModuleName.c_str(), data.extensionName.c_str(), in OnExtensionConnected() 45 … data.extensionBundleName.c_str(), data.extensionModuleName.c_str(), data.extensionName.c_str(), in OnExtensionDisconnected()
|
/ohos5.0/foundation/ability/ability_runtime/test/unittest/app_mgr_service_inner_tdd_test/ |
H A D | app_mgr_service_inner_tdd_test.cpp | 632 const string extensionName = "inputMethod"; variable 648 …appMgrServiceInner->QueryExtensionSandBox(moduleName, extensionName, bundleInfo, startMsg, dataGro… 666 const string extensionName = "inputMethod"; variable 682 …appMgrServiceInner->QueryExtensionSandBox(moduleName, extensionName, bundleInfo, startMsg, dataGro… 700 const string extensionName = "inputMethod"; variable 710 …appMgrServiceInner->QueryExtensionSandBox(moduleName, extensionName, bundleInfo, startMsg, dataGro… 728 const string extensionName = "inputMethod"; variable 738 …appMgrServiceInner->QueryExtensionSandBox(moduleName, extensionName, bundleInfo, startMsg, dataGro…
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/default_app/ |
H A D | default_app_data.cpp | 111 {EXTENSION_NAME, element.extensionName}, in to_json() 147 element.extensionName, in from_json()
|
H A D | default_app_mgr.cpp | 708 && element.abilityName.empty() && element.extensionName.empty(); in IsElementEmpty() 716 const std::string& extensionName = element.extensionName; in VerifyElementFormat() local 725 if (abilityName.empty() && extensionName.empty()) { in VerifyElementFormat() 729 if (!abilityName.empty() && !extensionName.empty()) { in VerifyElementFormat()
|
/ohos5.0/foundation/multimedia/ringtone_library/services/ringtone_restore/src/ |
H A D | ringtone_restore.cpp | 171 string extensionName = RingtoneFileUtils::GetExtensionFromPath(info.data); in OnPrepare() local 183 …storePath = destPath + "/" + baseName + "(" + to_string(repeatCount++) + ")" + "." + extensionName; in OnPrepare()
|
/ohos5.0/foundation/ability/ability_runtime/interfaces/inner_api/connectionobs_manager/include/ |
H A D | connection_data.h | 51 std::string extensionName; member
|
/ohos5.0/foundation/bundlemanager/bundle_framework/common/utils/include/ |
H A D | bundle_file_util.h | 28 static bool CheckFileType(const std::string &fileName, const std::string &extensionName);
|
/ohos5.0/base/notification/common_event_service/services/src/ |
H A D | static_subscriber_manager.cpp | 267 void StaticSubscriberManager::ParseEvents(const std::string &extensionName, const std::string &exte… in ParseEvents() argument 271 extensionName.c_str(), extensionBundleName.c_str(), extensionUserId); in ParseEvents() 301 if (commonEventObj[JSON_KEY_NAME].get<std::string>() != extensionName) { in ParseEvents() 322 StaticSubscriberInfo subscriber = { .name = extensionName, in ParseEvents()
|
/ohos5.0/foundation/bundlemanager/bundle_framework/test/systemtest/common/bms/bms_install_system_test/ |
H A D | bms_install_extension_system_test.cpp | 137 void CheckFileNotExist(const std::string &moduleName, const std::string &extensionName) const; 138 void CheckFileExist(const std::string &moduleName, const std::string &extensionName) const; 248 const std::string &moduleName, const std::string &extensionName) const in CheckFileNotExist() 251 FILE_SEPARATOR_LINE + extensionName + in CheckFileNotExist() 274 const std::string &moduleName, const std::string &extensionName) const in CheckFileExist() 277 FILE_SEPARATOR_LINE + extensionName + in CheckFileExist()
|
/ohos5.0/foundation/filemanagement/app_file_service/services/backup_sa/src/module_ipc/ |
H A D | service.cpp | 553 .extensionName = restoreInfo.extensionName, in GetRestoreBundleNames() 572 .extensionName = restoreInfo.extensionName, in GetRestoreBundleNames() 659 restoreInfo.extensionName.c_str()); in SetCurrentSessProperties() 662 (restoreInfo.extensionName.empty() && !SAUtils::IsSABundleName(restoreInfo.name))) { in SetCurrentSessProperties() 674 session_->SetBackupExtName(bundleNameIndexInfo, restoreInfo.extensionName); in SetCurrentSessProperties() 742 restoreInfo.extensionName.c_str()); in SetCurrentSessProperties() 773 session_->SetBackupExtName(bundleNameIndexInfo, restoreInfo.extensionName); in SetCurrentSessProperties() 858 info.name.c_str(), info.extensionName.c_str(), info.appIndex); in HandleCurGroupBackupInfos() 867 session_->SetBackupExtName(bundleNameIndexInfo, info.extensionName); in HandleCurGroupBackupInfos() 1325 session_->SetBackupExtName(bundleInfo.name, bundleInfo.extensionName); in HandleRestoreDepsBundle() [all …]
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_default_app_test/ |
H A D | bms_bundle_default_app_test.cpp | 103 "extensionName": "extensionName", 1076 element.extensionName= ""; 1092 element.extensionName= ""; 1108 element.extensionName= "form"; 1124 element.extensionName= "form"; 1267 element.extensionName= ""; 1290 element.extensionName= ""; 1583 element.extensionName= "form";
|
/ohos5.0/foundation/filemanagement/app_file_service/services/backup_sa/src/module_external/ |
H A D | bms_adapter.cpp | 184 backupPara.extensionName = ext.name; in GetBackupExtConfig() 279 .extensionName = bundleInfos[i].extensionName, in GenerateBundleStatsIncrease() 318 backupPara.extensionName, in GetBundleInfosForIncremental()
|