Home
last modified time | relevance | path

Searched refs:callbackInfo (Results 1 – 4 of 4) sorted by relevance

/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/gatt/
DCallbackInfoTest.java41 CallbackInfo callbackInfo = in callbackInfoBuilder() local
44 assertThat(callbackInfo.address).isEqualTo(address); in callbackInfoBuilder()
45 assertThat(callbackInfo.status).isEqualTo(status); in callbackInfoBuilder()
46 assertThat(callbackInfo.handle).isEqualTo(handle); in callbackInfoBuilder()
47 assertThat(Arrays.equals(callbackInfo.value, value)).isTrue(); in callbackInfoBuilder()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/gatt/
DGattService.java1736 CallbackInfo callbackInfo = in onWriteCharacteristic() local
1741 app.queueCallback(callbackInfo); in onWriteCharacteristic()
1829 CallbackInfo callbackInfo = app.popQueuedCallback(); in onClientCongestion() local
1830 if (callbackInfo == null) { in onClientCongestion()
1834 callbackInfo.address, in onClientCongestion()
1835 callbackInfo.status, in onClientCongestion()
1836 callbackInfo.handle, in onClientCongestion()
1837 callbackInfo.value); in onClientCongestion()
3094 CallbackInfo callbackInfo = app.popQueuedCallback(); in onServerCongestion() local
3095 if (callbackInfo == null) { in onServerCongestion()
[all …]
DContextMap.java170 public void queueCallback(CallbackInfo callbackInfo) { in queueCallback() argument
171 mCongestionQueue.add(callbackInfo); in queueCallback()
/packages/services/Telephony/src/com/android/phone/
DPhoneInterfaceManager.java1594 CallerCallbackInfo callbackInfo = (CallerCallbackInfo) request.argument; in handleMessage() local
1595 Consumer<Integer> callback = callbackInfo.getConsumer(); in handleMessage()
1596 Set<Integer> callerCarrierIds = callbackInfo.getCarrierIds(); in handleMessage()
9283 CallerCallbackInfo callbackInfo = new CallerCallbackInfo(consumer, carrierIds); in getCarrierRestrictionStatus() local
9284 sendRequestAsync(CMD_GET_ALLOWED_CARRIERS, callbackInfo); in getCarrierRestrictionStatus()