/drivers/peripheral/secure_element/test/unittest/se_impl_test/ |
H A D | se_impl_test.cpp | 108 uint8_t p2 = 0; in HWTEST_F() local 113 int ret = seImpl->openLogicalChannel(aid, p2, response, channelNumber, status); in HWTEST_F() 125 uint8_t p2 = 0; in HWTEST_F() local 130 int ret = seImpl->openLogicalChannel(aid, p2, response, channelNumber, status); in HWTEST_F() 142 uint8_t p2 = 0; in HWTEST_F() local 146 int ret = seImpl->openBasicChannel(aid, p2, response, status); in HWTEST_F() 158 uint8_t p2 = 0; 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/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/test/unittest/se_vendor_adaptions_mock_test/ |
H A D | se_vendor_adaptions_mock_test.cpp | 88 uint8_t p2 = 0; in HWTEST_F() local 95 int ret = seVendorAdaptions->openLogicalChannel(aid, p2, response, channelNumber, status); in HWTEST_F() 109 uint8_t p2 = 0; in HWTEST_F() local 113 int ret = seVendorAdaptions->openBasicChannel(aid, p2, response, status); in HWTEST_F()
|
/drivers/peripheral/secure_element/vendor_adaptor/ |
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,
|
H A D | se_vendor_adaptions.cpp | 109 int32_t SeVendorAdaptions::openLogicalChannel(const std::vector<uint8_t>& aid, uint8_t p2,
in openLogicalChannel() argument 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
|
/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()
|
H A D | mock.h | 45 MOCK_METHOD(int, VendorSecureElementCaOpenLogicalChannel, (uint8_t *aid, uint32_t len, uint8_t p2,
|
/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,
137 int VendorSimSecureElementOpenLogicalChannel(const std::vector<uint8_t>& aid, uint8_t p2,
|
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() 169 ret = vendorSimSecureElementOpenLogicalChannelFunc_(arrAid, aidLen, p2, rsp, &rspLen, channelNum, status);
in VendorSimSecureElementOpenLogicalChannel() 246 int32_t SimSeVendorAdaptions::openLogicalChannel(const std::vector<uint8_t>& aid, uint8_t p2,
in openLogicalChannel() argument 259 int ret = VendorSimSecureElementOpenLogicalChannel(aid, p2, response, &channelCreated, &tmpStatus);
in openLogicalChannel() 290 int32_t SimSeVendorAdaptions::openBasicChannel(const std::vector<uint8_t>& aid, uint8_t p2,
in openBasicChannel() argument 148 VendorSimSecureElementOpenLogicalChannel( const std::vector<uint8_t>& aid, uint8_t p2, std::vector<uint8_t>& response, uint32_t *channelNum, int *status) VendorSimSecureElementOpenLogicalChannel() argument
|
/drivers/peripheral/secure_element/test/unittest/se_vendor_adaptions_test/ |
H A D | se_vendor_adaptions_test.cpp | 82 uint8_t p2 = 0; in HWTEST_F() local 87 int ret = seVendorAdaptions->openLogicalChannel(aid, p2, response, channelNumber, status); in HWTEST_F() 99 uint8_t p2 = 0; in HWTEST_F() local 103 int ret = seVendorAdaptions->openBasicChannel(aid, p2, response, status); in HWTEST_F()
|
/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; 97 using VendorSecureElementCaOpenLogicalChannelT = int (*)(uint8_t *aid, uint32_t len, uint8_t p2, uint8_t *rsp,
|
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() 117 VendorSecureElementCaOpenLogicalChannel( uint8_t *aid, uint32_t len, uint8_t p2, uint8_t *rsp, uint32_t *rspLen, uint32_t *channelNum) const VendorSecureElementCaOpenLogicalChannel() argument
|
/drivers/peripheral/display/interfaces/include/ |
H A D | display_vgu.h | 703 * @param p2 Indicates the pointer to the coordinates of the end point. 709 VGUResult VGUGradientLinear(VGUGradient *gradient, const VGUPoint *p1, const VGUPoint *p2); 717 * @param p2 Indicates the pointer to the center point coordinates of the outer circle. 724 VGUResult VGUGradientRadial(VGUGradient *gradient, const VGUPoint *p1, VGUScalar r1, const VGUPoint *p2, VGUScalar r2);
|
/drivers/hdf_core/framework/tools/hc-gen/src/ |
H A D | startup_cfg_gen.cpp | 248 sort(vect.begin(), vect.end(), [] (const ElementType &p1, const ElementType &p2) -> bool { 249 return (p1.second.hostPriority == p2.second.hostPriority) ? 250 (p1.second.hostId < p2.second.hostId) : (p1.second.hostPriority < p2.second.hostPriority);
|
/drivers/peripheral/ril/interfaces/hdi_service/src/ |
H A D | ril_impl.cpp | 563 int32_t RilImpl::SimOpenLogicalChannel(int32_t slotId, int32_t serialId, const std::string &appID, int32_t p2) in SimOpenLogicalChannel() argument 565 return TaskSchedule(&Telephony::HRilManager::SimOpenLogicalChannel, slotId, serialId, appID, p2); in SimOpenLogicalChannel()
|
/drivers/peripheral/ril/interfaces/hdi_service/include/ |
H A D | ril_impl.h | 121 int32_t SimOpenLogicalChannel(int32_t slotId, int32_t serialId, const std::string &appID, int32_t p2) override;
|