Searched refs:start_idx (Results 1 – 5 of 5) sorted by relevance
/system/core/fs_mgr/ |
D | fs_mgr.c | 307 static int mount_with_alternatives(struct fstab *fstab, int start_idx, int *end_idx, int *attempted… in mount_with_alternatives() argument 313 if (!end_idx || !attempted_idx || start_idx >= fstab->num_entries) { in mount_with_alternatives() 315 if (end_idx) *end_idx = start_idx; in mount_with_alternatives() 316 if (attempted_idx) *end_idx = start_idx; in mount_with_alternatives() 321 for (i = start_idx; in mount_with_alternatives() 323 … i < fstab->num_entries && !strcmp(fstab->recs[start_idx].mount_point, fstab->recs[i].mount_point); in mount_with_alternatives() 343 if (i != start_idx) { in mount_with_alternatives() 346 fstab->recs[start_idx].fs_type); in mount_with_alternatives() 359 *attempted_idx = start_idx; in mount_with_alternatives()
|
/system/bt/stack/gatt/ |
D | gatt_api.c | 1324 UINT8 start_idx, found_idx; in GATT_StartIf() local 1331 start_idx = 0; in GATT_StartIf() 1332 while (gatt_find_the_connected_bda(start_idx, bda, &found_idx, &transport)) in GATT_StartIf() 1340 start_idx = ++found_idx; in GATT_StartIf() 1410 UINT8 start_idx, found_idx; in GATT_CancelConnect() local 1425 start_idx = 0; in GATT_CancelConnect() 1430 … while (status && gatt_find_app_hold_link(p_tcb, start_idx, &found_idx, &temp_gatt_if)) in GATT_CancelConnect() 1433 start_idx = ++found_idx; in GATT_CancelConnect()
|
D | gatt_main.c | 1168 UINT8 start_idx, found_idx; in gatt_proc_srv_chg() local 1179 start_idx =0; in gatt_proc_srv_chg() 1180 while (gatt_find_the_connected_bda(start_idx, bda, &found_idx, &transport)) in gatt_proc_srv_chg() 1193 start_idx = ++found_idx; in gatt_proc_srv_chg()
|
D | gatt_utils.c | 728 BOOLEAN gatt_find_the_connected_bda(UINT8 start_idx, BD_ADDR bda, UINT8 *p_found_idx, in gatt_find_the_connected_bda() argument 733 GATT_TRACE_DEBUG("gatt_find_the_connected_bda start_idx=%d",start_idx); in gatt_find_the_connected_bda() 735 for (i = start_idx ; i < GATT_MAX_PHY_CHANNEL; i ++) in gatt_find_the_connected_bda() 2040 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 2045 for (i = start_idx; i < GATT_MAX_APPS; i ++) in gatt_find_app_hold_link()
|
D | gatt_int.h | 582 extern BOOLEAN gatt_find_the_connected_bda(UINT8 start_idx, BD_ADDR bda, UINT8 *p_found_idx, tBT_TR… 641 extern BOOLEAN gatt_find_app_hold_link(tGATT_TCB *p_tcb, UINT8 start_idx, UINT8 *p_found_idx, tGATT…
|