/packages/modules/Bluetooth/system/bta/gatt/ |
D | bta_gatts_queue.cc | 113 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()
|
D | bta_gatts_act.cc | 52 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()
|
D | bta_gattc_act.cc | 62 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/ |
D | gatt_main.cc | 78 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/ |
D | GattNativeInterface.java | 175 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()
|
D | GattService.java | 928 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/ |
D | hidd_conn.cc | 60 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()
|
D | hidh_conn.cc | 78 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/ |
D | bta_gatt_server_queue.h | 30 static void CongestionCallback(tCONN_ID conn_id, bool congested);
|
D | bta_gatt_api.h | 197 bool congested; /* congestion indicator */ member 385 bool congested; /* report channel congestion indicator */ member
|
/packages/modules/Bluetooth/system/include/hardware/ |
D | bt_gatt_server.h | 100 typedef void (*congestion_callback)(int conn_id, bool congested);
|
D | bt_gatt_client.h | 144 typedef void (*congestion_callback)(int conn_id, bool congested);
|
/packages/modules/Bluetooth/system/btif/src/ |
D | btif_gatt_server.cc | 234 p_data->congest.congested); in btapp_gatts_handle_cback()
|
D | btif_gatt_client.cc | 225 p_data->congest.congested); in btif_gattc_upstreams_evt()
|
/packages/modules/Bluetooth/system/gd/rust/linux/stack/src/ |
D | bluetooth_gatt.rs | 2797 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/ |
D | gatt_api.h | 722 typedef void(tGATT_CONGESTION_CBACK)(tCONN_ID conn_id, bool congested);
|
/packages/modules/Bluetooth/android/app/jni/ |
D | com_android_bluetooth_gatt.cpp | 413 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/ |
D | ConnectivityService.java | 10346 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/ |
D | en_GB_wordlist.combined.gz | 1dictionary=main:en_gb,locale=en_GB,description=English (UK),date ... |
D | en_US_wordlist.combined.gz | 1dictionary=main:en_us,locale=en_US,description=English (US),date ... |
D | en_wordlist.combined.gz | 1dictionary=main:en,locale=en,description=English,date=1414726273, ... |