/packages/modules/Bluetooth/system/bta/gatt/ |
D | bta_gatts_queue.cc | 121 void BtaGattServerQueue::CongestionCallback(uint16_t conn_id, bool congested) { in CongestionCallback() argument 122 log::verbose("conn_id: {}, congested: {}", conn_id, congested); in CongestionCallback() 124 congestion_queue[conn_id] = congested; in CongestionCallback() 125 if (!congested) { in CongestionCallback()
|
D | bta_gatts_act.cc | 56 static void bta_gatts_cong_cback(uint16_t conn_id, bool congested); 692 static void bta_gatts_cong_cback(uint16_t conn_id, bool congested) { in bta_gatts_cong_cback() argument 704 cb_data.congest.congested = congested; in bta_gatts_cong_cback()
|
D | bta_gattc_act.cc | 68 static void bta_gattc_cong_cback(uint16_t conn_id, bool congested); 1714 static void bta_gattc_cong_cback(uint16_t conn_id, bool congested) { in bta_gattc_cong_cback() argument 1720 cb_data.congest.congested = congested; in bta_gattc_cong_cback()
|
/packages/modules/Bluetooth/system/stack/gatt/ |
D | gatt_main.cc | 80 static void gatt_l2cif_congest_cback(uint16_t cid, bool congested); 629 static void gatt_channel_congestion(tGATT_TCB* p_tcb, bool congested) { in gatt_channel_congestion() argument 635 if (p_tcb != NULL && !congested) { in gatt_channel_congestion() 643 (*p_reg->app_cb.p_congestion_cb)(conn_id, congested); in gatt_channel_congestion() 718 static void gatt_le_cong_cback(const RawAddress& remote_bda, bool congested) { in gatt_le_cong_cback() argument 723 gatt_channel_congestion(p_tcb, congested); in gatt_le_cong_cback() 923 static void gatt_l2cif_congest_cback(uint16_t lcid, bool congested) { in gatt_l2cif_congest_cback() argument 927 gatt_channel_congestion(p_tcb, congested); in gatt_l2cif_congest_cback()
|
/packages/modules/Bluetooth/system/stack/hid/ |
D | hidd_conn.cc | 53 static void hidd_l2cif_cong_ind(uint16_t cid, bool congested); 411 static void hidd_l2cif_cong_ind(uint16_t cid, bool congested) { in hidd_l2cif_cong_ind() argument 412 log::verbose("cid={:04x} congested={}", cid, congested); in hidd_l2cif_cong_ind() 422 if (congested) { in hidd_l2cif_cong_ind()
|
D | hidh_conn.cc | 70 static void hidh_l2cif_cong_ind(uint16_t l2cap_cid, bool congested); 618 static void hidh_l2cif_cong_ind(uint16_t l2cap_cid, bool congested) { in hidh_l2cif_cong_ind() argument 633 l2cap_cid, congested); in hidh_l2cif_cong_ind() 635 if (congested) in hidh_l2cif_cong_ind()
|
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/gatt/ |
D | GattNativeInterface.java | 180 void onClientCongestion(int connId, boolean congested) throws RemoteException { in onClientCongestion() argument 181 getGattService().onClientCongestion(connId, congested); in onClientCongestion() 267 void onServerCongestion(int connId, boolean congested) throws RemoteException { in onServerCongestion() argument 268 getGattService().onServerCongestion(connId, congested); in onServerCongestion()
|
D | GattService.java | 1821 void onClientCongestion(int connId, boolean congested) throws RemoteException { in onClientCongestion() argument 1822 Log.v(TAG, "onClientCongestion() - connId=" + connId + ", congested=" + congested); in onClientCongestion() 1827 app.isCongested = congested; in onClientCongestion() 3084 void onServerCongestion(int connId, boolean congested) throws RemoteException { in onServerCongestion() argument 3085 Log.d(TAG, "onServerCongestion() - connId=" + connId + ", congested=" + congested); in onServerCongestion() 3092 app.isCongested = congested; in onServerCongestion()
|
/packages/modules/Bluetooth/system/bta/include/ |
D | bta_gatt_server_queue.h | 30 static void CongestionCallback(uint16_t conn_id, bool congested);
|
D | bta_gatt_api.h | 198 bool congested; /* congestion indicator */ member 384 bool congested; /* report channel congestion indicator */ member
|
/packages/modules/Bluetooth/system/include/hardware/ |
D | bt_gatt_server.h | 106 typedef void (*congestion_callback)(int conn_id, bool congested);
|
D | bt_gatt_client.h | 155 typedef void (*congestion_callback)(int conn_id, bool congested);
|
/packages/modules/Bluetooth/system/btif/src/ |
D | btif_gatt_server.cc | 223 p_data->congest.conn_id, p_data->congest.congested); in btapp_gatts_handle_cback()
|
D | btif_gatt_client.cc | 204 p_data->congest.conn_id, p_data->congest.congested); in btif_gattc_upstreams_evt()
|
/packages/modules/Bluetooth/system/stack/test/gatt/ |
D | stack_gatt_test.cc | 87 void tGATT_CONGESTION_CBACK(uint16_t conn_id, bool congested) {} in tGATT_CONGESTION_CBACK() argument
|
/packages/modules/Bluetooth/system/gd/rust/linux/stack/src/ |
D | bluetooth_gatt.rs | 2962 fn congestion_cb(&mut self, conn_id: i32, congested: bool); in congestion_cb() 3160 fn congestion_cb(&mut self, conn_id: i32, congested: bool) { in congestion_cb() 3162 client.is_congested = congested; in congestion_cb() 3334 fn congestion_cb(&mut self, conn_id: i32, congested: bool); in congestion_cb() 3593 fn congestion_cb(&mut self, conn_id: i32, congested: bool) { in congestion_cb() 3595 server.is_congested = congested; in congestion_cb()
|
/packages/modules/Bluetooth/system/stack/include/ |
D | gatt_api.h | 727 typedef void(tGATT_CONGESTION_CBACK)(uint16_t conn_id, bool congested);
|
/packages/modules/Bluetooth/android/app/jni/ |
D | com_android_bluetooth_gatt.cpp | 405 void btgattc_congestion_cb(int conn_id, bool congested) { in btgattc_congestion_cb() argument 410 conn_id, congested); in btgattc_congestion_cb() 812 void btgatts_congestion_cb(int conn_id, bool congested) { in btgatts_congestion_cb() argument 817 conn_id, congested); in btgatts_congestion_cb()
|
/packages/modules/Connectivity/service/src/com/android/server/ |
D | ConnectivityService.java | 9465 boolean congested = false; // congested if any underlying is congested 9497 congested |= !underlyingCaps.hasCapability(NET_CAPABILITY_NOT_CONGESTED); 9508 congested = false; 9517 newNc.setCapability(NET_CAPABILITY_NOT_CONGESTED, !congested);
|
/packages/inputmethods/LatinIME/dictionaries/ |
D | en_GB_wordlist.combined.gz |
|
D | en_US_wordlist.combined.gz |
|
D | en_wordlist.combined.gz |
|