HomeSort by relevance Sort by last modified time
    Searched defs:openBasicChannel (Results 1 - 4 of 4) sorted by null

  /frameworks/base/core/java/android/se/omapi/
Session.java 155 * transport API should guarantee that the openBasicChannel(null) command will return
199 public @Nullable Channel openBasicChannel(@Nullable byte[] aid, @Nullable byte p2)
207 ISecureElementChannel channel = mSession.openBasicChannel(aid, p2,
230 * This method is equivalent to openBasicChannel(aid, P2=0x00)
249 public @Nullable Channel openBasicChannel(@Nullable byte[] aid) throws IOException {
250 return openBasicChannel(aid, (byte) 0x00);
  /hardware/nxp/secure_element/1.0/
SecureElement.cpp 242 Return<void> SecureElement::openBasicChannel(const hidl_vec<uint8_t>& aid,
  /packages/apps/SecureElement/src/com/android/se/
SecureElementService.java 251 public ISecureElementChannel openBasicChannel(byte[] aid, byte p2,
270 channel = mReader.getTerminal().openBasicChannel(this, aid, p2, listener,
279 Log.i(mTag, "OpenBasicChannel() - returning null");
Terminal.java 319 public Channel openBasicChannel(SecureElementSession session, byte[] aid, byte p2,
352 mSEHal.openBasicChannel(byteArrayToArrayList(aid), p2,
369 throw new UnsupportedOperationException("OpenBasicChannel() failed");
371 throw new IOException("OpenBasicChannel() failed");
373 throw new NoSuchElementException("OpenBasicChannel() failed");

Completed in 1852 milliseconds