Home
last modified time | relevance | path

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

/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_data_mgr_test/
H A Dbms_data_mgr_test.cpp2101 std::string wantUtd = ""; variable
2102 bool result = dataMgr->MatchUtd(skillUtd, wantUtd);
2117 std::string wantUtd = ""; variable
2118 bool ret = dataMgr->MatchTypeWithUtd(wantUtd, mimeType);
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/
H A Dbundle_data_mgr.h1092 bool MatchUtd(const std::string &skillUtd, const std::string &wantUtd) const;
1093 bool MatchTypeWithUtd(const std::string &mimeType, const std::string &wantUtd) const;
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/
H A Dbundle_data_mgr.cpp1811 bool BundleDataMgr::MatchUtd(const std::string &skillUtd, const std::string &wantUtd) const in MatchUtd()
1814 …LOG_W(BMS_TAG_QUERY, "skillUtd %{public}s, wantUtd %{public}s", skillUtd.c_str(), wantUtd.c_str()); in MatchUtd()
1816 auto ret = UDMF::UtdClient::GetInstance().GetTypeDescriptor(wantUtd, wantTypeDescriptor); in MatchUtd()
1832 bool BundleDataMgr::MatchTypeWithUtd(const std::string &mimeType, const std::string &wantUtd) const in MatchTypeWithUtd()
1835 …LOG_W(BMS_TAG_QUERY, "mimeType %{public}s, wantUtd %{public}s", mimeType.c_str(), wantUtd.c_str()); in MatchTypeWithUtd()
1838 if (MatchUtd(typeUtd, wantUtd)) { in MatchTypeWithUtd()