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.java44 CallbackInfo callbackInfo = new CallbackInfo(address, status, handle, value); in callbackInfo_default() local
46 expect.that(callbackInfo.address()).isEqualTo(address); in callbackInfo_default()
47 expect.that(callbackInfo.status()).isEqualTo(status); in callbackInfo_default()
48 expect.that(callbackInfo.handle()).isEqualTo(handle); in callbackInfo_default()
49 expect.that(callbackInfo.value()).isEqualTo(value); in callbackInfo_default()
57 CallbackInfo callbackInfo = new CallbackInfo(address, status); in callbackInfo_nullValue() local
59 expect.that(callbackInfo.address()).isEqualTo(address); in callbackInfo_nullValue()
60 expect.that(callbackInfo.status()).isEqualTo(status); in callbackInfo_nullValue()
61 expect.that(callbackInfo.value()).isNull(); in callbackInfo_nullValue()
62 expect.that(callbackInfo.valueByteArray()).isNull(); in callbackInfo_nullValue()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/gatt/
DGattService.java831 CallbackInfo callbackInfo = new CallbackInfo(address, queuedStatus, handle, value); in onWriteCharacteristic() local
832 app.queueCallback(callbackInfo); in onWriteCharacteristic()
938 CallbackInfo callbackInfo = app.popQueuedCallback(); in onClientCongestion() local
939 if (callbackInfo == null) { in onClientCongestion()
945 callbackInfo.address(), in onClientCongestion()
946 callbackInfo.status(), in onClientCongestion()
947 callbackInfo.handle(), in onClientCongestion()
948 callbackInfo.valueByteArray())); in onClientCongestion()
2089 CallbackInfo callbackInfo = app.popQueuedCallback(); in onServerCongestion() local
2090 if (callbackInfo == null) { in onServerCongestion()
[all …]
DContextMap.java140 public void queueCallback(CallbackInfo callbackInfo) { in queueCallback() argument
141 mCongestionQueue.add(callbackInfo); in queueCallback()
/packages/services/Telephony/src/com/android/phone/
DPhoneInterfaceManager.java1606 CallerCallbackInfo callbackInfo = (CallerCallbackInfo) request.argument; in handleMessage() local
1607 Consumer<Integer> callback = callbackInfo.getConsumer(); in handleMessage()
1608 Set<Integer> callerCarrierIds = callbackInfo.getCarrierIds(); in handleMessage()
9392 CallerCallbackInfo callbackInfo = new CallerCallbackInfo(consumer, carrierIds); in getCarrierRestrictionStatus() local
9393 sendRequestAsync(CMD_GET_ALLOWED_CARRIERS, callbackInfo); in getCarrierRestrictionStatus()