/drivers/peripheral/secure_element/test/unittest/se_impl_test/ |
H A D | se_impl_test.cpp | 107 std::vector<uint8_t> aid; in HWTEST_F() local 113 int ret = seImpl->openLogicalChannel(aid, p2, response, channelNumber, status); in HWTEST_F() 124 std::vector<uint8_t> aid = {0x001, 0x002, 0x003}; in HWTEST_F() local 130 int ret = seImpl->openLogicalChannel(aid, p2, response, channelNumber, status); in HWTEST_F() 141 const std::vector<uint8_t> aid; in HWTEST_F() local 146 int ret = seImpl->openBasicChannel(aid, p2, response, status); in HWTEST_F() 157 const std::vector<uint8_t> aid = {0x001, 0x002, 0x003}; in HWTEST_F() local 162 int ret = seImpl->openBasicChannel(aid, p2, response, status); in HWTEST_F()
|
/drivers/peripheral/secure_element/hdi_service/ |
H A D | se_impl.cpp | 58 int32_t SeImpl::openLogicalChannel(const std::vector<uint8_t>& aid, uint8_t p2, std::vector<uint8_t>& response, in openLogicalChannel() argument 61 return adaptor_.openLogicalChannel(aid, p2, response, channelNumber, status); in openLogicalChannel() 64 int32_t SeImpl::openBasicChannel(const std::vector<uint8_t>& aid, uint8_t p2, std::vector<uint8_t>& response, in openBasicChannel() argument 67 return adaptor_.openBasicChannel(aid, p2, response, status); in openBasicChannel()
|
H A D | se_impl.h | 38 int32_t openLogicalChannel(const std::vector<uint8_t>& aid, uint8_t p2, std::vector<uint8_t>& response, 41 int32_t openBasicChannel(const std::vector<uint8_t>& aid, uint8_t p2, std::vector<uint8_t>& response,
|
/drivers/peripheral/secure_element/test/unittest/mock/ |
H A D | mock.cpp | 57 int SecureElementCaProxy::VendorSecureElementCaOpenLogicalChannel(uint8_t *aid, uint32_t len, uint8_t p2, in VendorSecureElementCaOpenLogicalChannel() argument 64 return p->VendorSecureElementCaOpenLogicalChannel(aid, len, p2, rsp, rspLen, channelNum); in VendorSecureElementCaOpenLogicalChannel() 67 int SecureElementCaProxy::VendorSecureElementCaOpenBasicChannel(uint8_t *aid, uint32_t len, uint8_t *rsp, in VendorSecureElementCaOpenBasicChannel() argument 74 return p->VendorSecureElementCaOpenBasicChannel(aid, len, rsp, rspLen); in VendorSecureElementCaOpenBasicChannel()
|
H A D | mock.h | 45 MOCK_METHOD(int, VendorSecureElementCaOpenLogicalChannel, (uint8_t *aid, uint32_t len, uint8_t p2, 47 MOCK_METHOD(int, VendorSecureElementCaOpenBasicChannel, (uint8_t *aid, uint32_t len, uint8_t *rsp,
|
/drivers/peripheral/secure_element/sim_hdi_service/ |
H A D | secure_element_interface_service.cpp | 48 int32_t SecureElementInterfaceService::openLogicalChannel(const std::vector<uint8_t>& aid, uint8_t p2, in openLogicalChannel() argument 52 return adaptor_.openLogicalChannel(aid, p2, response, channelNumber, status); in openLogicalChannel() 55 int32_t SecureElementInterfaceService::openBasicChannel(const std::vector<uint8_t>& aid, uint8_t p2, in openBasicChannel() argument 58 return adaptor_.openBasicChannel(aid, p2, response, status); in openBasicChannel()
|
H A D | secure_element_interface_service.h | 39 int32_t openLogicalChannel(const std::vector<uint8_t>& aid, uint8_t p2, std::vector<uint8_t>& response, 43 int32_t openBasicChannel(const std::vector<uint8_t>& aid, uint8_t p2, std::vector<uint8_t>& response,
|
/drivers/peripheral/secure_element/secure_element_ca_proxy/ |
H A D | secure_element_ca_proxy.h | 54 uint8_t *aid, uint32_t len, uint8_t p2, uint8_t *rsp, uint32_t *rspLen, uint32_t *channelNum) const; 55 int VendorSecureElementCaOpenBasicChannel(uint8_t *aid, uint32_t len, uint8_t *rsp, uint32_t *rspLen) const; 97 using VendorSecureElementCaOpenLogicalChannelT = int (*)(uint8_t *aid, uint32_t len, uint8_t p2, uint8_t *rsp, 99 using VendorSecureElementCaOpenBasicChannelT = int (*)(uint8_t *aid, uint32_t len, uint8_t *rsp, uint32_t *rspLen);
|
H A D | secure_element_ca_proxy.cpp | 118 uint8_t *aid, uint32_t len, uint8_t p2, uint8_t *rsp, uint32_t *rspLen, uint32_t *channelNum) const in VendorSecureElementCaOpenLogicalChannel() 120 CA_FUNCTION_INVOKE_RETURN(vendorSecureElementCaOpenLogicalChannelFunc_, aid, len, p2, rsp, rspLen, channelNum); in VendorSecureElementCaOpenLogicalChannel() 124 uint8_t *aid, uint32_t len, uint8_t *rsp, uint32_t *rspLen) const in VendorSecureElementCaOpenBasicChannel() 126 CA_FUNCTION_INVOKE_RETURN(vendorSecureElementCaOpenBasicChannelFunc_, aid, len, rsp, rspLen); in VendorSecureElementCaOpenBasicChannel() 117 VendorSecureElementCaOpenLogicalChannel( uint8_t *aid, uint32_t len, uint8_t p2, uint8_t *rsp, uint32_t *rspLen, uint32_t *channelNum) const VendorSecureElementCaOpenLogicalChannel() argument 123 VendorSecureElementCaOpenBasicChannel( uint8_t *aid, uint32_t len, uint8_t *rsp, uint32_t *rspLen) const VendorSecureElementCaOpenBasicChannel() argument
|
/drivers/peripheral/secure_element/test/unittest/se_vendor_adaptions_mock_test/ |
H A D | se_vendor_adaptions_mock_test.cpp | 87 std::vector<uint8_t> aid = {0x001, 0x002, 0x003}; in HWTEST_F() local 95 int ret = seVendorAdaptions->openLogicalChannel(aid, p2, response, channelNumber, status); in HWTEST_F() 108 const std::vector<uint8_t> aid = {0x001, 0x002, 0x003}; in HWTEST_F() local 113 int ret = seVendorAdaptions->openBasicChannel(aid, p2, response, status); in HWTEST_F()
|
/drivers/peripheral/secure_element/vendor_sim_adaptor/ |
H A D | se_vendor_adaptions.h | 54 int32_t openLogicalChannel(const std::vector<uint8_t>& aid, uint8_t p2, std::vector<uint8_t>& response,
57 int32_t openBasicChannel(const std::vector<uint8_t>& aid, uint8_t p2, std::vector<uint8_t>& response,
106 using VendorSimSecureElementOpenLogicalChannelT = int (*)(uint8_t *aid, uint32_t len, uint8_t p2, uint8_t *rsp,
108 using VendorSimSecureElementOpenBasicChannelT = int (*)(uint8_t *aid, uint32_t len, uint8_t *rsp,
137 int VendorSimSecureElementOpenLogicalChannel(const std::vector<uint8_t>& aid, uint8_t p2,
139 int VendorSimSecureElementOpenBasicChannel(uint8_t *aid, uint32_t len, uint8_t *rsp, uint32_t *rspLen, int *status);
|
H A D | se_vendor_adaptions.cpp | 149 const std::vector<uint8_t>& aid, uint8_t p2, std::vector<uint8_t>& response, uint32_t *channelNum, int *status)
in VendorSimSecureElementOpenLogicalChannel() 152 uint32_t aidLen = aid.size();
in VendorSimSecureElementOpenLogicalChannel() 163 arrAid[i] = aid[i];
in VendorSimSecureElementOpenLogicalChannel() 182 uint8_t *aid, uint32_t len, uint8_t *rsp, uint32_t *rspLen, int *status)
in VendorSimSecureElementOpenBasicChannel() 184 SIM_FUNCTION_INVOKE_RETURN(vendorSimSecureElementOpenBasicChannelFunc_, aid, len, rsp, rspLen, status);
in VendorSimSecureElementOpenBasicChannel() 246 int32_t SimSeVendorAdaptions::openLogicalChannel(const std::vector<uint8_t>& aid, uint8_t p2,
in openLogicalChannel() argument 251 if (aid.empty()) {
in openLogicalChannel() 252 HDF_LOGE("aid is null");
in openLogicalChannel() 259 int ret = VendorSimSecureElementOpenLogicalChannel(aid, p2, response, &channelCreated, &tmpStatus);
in openLogicalChannel() 290 int32_t SimSeVendorAdaptions::openBasicChannel(const std::vector<uint8_t>& aid, uint8_ argument 148 VendorSimSecureElementOpenLogicalChannel( const std::vector<uint8_t>& aid, uint8_t p2, std::vector<uint8_t>& response, uint32_t *channelNum, int *status) VendorSimSecureElementOpenLogicalChannel() argument 181 VendorSimSecureElementOpenBasicChannel( uint8_t *aid, uint32_t len, uint8_t *rsp, uint32_t *rspLen, int *status) VendorSimSecureElementOpenBasicChannel() argument [all...] |
/drivers/peripheral/secure_element/vendor_adaptor/ |
H A D | se_vendor_adaptions.cpp | 109 int32_t SeVendorAdaptions::openLogicalChannel(const std::vector<uint8_t>& aid, uint8_t p2,
in openLogicalChannel() argument 114 if (aid.empty()) {
in openLogicalChannel() 115 HDF_LOGE("aid is null");
in openLogicalChannel() 124 (uint8_t *)&aid[0], aid.size(), p2, res, &resLen, &channelCreated);
in openLogicalChannel() 156 int32_t SeVendorAdaptions::openBasicChannel(const std::vector<uint8_t>& aid, uint8_t p2, std::vector<uint8_t>& response,
in openBasicChannel() argument 161 if (aid.empty()) {
in openBasicChannel() 162 HDF_LOGE("aid is null");
in openBasicChannel() 170 (uint8_t *)&aid[0], aid in openBasicChannel() [all...] |
H A D | isecure_element_vendor.h | 37 virtual int32_t openLogicalChannel(const std::vector<uint8_t>& aid, uint8_t p2, std::vector<uint8_t>& response,
40 virtual int32_t openBasicChannel(const std::vector<uint8_t>& aid, uint8_t p2, std::vector<uint8_t>& response,
|
H A D | se_vendor_adaptions.h | 37 int32_t openLogicalChannel(const std::vector<uint8_t>& aid, uint8_t p2, std::vector<uint8_t>& response,
40 int32_t openBasicChannel(const std::vector<uint8_t>& aid, uint8_t p2, std::vector<uint8_t>& response,
|
/drivers/peripheral/secure_element/test/unittest/se_vendor_adaptions_test/ |
H A D | se_vendor_adaptions_test.cpp | 81 std::vector<uint8_t> aid = {0x001, 0x002, 0x003}; in HWTEST_F() local 87 int ret = seVendorAdaptions->openLogicalChannel(aid, p2, response, channelNumber, status); in HWTEST_F() 98 const std::vector<uint8_t> aid = {0x001, 0x002, 0x003}; in HWTEST_F() local 103 int ret = seVendorAdaptions->openBasicChannel(aid, p2, response, status); in HWTEST_F()
|
/drivers/hdf_core/framework/include/wifi/ |
H A D | hdf_wifi_event.h | 170 uint16_t aid; /**< Authentication ID */ member 196 uint16_t aid; /**< Authentication ID */ member
|