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

  /frameworks/base/core/java/android/se/omapi/
Session.java 305 public @Nullable Channel openLogicalChannel(@Nullable byte[] aid, @Nullable byte p2)
312 ISecureElementChannel channel = mSession.openLogicalChannel(
337 * This method is equivalent to openLogicalChannel(aid, P2=0x00)
358 public @Nullable Channel openLogicalChannel(@Nullable byte[] aid) throws IOException {
359 return openLogicalChannel(aid, (byte) 0x00);
  /hardware/nxp/secure_element/1.0/
SecureElement.cpp 117 Return<void> SecureElement::openLogicalChannel(const hidl_vec<uint8_t>& aid,
  /packages/apps/SecureElement/src/com/android/se/
SecureElementService.java 290 public ISecureElementChannel openLogicalChannel(byte[] aid, byte p2,
309 channel = mReader.getTerminal().openLogicalChannel(this, aid, p2, listener,
318 Log.i(mTag, "openLogicalChannel() - returning null");
321 Log.i(mTag, "openLogicalChannel() Success. Channel: "
Terminal.java 393 return openLogicalChannel(null, aid, (byte) 0x00, null, null, 0);
399 public Channel openLogicalChannel(SecureElementSession session, byte[] aid, byte p2,
425 mSEHal.openLogicalChannel(byteArrayToArrayList(aid), p2,
441 throw new UnsupportedOperationException("OpenLogicalChannel() failed");
443 throw new IOException("OpenLogicalChannel() failed");
445 throw new NoSuchElementException("OpenLogicalChannel() failed");
476 mSEHal.openLogicalChannel(byteArrayToArrayList(aid), (byte) 0x00,

Completed in 77 milliseconds