Searched refs:i_clcb (Results 1 – 3 of 3) sorted by relevance
/packages/modules/Bluetooth/system/stack/srvc/ |
D | srvc_eng.cc | 77 uint8_t i_clcb; in srvc_eng_find_clcb_by_bd_addr() local 80 for (i_clcb = 0, p_clcb = srvc_eng_cb.clcb; i_clcb < SRVC_MAX_APPS; in srvc_eng_find_clcb_by_bd_addr() 81 i_clcb++, p_clcb++) { in srvc_eng_find_clcb_by_bd_addr() 99 uint8_t i_clcb; in srvc_eng_find_clcb_by_conn_id() local 102 for (i_clcb = 0, p_clcb = srvc_eng_cb.clcb; i_clcb < SRVC_MAX_APPS; in srvc_eng_find_clcb_by_conn_id() 103 i_clcb++, p_clcb++) { in srvc_eng_find_clcb_by_conn_id() 121 uint8_t i_clcb; in srvc_eng_find_clcb_idx_by_conn_id() local 124 for (i_clcb = 0, p_clcb = srvc_eng_cb.clcb; i_clcb < SRVC_MAX_APPS; in srvc_eng_find_clcb_idx_by_conn_id() 125 i_clcb++, p_clcb++) { in srvc_eng_find_clcb_idx_by_conn_id() 127 return i_clcb; in srvc_eng_find_clcb_idx_by_conn_id() [all …]
|
/packages/modules/Bluetooth/system/stack/gatt/ |
D | gatt_attr.cc | 155 uint8_t i_clcb; in gatt_profile_find_clcb_by_conn_id() local 158 for (i_clcb = 0, p_clcb = gatt_cb.profile_clcb; i_clcb < GATT_MAX_APPS; in gatt_profile_find_clcb_by_conn_id() 159 i_clcb++, p_clcb++) { in gatt_profile_find_clcb_by_conn_id() 177 uint8_t i_clcb; in gatt_profile_find_clcb_by_bd_addr() local 180 for (i_clcb = 0, p_clcb = gatt_cb.profile_clcb; i_clcb < GATT_MAX_APPS; in gatt_profile_find_clcb_by_bd_addr() 181 i_clcb++, p_clcb++) { in gatt_profile_find_clcb_by_bd_addr() 204 uint8_t i_clcb = 0; in gatt_profile_clcb_alloc() local 207 for (i_clcb = 0, p_clcb = gatt_cb.profile_clcb; i_clcb < GATT_MAX_APPS; in gatt_profile_clcb_alloc() 208 i_clcb++, p_clcb++) { in gatt_profile_clcb_alloc() 218 if (i_clcb < GATT_MAX_APPS) return p_clcb; in gatt_profile_clcb_alloc()
|
/packages/modules/Bluetooth/system/bta/gatt/ |
D | bta_gattc_utils.cc | 140 for (int i_clcb = 0; i_clcb < BTA_GATTC_CLCB_MAX; i_clcb++) { in bta_gattc_clcb_alloc() local 141 if (!bta_gattc_cb.clcb[i_clcb].in_use) { in bta_gattc_clcb_alloc() 143 log::verbose("found clcb:{} available", i_clcb); in bta_gattc_clcb_alloc() 145 p_clcb = &bta_gattc_cb.clcb[i_clcb]; in bta_gattc_clcb_alloc()
|