Home | History | Annotate | Download | only in qmp

Lines Matching refs:QObject

14  * QObject Reference Counts Terminology
50 struct QObject;
54 void (*destroy)(struct QObject *);
57 typedef struct QObject {
60 } QObject;
64 QObject base
67 #define QOBJECT(obj) (&(obj)->base)
71 qobject_incref(QOBJECT(obj))
75 qobject_decref(obj ? QOBJECT(obj) : NULL)
83 * qobject_incref(): Increment QObject's reference count
85 static inline void qobject_incref(QObject *obj)
92 * qobject_decref(): Decrement QObject's reference count, deallocate
95 static inline void qobject_decref(QObject *obj)
105 * qobject_type(): Return the QObject's type
107 static inline qtype_code qobject_type(const QObject *obj)