Lines Matching refs:vmsd

521     const VMStateDescription *vmsd = field->vmsd;  in get_tmp()  local
527 ret = vmstate_load_state(f, vmsd, tmp, version_id); in get_tmp()
535 const VMStateDescription *vmsd = field->vmsd; in put_tmp() local
541 ret = vmstate_save_state(f, vmsd, tmp, vmdesc); in put_tmp()
604 const VMStateDescription *vmsd = field->vmsd; in get_qtailq() local
612 trace_get_qtailq(vmsd->name, version_id); in get_qtailq()
613 if (version_id > vmsd->version_id) { in get_qtailq()
614 error_report("%s %s", vmsd->name, "too new"); in get_qtailq()
615 trace_get_qtailq_end(vmsd->name, "too new", -EINVAL); in get_qtailq()
619 if (version_id < vmsd->minimum_version_id) { in get_qtailq()
620 error_report("%s %s", vmsd->name, "too old"); in get_qtailq()
621 trace_get_qtailq_end(vmsd->name, "too old", -EINVAL); in get_qtailq()
627 ret = vmstate_load_state(f, vmsd, elm, version_id); in get_qtailq()
634 trace_get_qtailq_end(vmsd->name, "end", ret); in get_qtailq()
642 const VMStateDescription *vmsd = field->vmsd; in put_qtailq() local
648 trace_put_qtailq(vmsd->name, vmsd->version_id); in put_qtailq()
652 ret = vmstate_save_state(f, vmsd, elm, vmdesc); in put_qtailq()
659 trace_put_qtailq_end(vmsd->name, "end"); in put_qtailq()
709 const VMStateDescription *key_vmsd = direct_key ? NULL : &field->vmsd[1]; in put_gtree()
710 const VMStateDescription *val_vmsd = &field->vmsd[0]; in put_gtree()
739 const VMStateDescription *key_vmsd = direct_key ? NULL : &field->vmsd[1]; in get_gtree()
740 const VMStateDescription *val_vmsd = &field->vmsd[0]; in get_gtree()
824 const VMStateDescription *vmsd = field->vmsd; in put_qlist() local
830 trace_put_qlist(field->name, vmsd->name, vmsd->version_id); in put_qlist()
833 ret = vmstate_save_state(f, vmsd, elm, vmdesc); in put_qlist()
836 vmsd->name, ret); in put_qlist()
841 trace_put_qlist_end(field->name, vmsd->name); in put_qlist()
850 const VMStateDescription *vmsd = field->vmsd; in get_qlist() local
858 trace_get_qlist(field->name, vmsd->name, vmsd->version_id); in get_qlist()
859 if (version_id > vmsd->version_id) { in get_qlist()
860 error_report("%s %s", vmsd->name, "too new"); in get_qlist()
863 if (version_id < vmsd->minimum_version_id) { in get_qlist()
864 error_report("%s %s", vmsd->name, "too old"); in get_qlist()
870 ret = vmstate_load_state(f, vmsd, elm, version_id); in get_qlist()
873 vmsd->name, ret); in get_qlist()
884 trace_get_qlist_end(field->name, vmsd->name); in get_qlist()