Home
last modified time | relevance | path

Searched refs:p2 (Results 1 - 20 of 20) sorted by relevance

/drivers/peripheral/secure_element/test/unittest/se_impl_test/
H A Dse_impl_test.cpp108 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 Dse_impl.cpp58 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 Dse_impl.h38 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 Dsecure_element_interface_service.cpp48 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 Dsecure_element_interface_service.h39 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 Dse_vendor_adaptions_mock_test.cpp88 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 Disecure_element_vendor.h37 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 Dse_vendor_adaptions.h37 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 Dse_vendor_adaptions.cpp109 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 Dmock.cpp57 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 Dmock.h45 MOCK_METHOD(int, VendorSecureElementCaOpenLogicalChannel, (uint8_t *aid, uint32_t len, uint8_t p2,
/drivers/peripheral/secure_element/vendor_sim_adaptor/
H A Dse_vendor_adaptions.h54 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 Dse_vendor_adaptions.cpp149 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 Dse_vendor_adaptions_test.cpp82 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 Dsecure_element_ca_proxy.h54 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 Dsecure_element_ca_proxy.cpp118 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 Ddisplay_vgu.h703 * @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 Dstartup_cfg_gen.cpp248 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 Dril_impl.cpp563 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 Dril_impl.h121 int32_t SimOpenLogicalChannel(int32_t slotId, int32_t serialId, const std::string &appID, int32_t p2) override;

Completed in 12 milliseconds