Home
last modified time | relevance | path

Searched refs:start_idx (Results 1 – 7 of 7) sorted by relevance

/system/core/fs_mgr/
Dfs_mgr.c302 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/
Dgatt_api.c1338 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()
Dgatt_main.c1154 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()
Dgatt_utils.c708 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()
Dgatt_int.h600 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/
Dbtm_int.h1084 extern BOOLEAN btm_sec_find_bonded_dev (UINT8 start_idx, UINT8 *p_found_idx, tBTM_SEC_DEV_REC **p_…
Dbtm_sec.c6379 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()