Lines Matching refs:p2
165 virtual RawApdu Select(Aid const& aid, uint8_t p2) = 0;
219 uint8_t p2 = apdu.get_p2(); in Process() local
246 if (p2 == SW_62xx_DATA_APDU_P2) { in Process()
250 if (p2 == SW_62xx_VALIDATE_DATA_P2) { in Process()
262 response_ = GeneratesBytes((static_cast<uint16_t>(p1) << 8) | p2); in Process()
269 response_ = GeneratesBytes((static_cast<uint16_t>(p1) << 8) | p2); in Process()
279 response_ = GeneratesBytes((static_cast<uint16_t>(p1) << 8) | p2); in Process()
466 ScopedAStatus openBasicChannel(const std::vector<uint8_t>& aid, int8_t p2, in openBasicChannel() argument
469 << ") p2 " << p2; in openBasicChannel()
494 select_response = applet->Select(aid, p2); in openBasicChannel()
513 channels_[0] = Channel(aid, p2, applet); in openBasicChannel()
519 const std::vector<uint8_t>& aid, int8_t p2, in openLogicalChannel() argument
523 << ") p2 " << p2; in openLogicalChannel()
555 select_response = applet->Select(aid, p2); in openLogicalChannel()
573 channels_[channel_number] = Channel(aid, p2, applet); in openLogicalChannel()
662 Channel(se::Aid const& aid, uint8_t p2, std::shared_ptr<se::Applet> applet) in Channel()
663 : opened(true), aid(aid), p2(p2), applet(std::move(applet)) {} in Channel()
668 uint8_t p2{0}; member