Lines Matching refs:handle
46 ** Returns: Handle of secure element. values < 0 represent failure.
98 ALOGD("%s: exit; return handle=0x%X", __FUNCTION__, secElemHandle);
110 ** handle: Handle of secure element.
115 static jboolean nativeNfcSecureElement_doDisconnectSecureElementConnection (JNIEnv*, jobject, jint handle)
117 ALOGD("%s: enter; handle=0x%04x", __FUNCTION__, handle);
120 stat = SecureElement::getInstance().disconnectEE (handle);
125 SecureElement::getInstance().deactivate (handle);
143 ** handle: Secure element's handle.
149 static jbyteArray nativeNfcSecureElement_doTransceive (JNIEnv* e, jobject, jint handle, jbyteArray data)
157 ALOGD("%s: enter; handle=0x%X; buf len=%zu", __FUNCTION__, handle, bytes.size());