• Home
  • Raw
  • Download

Lines Matching refs:handle

107   phLibNfc_Handle handle, phNfc_sData_t *pResBuffer, NFCSTATUS status)  in nfc_jni_transceive_callback()  argument
120 phLibNfc_Handle handle = 0; in com_android_nfc_NativeP2pDevice_doConnect() local
135 handle = nfc_jni_get_p2p_device_handle(e, o); in com_android_nfc_NativeP2pDevice_doConnect()
145 status = phLibNfc_RemoteDev_Connect(handle, nfc_jni_connect_callback, (void*)&cb_data); in com_android_nfc_NativeP2pDevice_doConnect()
201 phLibNfc_Handle handle = 0; in com_android_nfc_NativeP2pDevice_doDisconnect() local
208 handle = nfc_jni_get_p2p_device_handle(e, o); in com_android_nfc_NativeP2pDevice_doDisconnect()
217 TRACE("Disconnecting from target (handle = 0x%x)", handle); in com_android_nfc_NativeP2pDevice_doDisconnect()
226 …status = phLibNfc_RemoteDev_Disconnect(handle, NFC_DISCOVERY_CONTINUE,nfc_jni_disconnect_callback,… in com_android_nfc_NativeP2pDevice_doDisconnect()
277 phLibNfc_Handle handle = nfc_jni_get_p2p_device_handle(e, o); in com_android_nfc_NativeP2pDevice_doTransceive() local
290 TRACE("Transceive data to target (handle = 0x%x)", handle); in com_android_nfc_NativeP2pDevice_doTransceive()
309 …status = phLibNfc_RemoteDev_Transceive(handle, &transceive_info, nfc_jni_transceive_callback, (voi… in com_android_nfc_NativeP2pDevice_doTransceive()
359 phLibNfc_Handle handle; in com_android_nfc_NativeP2pDevice_doReceive() local
366 handle = nfc_jni_get_p2p_device_handle(e, o); in com_android_nfc_NativeP2pDevice_doReceive()
377 status = phLibNfc_RemoteDev_Receive(handle, nfc_jni_receive_callback,(void *)&cb_data); in com_android_nfc_NativeP2pDevice_doReceive()
415 phLibNfc_Handle handle = nfc_jni_get_p2p_device_handle(e, o); in com_android_nfc_NativeP2pDevice_doSend() local
426 TRACE("Send data to the Initiator (handle = 0x%x)", handle); in com_android_nfc_NativeP2pDevice_doSend()
433 status = phLibNfc_RemoteDev_Send(handle, &data, nfc_jni_send_callback,(void *)&cb_data); in com_android_nfc_NativeP2pDevice_doSend()