Searched refs:start_idx (Results 1 – 7 of 7) sorted by relevance
/system/core/fs_mgr/ |
D | fs_mgr.c | 302 static int mount_with_alternatives(struct fstab *fstab, int start_idx, int *end_idx, int *attempted… in mount_with_alternatives() argument 308 if (!end_idx || !attempted_idx || start_idx >= fstab->num_entries) { in mount_with_alternatives() 310 if (end_idx) *end_idx = start_idx; in mount_with_alternatives() 311 if (attempted_idx) *end_idx = start_idx; in mount_with_alternatives() 316 for (i = start_idx; in mount_with_alternatives() 318 … i < fstab->num_entries && !strcmp(fstab->recs[start_idx].mount_point, fstab->recs[i].mount_point); in mount_with_alternatives() 338 if (i != start_idx) { in mount_with_alternatives() 341 fstab->recs[start_idx].fs_type); in mount_with_alternatives() 354 *attempted_idx = start_idx; in mount_with_alternatives()
|
/system/bt/stack/gatt/ |
D | gatt_api.c | 1338 UINT8 start_idx, found_idx; in GATT_StartIf() local 1345 start_idx = 0; in GATT_StartIf() 1346 while (gatt_find_the_connected_bda(start_idx, bda, &found_idx, &transport)) in GATT_StartIf() 1354 start_idx = ++found_idx; in GATT_StartIf() 1423 UINT8 start_idx, found_idx; in GATT_CancelConnect() local 1438 start_idx = 0; in GATT_CancelConnect() 1443 … while (status && gatt_find_app_hold_link(p_tcb, start_idx, &found_idx, &temp_gatt_if)) in GATT_CancelConnect() 1446 start_idx = ++found_idx; in GATT_CancelConnect()
|
D | gatt_main.c | 1154 UINT8 start_idx, found_idx; in gatt_proc_srv_chg() local 1165 start_idx =0; in gatt_proc_srv_chg() 1166 while (gatt_find_the_connected_bda(start_idx, bda, &found_idx, &transport)) in gatt_proc_srv_chg() 1179 start_idx = ++found_idx; in gatt_proc_srv_chg()
|
D | gatt_utils.c | 708 BOOLEAN gatt_find_the_connected_bda(UINT8 start_idx, BD_ADDR bda, UINT8 *p_found_idx, in gatt_find_the_connected_bda() argument 713 GATT_TRACE_DEBUG("gatt_find_the_connected_bda start_idx=%d",start_idx); in gatt_find_the_connected_bda() 715 for (i = start_idx ; i < GATT_MAX_PHY_CHANNEL; i ++) in gatt_find_the_connected_bda() 1985 BOOLEAN gatt_find_app_hold_link(tGATT_TCB *p_tcb, UINT8 start_idx, UINT8 *p_found_idx, tGATT_IF *p_… in gatt_find_app_hold_link() argument 1990 for (i = start_idx; i < GATT_MAX_APPS; i ++) in gatt_find_app_hold_link()
|
D | gatt_int.h | 600 extern BOOLEAN gatt_find_the_connected_bda(UINT8 start_idx, BD_ADDR bda, UINT8 *p_found_idx, tBT_TR… 659 extern BOOLEAN gatt_find_app_hold_link(tGATT_TCB *p_tcb, UINT8 start_idx, UINT8 *p_found_idx, tGATT…
|
/system/bt/stack/btm/ |
D | btm_int.h | 1084 extern BOOLEAN btm_sec_find_bonded_dev (UINT8 start_idx, UINT8 *p_found_idx, tBTM_SEC_DEV_REC **p_…
|
D | btm_sec.c | 6379 BOOLEAN btm_sec_find_bonded_dev (UINT8 start_idx, UINT8 *p_found_idx, tBTM_SEC_DEV_REC **p_rec) in btm_sec_find_bonded_dev() argument 6386 if (start_idx >= BTM_SEC_MAX_DEVICE_RECORDS) in btm_sec_find_bonded_dev() 6392 p_dev_rec = &btm_cb.sec_dev_rec[start_idx]; in btm_sec_find_bonded_dev() 6393 for (i = start_idx; i < BTM_SEC_MAX_DEVICE_RECORDS; i++, p_dev_rec++) in btm_sec_find_bonded_dev()
|