Searched refs:providerKey (Results 1 - 4 of 4) sorted by relevance
/foundation/ability/form_fwk/test/fuzztest/formmgradapterone_fuzzer/ |
H A D | formmgradapterone_fuzzer.cpp | 51 std::string providerKey(data, size); in DoSomethingInterestingWithMyAPI() 55 formMgrAdapter.HandleEventNotify(providerKey, formIdsByProvider, formVisibleType); in DoSomethingInterestingWithMyAPI()
|
/foundation/ability/form_fwk/test/unittest/fms_form_mgr_adapter_test/ |
H A D | fms_form_mgr_adapter_test.cpp | 835 std::string providerKey = "aa";
in HWTEST_F() local 840 formMgrAdapter.HandleEventNotify(providerKey, formIdsByProvider, formVisibleType));
in HWTEST_F() 853 std::string providerKey = "aa";
in HWTEST_F() local 857 EXPECT_EQ(ERR_OK, formMgrAdapter.HandleEventNotify(providerKey, formIdsByProvider, formVisibleType));
in HWTEST_F() 1325 std::string providerKey = formRecord.bundleName + Constants::NAME_DELIMITER + formRecord.abilityName;
in HWTEST_F() local 1328 eventMaps.emplace(providerKey, matchedFormIds);
in HWTEST_F()
|
/foundation/ability/form_fwk/services/include/ |
H A D | form_mgr_adapter.h | 809 * @param providerKey The provider key string which consists of the provider bundle name and ability name. 814 ErrCode HandleEventNotify(const std::string &providerKey, const std::vector<int64_t> &formIdsByProvider,
|
/foundation/ability/form_fwk/services/src/ |
H A D | form_mgr_adapter.cpp | 1638 ErrCode FormMgrAdapter::HandleEventNotify(const std::string &providerKey, const std::vector<int64_t> &formIdsByProvider, in HandleEventNotify() argument 1642 size_t position = providerKey.find(Constants::NAME_DELIMITER); in HandleEventNotify() 1643 std::string bundleName = providerKey.substr(0, position); in HandleEventNotify() 1644 std::string abilityName = providerKey.substr(position + strlen(Constants::NAME_DELIMITER)); in HandleEventNotify() 2745 std::string providerKey = formRecord.bundleName + Constants::NAME_DELIMITER + formRecord.abilityName; in CreateHandleEventMap() local 2746 auto iter = eventMaps.find(providerKey); in CreateHandleEventMap() 2749 eventMaps.insert(std::make_pair(providerKey, formEventsByProvider)); in CreateHandleEventMap()
|
Completed in 18 milliseconds