Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/system/bta/gatt/
Dbta_gatts_queue.cc113 void BtaGattServerQueue::CongestionCallback(tCONN_ID conn_id, bool congested) { in CongestionCallback() argument
114 log::verbose("conn_id: {}, congested: {}", conn_id, congested); in CongestionCallback()
116 congestion_queue[conn_id] = congested; in CongestionCallback()
117 if (!congested) { in CongestionCallback()
Dbta_gatts_act.cc52 static void bta_gatts_cong_cback(tCONN_ID conn_id, bool congested);
662 static void bta_gatts_cong_cback(tCONN_ID conn_id, bool congested) { in bta_gatts_cong_cback() argument
673 cb_data.congest.congested = congested; in bta_gatts_cong_cback()
Dbta_gattc_act.cc62 static void bta_gattc_cong_cback(tCONN_ID conn_id, bool congested);
1662 static void bta_gattc_cong_cback(tCONN_ID conn_id, bool congested) { in bta_gattc_cong_cback() argument
1670 cb_data.congest.congested = congested; in bta_gattc_cong_cback()
/packages/modules/Bluetooth/system/stack/gatt/
Dgatt_main.cc78 static void gatt_l2cif_congest_cback(uint16_t cid, bool congested);
617 static void gatt_channel_congestion(tGATT_TCB* p_tcb, bool congested) { in gatt_channel_congestion() argument
623 if (p_tcb != NULL && !congested) { in gatt_channel_congestion()
630 (*p_reg->app_cb.p_congestion_cb)(conn_id, congested); in gatt_channel_congestion()
699 static void gatt_le_cong_cback(const RawAddress& remote_bda, bool congested) { in gatt_le_cong_cback() argument
706 gatt_channel_congestion(p_tcb, congested); in gatt_le_cong_cback()
918 static void gatt_l2cif_congest_cback(uint16_t lcid, bool congested) { in gatt_l2cif_congest_cback() argument
922 gatt_channel_congestion(p_tcb, congested); in gatt_l2cif_congest_cback()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/gatt/
DGattNativeInterface.java175 void onClientCongestion(int connId, boolean congested) throws RemoteException { in onClientCongestion() argument
176 getGattService().onClientCongestion(connId, congested); in onClientCongestion()
262 void onServerCongestion(int connId, boolean congested) throws RemoteException { in onServerCongestion() argument
263 getGattService().onServerCongestion(connId, congested); in onServerCongestion()
DGattService.java928 void onClientCongestion(int connId, boolean congested) { in onClientCongestion() argument
929 Log.v(TAG, "onClientCongestion() - connId=" + connId + ", congested=" + congested); in onClientCongestion()
936 app.isCongested = congested; in onClientCongestion()
2079 void onServerCongestion(int connId, boolean congested) { in onServerCongestion() argument
2080 Log.d(TAG, "onServerCongestion() - connId=" + connId + ", congested=" + congested); in onServerCongestion()
2087 app.isCongested = congested; in onServerCongestion()
/packages/modules/Bluetooth/system/stack/hid/
Dhidd_conn.cc60 static void hidd_l2cif_cong_ind(uint16_t cid, bool congested);
410 static void hidd_l2cif_cong_ind(uint16_t cid, bool congested) { in hidd_l2cif_cong_ind() argument
411 log::verbose("cid={:04x} congested={}", cid, congested); in hidd_l2cif_cong_ind()
421 if (congested) { in hidd_l2cif_cong_ind()
Dhidh_conn.cc78 static void hidh_l2cif_cong_ind(uint16_t l2cap_cid, bool congested);
636 static void hidh_l2cif_cong_ind(uint16_t l2cap_cid, bool congested) { in hidh_l2cif_cong_ind() argument
652 congested); in hidh_l2cif_cong_ind()
654 if (congested) { in hidh_l2cif_cong_ind()
/packages/modules/Bluetooth/system/bta/include/
Dbta_gatt_server_queue.h30 static void CongestionCallback(tCONN_ID conn_id, bool congested);
Dbta_gatt_api.h197 bool congested; /* congestion indicator */ member
385 bool congested; /* report channel congestion indicator */ member
/packages/modules/Bluetooth/system/include/hardware/
Dbt_gatt_server.h100 typedef void (*congestion_callback)(int conn_id, bool congested);
Dbt_gatt_client.h144 typedef void (*congestion_callback)(int conn_id, bool congested);
/packages/modules/Bluetooth/system/btif/src/
Dbtif_gatt_server.cc234 p_data->congest.congested); in btapp_gatts_handle_cback()
Dbtif_gatt_client.cc225 p_data->congest.congested); in btif_gattc_upstreams_evt()
/packages/modules/Bluetooth/system/gd/rust/linux/stack/src/
Dbluetooth_gatt.rs2797 fn congestion_cb(&mut self, conn_id: i32, congested: bool); in congestion_cb()
3017 fn congestion_cb(&mut self, conn_id: i32, congested: bool) { in congestion_cb()
3019 client.is_congested = congested; in congestion_cb()
3195 fn congestion_cb(&mut self, conn_id: i32, congested: bool); in congestion_cb()
3462 fn congestion_cb(&mut self, conn_id: i32, congested: bool) { in congestion_cb()
3464 server.is_congested = congested; in congestion_cb()
/packages/modules/Bluetooth/system/stack/include/
Dgatt_api.h722 typedef void(tGATT_CONGESTION_CBACK)(tCONN_ID conn_id, bool congested);
/packages/modules/Bluetooth/android/app/jni/
Dcom_android_bluetooth_gatt.cpp413 static void btgattc_congestion_cb(int conn_id, bool congested) { in btgattc_congestion_cb() argument
419 sCallbackEnv->CallVoidMethod(mCallbacksObj, method_onClientCongestion, conn_id, congested); in btgattc_congestion_cb()
759 static void btgatts_congestion_cb(int conn_id, bool congested) { in btgatts_congestion_cb() argument
765 sCallbackEnv->CallVoidMethod(mCallbacksObj, method_onServerCongestion, conn_id, congested); in btgatts_congestion_cb()
/packages/modules/Connectivity/service/src/com/android/server/
DConnectivityService.java10346 boolean congested = false; // congested if any underlying is congested
10378 congested |= !underlyingCaps.hasCapability(NET_CAPABILITY_NOT_CONGESTED);
10389 congested = false;
10398 newNc.setCapability(NET_CAPABILITY_NOT_CONGESTED, !congested);
/packages/inputmethods/LatinIME/dictionaries/
Den_GB_wordlist.combined.gz1dictionary=main:en_gb,locale=en_GB,description=English (UK),date ...
Den_US_wordlist.combined.gz1dictionary=main:en_us,locale=en_US,description=English (US),date ...
Den_wordlist.combined.gz1dictionary=main:en,locale=en,description=English,date=1414726273, ...