/foundation/communication/nfc/frameworks/js/napi/cardEmulation/ |
H A D | nfc_napi_cardEmulation_adapter.cpp | 58 bool isDefaultService = false;
in IsDefaultService() local 77 int statusCode = hceService.IsDefaultService(element, type, isDefaultService);
in IsDefaultService() 78 if (!CheckHceStatusCodeAndThrow(env, statusCode, "isDefaultService")) {
in IsDefaultService() 83 napi_get_boolean(env, isDefaultService, &result);
in IsDefaultService()
|
/foundation/communication/nfc/interfaces/inner_api/cardEmulation/ |
H A D | hce_service.cpp | 66 ErrorCode HceService::IsDefaultService(ElementName &element, const std::string &type, bool &isDefaultService) in IsDefaultService() argument 74 return hceSession->IsDefaultService(element, type, isDefaultService); in IsDefaultService()
|
H A D | hce_service.h | 38 ErrorCode IsDefaultService(ElementName &element, const std::string &type, bool &isDefaultService);
|
H A D | hce_session_proxy.h | 44 KITS::ErrorCode IsDefaultService(ElementName &element, const std::string &type, bool &isDefaultService) override;
|
H A D | hce_session_proxy.cpp | 143 bool &isDefaultService) in IsDefaultService() 164 isDefaultService); in IsDefaultService() 142 IsDefaultService(ElementName &element, const std::string &type, bool &isDefaultService) IsDefaultService() argument
|
/foundation/communication/nfc/test/fuzztest/services_test/cardemulation_test/hceservice/hceservice_fuzzer/ |
H A D | hceservice_fuzzer.cpp | 76 bool isDefaultService = data[0] % INT_TO_BOOL_DIVISOR; in FuzzIsDefaultService() local 77 HceService::GetInstance().IsDefaultService(element, type, isDefaultService); in FuzzIsDefaultService()
|
/foundation/communication/nfc/test/unittest/services/hce_service_test/ |
H A D | hce_service_test.cpp | 119 bool isDefaultService = true; in HWTEST_F() local 120 int ret = HceService::GetInstance().IsDefaultService(element, type, isDefaultService); in HWTEST_F()
|
/foundation/communication/nfc/interfaces/inner_api/common/ |
H A D | ihce_session.h | 67 * @param isDefaultService: is default service 71 bool &isDefaultService) = 0;
|
/foundation/communication/nfc/test/fuzztest/services_test/hcesession_test/hcesession/hcesession_fuzzer/ |
H A D | hcesession_fuzzer.cpp | 46 bool isDefaultService = data[0] % INT_TO_BOOL_DIVISOR; in FuzzIsDefaultService() local 47 hceSession->IsDefaultService(element, type, isDefaultService); in FuzzIsDefaultService()
|
/foundation/communication/nfc/services/src/ipc/card_emulation/ |
H A D | hce_session_stub.cpp | 242 bool isDefaultService = false; in HandleIsDefaultService() local 243 KITS::ErrorCode ret = IsDefaultService(*(element), type, isDefaultService); in HandleIsDefaultService() 245 reply.WriteBool(isDefaultService); in HandleIsDefaultService()
|
H A D | hce_session.cpp | 106 KITS::ErrorCode HceSession::IsDefaultService(ElementName &element, const std::string &type, bool &isDefaultService) in IsDefaultService() argument 112 isDefaultService = ceService_.lock()->IsDefaultService(element, type); in IsDefaultService()
|
H A D | hce_session.h | 52 KITS::ErrorCode IsDefaultService(ElementName &element, const std::string &type, bool &isDefaultService) override;
|
/foundation/communication/nfc/test/unittest/services/hce_session_test/ |
H A D | hce_session_test.cpp | 206 bool isDefaultService = false; in HWTEST_F() local 208 KITS::ErrorCode errorCode = hceSession->IsDefaultService(element, type, isDefaultService); in HWTEST_F() 223 bool isDefaultService = false; in HWTEST_F() local 225 KITS::ErrorCode errorCode = hceSession->IsDefaultService(element, type, isDefaultService); in HWTEST_F()
|