Home
last modified time | relevance | path

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

/external/qemu/block/
Dqcow2-snapshot.c305 int i, snapshot_index, l1_size2; in qcow2_snapshot_goto() local
307 snapshot_index = find_snapshot_by_id_or_name(bs, snapshot_id); in qcow2_snapshot_goto()
308 if (snapshot_index < 0) in qcow2_snapshot_goto()
310 sn = &s->snapshots[snapshot_index]; in qcow2_snapshot_goto()
346 int snapshot_index, ret; in qcow2_snapshot_delete() local
348 snapshot_index = find_snapshot_by_id_or_name(bs, snapshot_id); in qcow2_snapshot_delete()
349 if (snapshot_index < 0) in qcow2_snapshot_delete()
351 sn = &s->snapshots[snapshot_index]; in qcow2_snapshot_delete()
364 memmove(sn, sn + 1, (s->nb_snapshots - snapshot_index - 1) * sizeof(*sn)); in qcow2_snapshot_delete()