Home | History | Annotate | Download | only in qemu

Lines Matching refs:obj

17 static void qlist_destroy_obj(QObject *obj);
40 static void qlist_copy_elem(QObject *obj, void *opaque)
44 qobject_incref(obj);
45 qlist_append_obj(dst, obj);
79 void (*iter)(QObject *obj, void *opaque), void *opaque)
129 QList *qobject_to_qlist(const QObject *obj)
131 if (qobject_type(obj) != QTYPE_QLIST) {
135 return container_of(obj, QList, base);
141 static void qlist_destroy_obj(QObject *obj)
146 assert(obj != NULL);
147 qlist = qobject_to_qlist(obj);