/drivers/peripheral/secure_element/hdi_service/ |
H A D | se_impl.cpp | 59 uint8_t& channelNumber, SecureElementStatus& status) in openLogicalChannel() 61 return adaptor_.openLogicalChannel(aid, p2, response, channelNumber, status); in openLogicalChannel() 70 int32_t SeImpl::closeChannel(uint8_t channelNumber, SecureElementStatus& status) in closeChannel() argument 72 return adaptor_.closeChannel(channelNumber, status); in closeChannel() 58 openLogicalChannel(const std::vector<uint8_t>& aid, uint8_t p2, std::vector<uint8_t>& response, uint8_t& channelNumber, SecureElementStatus& status) openLogicalChannel() argument
|
H A D | se_impl.h | 39 uint8_t& channelNumber, SecureElementStatus& status) override; 44 int32_t closeChannel(uint8_t channelNumber, SecureElementStatus& status) override;
|
/drivers/peripheral/secure_element/sim_hdi_service/ |
H A D | secure_element_interface_service.cpp | 49 std::vector<uint8_t>& response, uint8_t& channelNumber, in openLogicalChannel() 52 return adaptor_.openLogicalChannel(aid, p2, response, channelNumber, status); in openLogicalChannel() 61 int32_t SecureElementInterfaceService::closeChannel(uint8_t channelNumber, in closeChannel() argument 64 return adaptor_.closeChannel(channelNumber, status); in closeChannel() 48 openLogicalChannel(const std::vector<uint8_t>& aid, uint8_t p2, std::vector<uint8_t>& response, uint8_t& channelNumber, OHOS::HDI::SecureElement::SimSecureElement::V1_0::SecureElementStatus& status) openLogicalChannel() argument
|
H A D | secure_element_interface_service.h | 40 uint8_t& channelNumber, OHOS::HDI::SecureElement::SimSecureElement::V1_0::SecureElementStatus& status) 46 int32_t closeChannel(uint8_t channelNumber,
|
/drivers/peripheral/secure_element/test/unittest/se_impl_test/ |
H A D | se_impl_test.cpp | 110 uint8_t channelNumber = 0; in HWTEST_F() local 113 int ret = seImpl->openLogicalChannel(aid, p2, response, channelNumber, status); in HWTEST_F() 127 uint8_t channelNumber = 0; in HWTEST_F() local 130 int ret = seImpl->openLogicalChannel(aid, p2, response, channelNumber, status); in HWTEST_F() 173 uint8_t channelNumber = 0; in HWTEST_F() local 176 int ret = seImpl->closeChannel(channelNumber, status); in HWTEST_F()
|
/drivers/peripheral/secure_element/vendor_adaptor/ |
H A D | se_vendor_adaptions.cpp | 110 std::vector<uint8_t>& response, uint8_t& channelNumber, SecureElementStatus& status)
in openLogicalChannel() 146 channelNumber = static_cast<uint8_t>(channelCreated);
in openLogicalChannel() 151 channelNumber, g_openedChannelCount);
in openLogicalChannel() 195 int32_t SeVendorAdaptions::closeChannel(uint8_t channelNumber, SecureElementStatus& status)
in closeChannel() argument 200 int ret = SecureElementCaProxy::GetInstance().VendorSecureElementCaCloseChannel(channelNumber);
in closeChannel() 206 HDF_LOGI("closeChannel: channelNumber = %{public}d", channelNumber);
in closeChannel() 207 if (channelNumber < MAX_CHANNEL_NUM - 1 && g_openedChannels[channelNumber]) {
in closeChannel() 208 g_openedChannels[channelNumber] in closeChannel() 109 openLogicalChannel(const std::vector<uint8_t>& aid, uint8_t p2, std::vector<uint8_t>& response, uint8_t& channelNumber, SecureElementStatus& status) openLogicalChannel() argument [all...] |
H A D | isecure_element_vendor.h | 38 uint8_t& channelNumber, SecureElementStatus& status) = 0;
43 virtual int32_t closeChannel(uint8_t channelNumber, SecureElementStatus& status) = 0;
|
H A D | se_vendor_adaptions.h | 38 uint8_t& channelNumber, SecureElementStatus& status) override;
43 int32_t closeChannel(uint8_t channelNumber, SecureElementStatus& status) override;
|
/drivers/peripheral/secure_element/test/unittest/se_vendor_adaptions_mock_test/ |
H A D | se_vendor_adaptions_mock_test.cpp | 90 uint8_t channelNumber = 0; in HWTEST_F() local 95 int ret = seVendorAdaptions->openLogicalChannel(aid, p2, response, channelNumber, status); in HWTEST_F() 128 uint8_t channelNumber = 0; in HWTEST_F() local 131 int ret = seVendorAdaptions->closeChannel(channelNumber, status); in HWTEST_F()
|
/drivers/peripheral/secure_element/test/unittest/se_vendor_adaptions_test/ |
H A D | se_vendor_adaptions_test.cpp | 84 uint8_t channelNumber = 0; in HWTEST_F() local 87 int ret = seVendorAdaptions->openLogicalChannel(aid, p2, response, channelNumber, status); in HWTEST_F() 114 uint8_t channelNumber = 0; in HWTEST_F() local 117 int ret = seVendorAdaptions->closeChannel(channelNumber, status); in HWTEST_F()
|
/drivers/peripheral/secure_element/vendor_sim_adaptor/ |
H A D | se_vendor_adaptions.cpp | 247 std::vector<uint8_t>& response, uint8_t& channelNumber, SecureElementStatus& status)
in openLogicalChannel() 283 channelNumber = static_cast<uint8_t>(channelCreated);
in openLogicalChannel() 326 int32_t SimSeVendorAdaptions::closeChannel(uint8_t channelNumber, SecureElementStatus& status)
in closeChannel() argument 330 int ret = VendorSimSecureElementCloseChannel(channelNumber, &tmpStatus);
in closeChannel() 336 HDF_LOGI("closeChannel: channelNumber = %{public}d", channelNumber);
in closeChannel() 337 if (channelNumber < MAX_CHANNEL_NUM - 1 && g_openedChannels[channelNumber]) {
in closeChannel() 338 g_openedChannels[channelNumber] = false;
in closeChannel() 246 openLogicalChannel(const std::vector<uint8_t>& aid, uint8_t p2, std::vector<uint8_t>& response, uint8_t& channelNumber, SecureElementStatus& status) openLogicalChannel() argument
|
H A D | se_vendor_adaptions.h | 55 uint8_t& channelNumber, OHOS::HDI::SecureElement::SimSecureElement::V1_0::SecureElementStatus& status);
60 int32_t closeChannel(uint8_t channelNumber,
|