HomeSort by relevance Sort by last modified time
    Searched refs:QOBJECT (Results 1 - 5 of 5) sorted by null

  /external/qemu/
json-streamer.c 46 qdict_put_obj(dict, "type", QOBJECT(qint_from_int(type)));
48 qdict_put_obj(dict, "token", QOBJECT(token));
49 qdict_put_obj(dict, "x", QOBJECT(qint_from_int(x)));
50 qdict_put_obj(dict, "y", QOBJECT(qint_from_int(y)));
qobject.h 14 * QObject Reference Counts Terminology
49 struct QObject;
53 void (*destroy)(struct QObject *);
56 typedef struct QObject {
59 } QObject;
63 QObject base
66 #define QOBJECT(obj) (&(obj)->base)
70 qobject_incref(QOBJECT(obj))
74 qobject_decref(QOBJECT(obj))
82 * qobject_incref(): Increment QObject's reference coun
    [all...]
qlist.h 15 #include "qobject.h"
20 QObject *value;
30 qlist_append_obj(qlist, QOBJECT(obj))
37 static inline QObject *qlist_entry_obj(const QListEntry *entry)
44 void qlist_append_obj(QList *qlist, QObject *obj);
46 void (*iter)(QObject *obj, void *opaque), void *opaque);
47 QObject *qlist_pop(QList *qlist);
48 QObject *qlist_peek(QList *qlist);
50 QList *qobject_to_qlist(const QObject *obj);
qdict.h 4 #include "qobject.h"
13 QObject *value;
26 void qdict_put_obj(QDict *qdict, const char *key, QObject *value);
29 QObject *qdict_get(const QDict *qdict, const char *key);
30 QDict *qobject_to_qdict(const QObject *obj);
32 void (*iter)(const char *key, QObject *obj, void *opaque),
37 qdict_put_obj(qdict, key, QOBJECT(obj))
qjson.c 2 * QObject JSON integration
28 QObject *result;
37 QObject *qobject_from_jsonv(const char *string, va_list *ap)
51 QObject *qobject_from_json(const char *string)
60 QObject *qobject_from_jsonf(const char *string, ...)
62 QObject *obj;
79 static void to_json(const QObject *obj, QString *str);
81 static void to_json_dict_iter(const char *key, QObject *obj, void *opaque)
91 to_json(QOBJECT(qkey), s->str);
99 static void to_json_list_iter(QObject *obj, void *opaque
    [all...]

Completed in 2599 milliseconds