Home
last modified time | relevance | path

Searched refs:congested (Results 1 – 22 of 22) sorted by relevance

/packages/modules/Bluetooth/system/bta/gatt/
Dbta_gatts_queue.cc121 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()
Dbta_gatts_act.cc56 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()
Dbta_gattc_act.cc68 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/
Dgatt_main.cc80 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/
Dhidd_conn.cc53 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()
Dhidh_conn.cc70 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/
DGattNativeInterface.java180 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()
DGattService.java1821 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/
Dbta_gatt_server_queue.h30 static void CongestionCallback(uint16_t conn_id, bool congested);
Dbta_gatt_api.h198 bool congested; /* congestion indicator */ member
384 bool congested; /* report channel congestion indicator */ member
/packages/modules/Bluetooth/system/include/hardware/
Dbt_gatt_server.h106 typedef void (*congestion_callback)(int conn_id, bool congested);
Dbt_gatt_client.h155 typedef void (*congestion_callback)(int conn_id, bool congested);
/packages/modules/Bluetooth/system/btif/src/
Dbtif_gatt_server.cc223 p_data->congest.conn_id, p_data->congest.congested); in btapp_gatts_handle_cback()
Dbtif_gatt_client.cc204 p_data->congest.conn_id, p_data->congest.congested); in btif_gattc_upstreams_evt()
/packages/modules/Bluetooth/system/stack/test/gatt/
Dstack_gatt_test.cc87 void tGATT_CONGESTION_CBACK(uint16_t conn_id, bool congested) {} in tGATT_CONGESTION_CBACK() argument
/packages/modules/Bluetooth/system/gd/rust/linux/stack/src/
Dbluetooth_gatt.rs2962 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/
Dgatt_api.h727 typedef void(tGATT_CONGESTION_CBACK)(uint16_t conn_id, bool congested);
/packages/modules/Bluetooth/android/app/jni/
Dcom_android_bluetooth_gatt.cpp405 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/
DConnectivityService.java9465 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/
Den_GB_wordlist.combined.gz
Den_US_wordlist.combined.gz
Den_wordlist.combined.gz