Home
last modified time | relevance | path

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

/foundation/ability/ability_runtime/test/fuzztest/deeplinkreserveconfig_fuzzer/
H A Ddeeplinkreserveconfig_fuzzer.cpp73 ReserveUri reservedUri; in DoSomethingInterestingWithMyAPI() local
76 deepLinkReserveConfig.isUriMatched(reservedUri, link); in DoSomethingInterestingWithMyAPI()
77 reservedUri.scheme = strParam; in DoSomethingInterestingWithMyAPI()
78 deepLinkReserveConfig.isUriMatched(reservedUri, link); in DoSomethingInterestingWithMyAPI()
79 reservedUri.host = strParam; in DoSomethingInterestingWithMyAPI()
80 deepLinkReserveConfig.isUriMatched(reservedUri, link); in DoSomethingInterestingWithMyAPI()
81 reservedUri.port = strParam; in DoSomethingInterestingWithMyAPI()
82 deepLinkReserveConfig.isUriMatched(reservedUri, link); in DoSomethingInterestingWithMyAPI()
83 reservedUri.path = strParam; in DoSomethingInterestingWithMyAPI()
84 deepLinkReserveConfig.isUriMatched(reservedUri, lin in DoSomethingInterestingWithMyAPI()
[all...]
/foundation/ability/ability_runtime/services/abilitymgr/src/deeplink_reserve/
H A Ddeeplink_reserve_config.cpp106 bool DeepLinkReserveConfig::isUriMatched(const ReserveUri &reservedUri, const std::string &link) in isUriMatched() argument
108 if (reservedUri.scheme.empty()) { in isUriMatched()
111 if (reservedUri.host.empty()) { in isUriMatched()
118 return link == reservedUri.scheme || StartsWith(link, reservedUri.scheme + PORT_SEPARATOR); in isUriMatched()
122 reservedUriString.append(reservedUri.scheme).append(SCHEME_SEPARATOR).append(reservedUri.host); in isUriMatched()
123 if (!reservedUri.port.empty()) { in isUriMatched()
124 reservedUriString.append(PORT_SEPARATOR).append(reservedUri.port); in isUriMatched()
126 if (reservedUri in isUriMatched()
[all...]
/foundation/ability/ability_runtime/services/abilitymgr/include/deeplink_reserve/
H A Ddeeplink_reserve_config.h54 bool isUriMatched(const ReserveUri &reservedUri, const std::string &link);

Completed in 2 milliseconds