Home
last modified time | relevance | path

Searched refs:discTechList (Results 1 – 9 of 9) sorted by relevance

/ohos5.0/foundation/communication/nfc/test/unittest/services/controller_test/
H A Dexternal_deps_proxy_test.cpp63 std::vector<int> discTechList; variable
75 std::vector<int> discTechList; variable
88 std::vector<int> discTechList; variable
105 std::vector<int> discTechList; variable
120 std::vector<int> discTechList; variable
134 std::vector<int> discTechList; variable
180 std::vector<int> discTechList; variable
195 std::vector<int> discTechList; variable
210 std::vector<int> discTechList; variable
228 std::vector<int> discTechList; variable
[all …]
H A Dapp_data_parser_test.cpp60 std::vector<int> discTechList; variable
62 … std::vector<ElementName> elementName = appDataParser.GetVendorDispatchTagAppsByTech(discTechList);
74 std::vector<int> discTechList; variable
77 … std::vector<ElementName> elementName = appDataParser.GetVendorDispatchTagAppsByTech(discTechList);
89 std::vector<int> discTechList; variable
92 … std::vector<ElementName> elementName = appDataParser.GetVendorDispatchTagAppsByTech(discTechList);
118 std::vector<int> discTechList; variable
119 … std::vector<ElementName> elementName = appDataParser.GetVendorDispatchTagAppsByTech(discTechList);
/ohos5.0/foundation/communication/nfc/test/fuzztest/services_test/appdataparser_test/appdataparser/appdataparser_fuzzer/
H A Dappdataparser_fuzzer.cpp78 std::vector<int> discTechList; in FuzzGetDispatchTagAppsByTech() local
81 discTechList.push_back(timeOutArray[0]); in FuzzGetDispatchTagAppsByTech()
82 appDataParser.GetDispatchTagAppsByTech(discTechList); in FuzzGetDispatchTagAppsByTech()
88 std::vector<int> discTechList; in FuzzGetVendorDispatchTagAppsByTech1() local
91 discTechList.push_back(timeOutArray[0]); in FuzzGetVendorDispatchTagAppsByTech1()
92 appDataParser.GetVendorDispatchTagAppsByTech(discTechList); in FuzzGetVendorDispatchTagAppsByTech1()
100 std::vector<int> discTechList; in FuzzGetVendorDispatchTagAppsByTech2() local
103 discTechList.push_back(timeOutArray[0]); in FuzzGetVendorDispatchTagAppsByTech2()
105 appDataParser.GetVendorDispatchTagAppsByTech(discTechList); in FuzzGetVendorDispatchTagAppsByTech2()
/ohos5.0/foundation/communication/nfc/test/unittest/services/services_test/
H A Dapp_data_parser_test.cpp78 std::vector<int> discTechList; variable
79 ASSERT_TRUE(parser.GetDispatchTagAppsByTech(discTechList).size() == 0);
101 std::vector<int> discTechList; variable
103 discTechList.push_back(static_cast<int>(KITS::TagTechnology::NFC_A_TECH));
104 discTechList.push_back(static_cast<int>(KITS::TagTechnology::NFC_ISODEP_TECH));
105 ASSERT_TRUE(parser.GetDispatchTagAppsByTech(discTechList).size() >= 0);
/ohos5.0/foundation/communication/nfc/test/fuzztest/services_test/external_deps_test/externaldepsproxy/externaldepsproxy_fuzzer/
H A Dexternaldepsproxy_fuzzer.cpp73 std::vector<int> discTechList; in FuzzGetDispatchTagAppsByTech() local
76 discTechList.push_back(timeOutArray[0]); in FuzzGetDispatchTagAppsByTech()
77 ExternalDepsProxy::GetInstance().GetDispatchTagAppsByTech(discTechList); in FuzzGetDispatchTagAppsByTech()
204 std::vector<int> discTechList; in FuzzWriteTagFoundHiSysEvent() local
207 discTechList.push_back(timeOutArray[0]); in FuzzWriteTagFoundHiSysEvent()
208 ExternalDepsProxy::GetInstance().WriteTagFoundHiSysEvent(discTechList); in FuzzWriteTagFoundHiSysEvent()
/ohos5.0/foundation/communication/nfc/services/src/external_deps/
H A Dexternal_deps_proxy.cpp34 std::vector<ElementName> ExternalDepsProxy::GetDispatchTagAppsByTech(std::vector<int> discTechList) in GetDispatchTagAppsByTech() argument
36 return AppDataParser::GetInstance().GetDispatchTagAppsByTech(discTechList); in GetDispatchTagAppsByTech()
40 …ector<ElementName> ExternalDepsProxy::GetVendorDispatchTagAppsByTech(std::vector<int> discTechList) in GetVendorDispatchTagAppsByTech() argument
42 return AppDataParser::GetInstance().GetVendorDispatchTagAppsByTech(discTechList); in GetVendorDispatchTagAppsByTech()
H A Dapp_data_parser.h70 std::vector<ElementName> GetDispatchTagAppsByTech(std::vector<int> discTechList);
72 std::vector<ElementName> GetVendorDispatchTagAppsByTech(std::vector<int>& discTechList);
H A Dexternal_deps_proxy.h49 std::vector<ElementName> GetDispatchTagAppsByTech(std::vector<int> discTechList);
51 std::vector<ElementName> GetVendorDispatchTagAppsByTech(std::vector<int> discTechList);
H A Dapp_data_parser.cpp466 std::vector<ElementName> AppDataParser::GetDispatchTagAppsByTech(std::vector<int> discTechList) in GetDispatchTagAppsByTech() argument
469 for (size_t i = 0; i < discTechList.size(); i++) { in GetDispatchTagAppsByTech()
470 std::string discStrTech = KITS::TagInfo::GetStringTech(discTechList[i]); in GetDispatchTagAppsByTech()
505 …::vector<ElementName> AppDataParser::GetVendorDispatchTagAppsByTech(std::vector<int>& discTechList) in GetVendorDispatchTagAppsByTech() argument
513 queryApplicationByVendor_->OnQueryAppInfo(KEY_TAG_APP, discTechList, hceAppList, elements); in GetVendorDispatchTagAppsByTech()