Home
last modified time | relevance | path

Searched refs:NfcDepEndpoint (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Nfc/src/com/android/nfc/
DDeviceHost.java38 public void onLlcpLinkActivated(NfcDepEndpoint device); in onLlcpLinkActivated()
43 public void onLlcpLinkDeactivated(NfcDepEndpoint device); in onLlcpLinkDeactivated()
45 public void onLlcpFirstPacketReceived(NfcDepEndpoint device); in onLlcpFirstPacketReceived()
94 public interface NfcDepEndpoint { interface
DNfcService.java93 import com.android.nfc.DeviceHost.NfcDepEndpoint;
373 public void onLlcpLinkActivated(NfcDepEndpoint device) { in onLlcpLinkActivated()
382 public void onLlcpLinkDeactivated(NfcDepEndpoint device) { in onLlcpLinkDeactivated()
391 public void onLlcpFirstPacketReceived(NfcDepEndpoint device) { in onLlcpFirstPacketReceived()
2059 } else if (o instanceof NfcDepEndpoint) { in maybeDisconnectTarget()
2061 NfcDepEndpoint device = (NfcDepEndpoint) o; in maybeDisconnectTarget()
2062 if (device.getMode() == NfcDepEndpoint.MODE_P2P_TARGET) { in maybeDisconnectTarget()
2394 llcpActivated((NfcDepEndpoint) msg.obj); in handleMessage()
2402 NfcDepEndpoint device = (NfcDepEndpoint) msg.obj; in handleMessage()
2410 if (device.getMode() == NfcDepEndpoint.MODE_P2P_TARGET) { in handleMessage()
[all …]
/packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/
DNativeP2pDevice.java19 import com.android.nfc.DeviceHost.NfcDepEndpoint;
24 public class NativeP2pDevice implements NfcDepEndpoint {