Home | History | Annotate | Download | only in handler

Lines Matching defs:connection

35             UsbDeviceConnection connection = openConnection(usbManager, device);
36 if (AoapInterface.isSupported(connection)) {
39 connection.close();
49 public static void sendAoapAccessoryStart(UsbDeviceConnection connection, String manufacturer,
52 AoapInterface.sendString(connection, AoapInterface.ACCESSORY_STRING_MANUFACTURER,
54 AoapInterface.sendString(connection, AoapInterface.ACCESSORY_STRING_MODEL,
56 AoapInterface.sendString(connection, AoapInterface.ACCESSORY_STRING_DESCRIPTION,
58 AoapInterface.sendString(connection, AoapInterface.ACCESSORY_STRING_VERSION,
60 AoapInterface.sendString(connection, AoapInterface.ACCESSORY_STRING_URI, uri);
61 AoapInterface.sendString(connection, AoapInterface.ACCESSORY_STRING_SERIAL,serial);
62 AoapInterface.sendAoapStart(connection);