/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_base/include/ |
H A D | skill.h | 71 bool MatchUtd(const std::string ¶mType, const std::string &skillUriType, bool &containsUtd) const;
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/default_app/ |
H A D | default_app_mgr.h | 61 bool MatchUtd(const std::string& utd, const std::vector<Skill>& skills) const;
|
/foundation/bundlemanager/bundle_framework/test/fuzztest/fuzztest_others/defaultappmgr_fuzzer/ |
H A D | defaultappmgr_fuzzer.cpp | 69 ret = DefaultAppMgr::GetInstance().MatchUtd(type, skills); in DoSomethingInterestingWithMyAPI()
|
/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_base/src/ |
H A D | skill.cpp | 432 bool matchUtdRet = MatchUtd(type, skillUriType, containsUtd); in MatchType() 457 bool Skill::MatchUtd(const std::string ¶mType, const std::string &skillUriType, bool &containsUtd) const in MatchUtd() function in OHOS::AppExecFwk::Skill
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/default_app/ |
H A D | default_app_mgr.cpp | 632 return MatchUtd(type, skills); in IsMatch() 700 bool DefaultAppMgr::MatchUtd(const std::string& utd, const std::vector<Skill>& skills) const in MatchUtd() function in OHOS::AppExecFwk::DefaultAppMgr
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_default_app_test/ |
H A D | bms_bundle_default_app_test.cpp | 1823 * @tc.name: test MatchUtd 1824 * @tc.desc: 1.MatchUtd is false 1837 bool res = DefaultAppMgr::GetInstance().MatchUtd("application/msword", skills); in HWTEST_F() 1843 * @tc.name: test MatchUtd 1844 * @tc.desc: 1.MatchUtd is true 1857 bool res = DefaultAppMgr::GetInstance().MatchUtd("application/msword", skills); in HWTEST_F() 1863 * @tc.name: test MatchUtd 1864 * @tc.desc: 1.MatchUtd is false 1869 bool res = DefaultAppMgr::GetInstance().MatchUtd("", skills); in HWTEST_F() 2325 * @tc.name: MatchUtd [all...] |
H A D | bms_bundle_default_app_mgr_test.cpp | 934 * @tc.name: Test MatchUtd by DefaultAppMgr 935 * @tc.desc: 1.MatchUtd 946 auto ret = DefaultAppMgr::GetInstance().MatchUtd(type, skills); in HWTEST_F()
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/ |
H A D | bundle_data_mgr.h | 1066 bool MatchUtd(const Skill &skill, const std::string &utd, int32_t count) const; 1067 bool MatchUtd(const std::string &skillUtd, const std::string &wantUtd) const;
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_data_mgr_test/ |
H A D | bms_data_mgr_test.cpp | 1924 * @tc.name: test MatchUtd 1934 bool result = dataMgr->MatchUtd(skill, utd, count); in HWTEST_F() 1940 result = dataMgr->MatchUtd(skill, utd, count); in HWTEST_F() 1946 * @tc.name: test MatchUtd 1955 bool result = dataMgr->MatchUtd(skillUtd, wantUtd); in HWTEST_F()
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/ |
H A D | bundle_data_mgr.cpp | 1792 if (MatchUtd(skill, utd, count)) { in MatchShare() 1805 bool BundleDataMgr::MatchUtd(const Skill &skill, const std::string &utd, int32_t count) const in MatchUtd() function in OHOS::AppExecFwk::BundleDataMgr 1812 if (MatchUtd(skillUri.utd, utd)) { in MatchUtd() 1824 bool BundleDataMgr::MatchUtd(const std::string &skillUtd, const std::string &wantUtd) const in MatchUtd() function in OHOS::AppExecFwk::BundleDataMgr 1851 if (MatchUtd(typeUtd, wantUtd)) { in MatchTypeWithUtd()
|