HomeSort by relevance Sort by last modified time
    Searched refs:QObject (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/qemu/include/qapi/qmp/
qjson.h 2 * QObject JSON integration
19 #include "qapi/qmp/qobject.h"
22 QObject *qobject_from_json(const char *string) GCC_FMT_ATTR(1, 0);
23 QObject *qobject_from_jsonf(const char *string, ...) GCC_FMT_ATTR(1, 2);
24 QObject *qobject_from_jsonv(const char *string, va_list *ap) GCC_FMT_ATTR(1, 0);
26 QString *qobject_to_json(const QObject *obj);
27 QString *qobject_to_json_pretty(const QObject *obj);
json-parser.h 21 QObject *json_parser_parse(QList *tokens, va_list *ap);
22 QObject *json_parser_parse_err(QList *tokens, va_list *ap, Error **errp);
qobject.h 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 coun
    [all...]
qlist.h 16 #include "qapi/qmp/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);
51 QList *qobject_to_qlist(const QObject *obj);
dispatch.h 17 #include "qapi/qmp/qobject.h"
21 typedef void (QmpCommandFunc)(QDict *, QObject **, Error **);
47 QObject *qmp_dispatch(QObject *request);
53 QObject *qmp_build_error_object(Error *errp);
qbool.h 18 #include "qapi/qmp/qobject.h"
27 QBool *qobject_to_qbool(const QObject *obj);
qfloat.h 18 #include "qapi/qmp/qobject.h"
27 QFloat *qobject_to_qfloat(const QObject *obj);
qdict.h 16 #include "qapi/qmp/qobject.h"
25 QObject *value;
38 QObject *qdict_entry_value(const QDictEntry *entry);
40 void qdict_put_obj(QDict *qdict, const char *key, QObject *value);
43 QObject *qdict_get(const QDict *qdict, const char *key);
44 QDict *qobject_to_qdict(const QObject *obj);
46 void (*iter)(const char *key, QObject *obj, void *opaque),
53 qdict_put_obj(qdict, key, QOBJECT(obj))
qint.h 17 #include "qapi/qmp/qobject.h"
26 QInt *qobject_to_qint(const QObject *obj);
  /external/qemu/include/qapi/
qmp-input-visitor.h 18 #include "qapi/qmp/qobject.h"
22 QmpInputVisitor *qmp_input_visitor_new(QObject *obj);
23 QmpInputVisitor *qmp_input_visitor_new_strict(QObject *obj);
qmp-output-visitor.h 18 #include "qapi/qmp/qobject.h"
25 QObject *qmp_output_get_qobject(QmpOutputVisitor *v);
  /external/qemu/include/qom/
qom-qobject.h 2 * QEMU Object Model - QObject wrappers
24 * Returns: the value of the property, converted to QObject, or NULL if
27 struct QObject *object_property_get_qobject(Object *obj, const char *name,
39 void object_property_set_qobject(Object *obj, struct QObject *qobj,
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
signalbar.h 12 #include <QObject>
20 SignalBar(QObject *parent = 0);
addinterface.h 12 #include <QObject>
scanresults.h 12 #include <QObject>
userdatarequest.h 12 #include <QObject>
eventhistory.h 12 #include <QObject>
21 EventListModel(QObject *parent = 0)
  /external/qemu/qapi-auto-generated/
qmp-commands.h 24 int qmp_marshal_input_add_client(Monitor *mon, const QDict *qdict, QObject **ret);
26 int qmp_marshal_input_query_name(Monitor *mon, const QDict *qdict, QObject **ret);
28 int qmp_marshal_input_query_version(Monitor *mon, const QDict *qdict, QObject **ret);
30 int qmp_marshal_input_query_kvm(Monitor *mon, const QDict *qdict, QObject **ret);
32 int qmp_marshal_input_query_status(Monitor *mon, const QDict *qdict, QObject **ret);
34 int qmp_marshal_input_query_uuid(Monitor *mon, const QDict *qdict, QObject **ret);
36 int qmp_marshal_input_query_chardev(Monitor *mon, const QDict *qdict, QObject **ret);
38 int qmp_marshal_input_ringbuf_write(Monitor *mon, const QDict *qdict, QObject **ret);
40 int qmp_marshal_input_ringbuf_read(Monitor *mon, const QDict *qdict, QObject **ret);
42 int qmp_marshal_input_query_commands(Monitor *mon, const QDict *qdict, QObject **ret)
    [all...]
  /external/qemu/qobject/
qbool.c 15 #include "qapi/qmp/qobject.h"
18 static void qbool_destroy_obj(QObject *obj);
50 * qobject_to_qbool(): Convert a QObject into a QBool
52 QBool *qobject_to_qbool(const QObject *obj)
64 static void qbool_destroy_obj(QObject *obj)
qfloat.c 15 #include "qapi/qmp/qobject.h"
18 static void qfloat_destroy_obj(QObject *obj);
50 * qobject_to_qfloat(): Convert a QObject into a QFloat
52 QFloat *qobject_to_qfloat(const QObject *obj)
64 static void qfloat_destroy_obj(QObject *obj)
qint.c 14 #include "qapi/qmp/qobject.h"
17 static void qint_destroy_obj(QObject *obj);
49 * qobject_to_qint(): Convert a QObject into a QInt
51 QInt *qobject_to_qint(const QObject *obj)
63 static void qint_destroy_obj(QObject *obj)
qlist.c 14 #include "qapi/qmp/qobject.h"
18 static void qlist_destroy_obj(QObject *obj);
41 static void qlist_copy_elem(QObject *obj, void *opaque)
59 * qlist_append_obj(): Append an QObject into QList
63 void qlist_append_obj(QList *qlist, QObject *value)
80 void (*iter)(QObject *obj, void *opaque), void *opaque)
88 QObject *qlist_pop(QList *qlist)
91 QObject *ret;
106 QObject *qlist_peek(QList *qlist)
109 QObject *ret
    [all...]
json-parser.c 31 QObject **buf;
48 static QObject *parse_value(JSONParserContext *ctxt, va_list *ap);
57 static const char *token_get_value(QObject *obj)
62 static JSONTokenType token_get_type(QObject *obj)
67 static int token_is_operator(QObject *obj, char op)
80 static int token_is_keyword(QObject *obj, const char *value)
89 static int token_is_escape(QObject *obj, const char *value)
102 QObject *token, const char *msg, ...)
158 * parse_string(): Parse a json string and return a QObject
180 static QString *qstring_from_escaped_str(JSONParserContext *ctxt, QObject *token
    [all...]
qdict.c 18 #include "qapi/qmp/qobject.h"
22 static void qdict_destroy_obj(QObject *obj);
45 * qobject_to_qdict(): Convert a QObject into a QDict
47 QDict *qobject_to_qdict(const QObject *obj)
74 static QDictEntry *alloc_entry(const char *key, QObject *value)
90 QObject *qdict_entry_value(const QDictEntry *entry)
122 * qdict_put_obj(): Put a new QObject into the dictionary
127 * This is done by freeing the reference to the stored QObject and
132 void qdict_put_obj(QDict *qdict, const char *key, QObject *value)
154 * Return a weak reference to the QObject associated with 'key' i
    [all...]
  /external/qemu/qom/
qom-qobject.c 2 * QEMU Object Model - QObject wrappers
14 #include "qom/qom-qobject.h"
19 void object_property_set_qobject(Object *obj, QObject *value,
29 QObject *object_property_get_qobject(Object *obj, const char *name,
32 QObject *ret = NULL;

Completed in 269 milliseconds

1 2 3