Home
last modified time | relevance | path

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

/btstack/platform/daemon/binding/java/android/com/bluekitchen/lescan/
H A DMainActivity.java44 private int testHandle; field in MainActivity
127 testHandle = event.getConnectionHandle(); in testCharacteristics()
128 …Message(String.format("Connection complete, status %d, handle %x", event.getStatus(), testHandle)); in testCharacteristics()
131 btstack.GATTDiscoverPrimaryServices(testHandle); in testCharacteristics()
147 btstack.GATTDiscoverCharacteristicsForService(testHandle, testService); in testCharacteristics()
164 btstack.GATTReadValueOfCharacteristic(testHandle, testCharacteristic); in testCharacteristics()
174 btstack.GATTWriteValueOfCharacteristic(testHandle, testCharacteristic, data.length, data); in testCharacteristics()
181 btstack.GAPDisconnect(testHandle); in testCharacteristics()
222 testHandle = event.getConnectionHandle(); in testAccelerometer()
223 …Message(String.format("Connection complete, status %d, handle %x", event.getStatus(), testHandle)); in testAccelerometer()
[all …]
/btstack/platform/daemon/binding/java/example/com/bluekitchen/
H A DGATTClientTest.java33 private int testHandle; field in GATTClientTest
192 testHandle = event.getConnectionHandle(); in handlePacketAcc()
193 …println(String.format("Received disconnect, status %d, handle %x", event.getStatus(), testHandle)); in handlePacketAcc()
227 testHandle = event.getConnectionHandle(); in handlePacketAcc()
228 …println(String.format("Connection complete, status %d, handle %x", event.getStatus(), testHandle)); in handlePacketAcc()
231 btstack.GATTDiscoverPrimaryServices(testHandle); in handlePacketAcc()
247 btstack.GATTDiscoverCharacteristicsForService(testHandle, testService); in handlePacketAcc()
264 btstack.GATTReadValueOfCharacteristic(testHandle, testCharacteristic); in handlePacketAcc()
274 btstack.GATTWriteValueOfCharacteristic(testHandle, testCharacteristic, data.length, data); in handlePacketAcc()
281 …btstack.GATTDiscoverPrimaryServicesByUUID128(testHandle, new BT_UUID(this.acc_service_uuid)); // n… in handlePacketAcc()
[all …]
/btstack/port/mtk/SPPClient/src/com/bluekitchen/sppclient/
H A DMainActivity.java146 private int testHandle; field in MainActivity
196 testHandle = event.getConnectionHandle(); in handlePacket()
197 …Message(String.format("Received disconnect, status %d, handle %x", event.getStatus(), testHandle)); in handlePacket()