Home
last modified time | relevance | path

Searched refs:jsonUriObject (Results 1 - 3 of 3) sorted by relevance

/foundation/ability/ability_runtime/test/fuzztest/deeplinkreserveconfig_fuzzer/
H A Ddeeplinkreserveconfig_fuzzer.cpp90 json jsonUriObject; in DoSomethingInterestingWithMyAPI() local
91 jsonUriObject["SCHEME_NAME"] = SCHEME_NAME; in DoSomethingInterestingWithMyAPI()
92 deepLinkReserveConfig.LoadReservedUrilItem(jsonUriObject, uriList); in DoSomethingInterestingWithMyAPI()
93 jsonUriObject["HOST_NAME"] = HOST_NAME; in DoSomethingInterestingWithMyAPI()
94 deepLinkReserveConfig.LoadReservedUrilItem(jsonUriObject, uriList); in DoSomethingInterestingWithMyAPI()
95 jsonUriObject["PORT_NAME"] = PORT_NAME; in DoSomethingInterestingWithMyAPI()
96 deepLinkReserveConfig.LoadReservedUrilItem(jsonUriObject, uriList); in DoSomethingInterestingWithMyAPI()
97 jsonUriObject["PATH_NAME"] = PATH_NAME; in DoSomethingInterestingWithMyAPI()
98 deepLinkReserveConfig.LoadReservedUrilItem(jsonUriObject, uriList); in DoSomethingInterestingWithMyAPI()
99 jsonUriObject["PATH_START_WITH_NAM in DoSomethingInterestingWithMyAPI()
[all...]
/foundation/ability/ability_runtime/services/abilitymgr/src/deeplink_reserve/
H A Ddeeplink_reserve_config.cpp177 void DeepLinkReserveConfig::LoadReservedUrilItem(const nlohmann::json &jsonUriObject, std::vector<ReserveUri> &uriList) in LoadReservedUrilItem() argument
180 if (jsonUriObject.contains(SCHEME_NAME) && jsonUriObject.at(SCHEME_NAME).is_string()) { in LoadReservedUrilItem()
181 std::string schemeName = jsonUriObject.at(SCHEME_NAME).get<std::string>(); in LoadReservedUrilItem()
185 if (jsonUriObject.contains(HOST_NAME) && jsonUriObject.at(HOST_NAME).is_string()) { in LoadReservedUrilItem()
186 std::string hostName = jsonUriObject.at(HOST_NAME).get<std::string>(); in LoadReservedUrilItem()
190 if (jsonUriObject.contains(PORT_NAME) && jsonUriObject.at(PORT_NAME).is_string()) { in LoadReservedUrilItem()
191 std::string portName = jsonUriObject in LoadReservedUrilItem()
244 const nlohmann::json& jsonUriObject = uriItem.value(); LoadReservedUriList() local
[all...]
/foundation/ability/ability_runtime/services/abilitymgr/include/deeplink_reserve/
H A Ddeeplink_reserve_config.h55 void LoadReservedUrilItem(const nlohmann::json &jsonUriObject, std::vector<ReserveUri> &uriList);

Completed in 1 milliseconds