xref: /qemu/scripts/coccinelle/qobject.cocci (revision 006ca09f)
1// Use QDict macros where they make sense
2@@
3expression Obj, Key, E;
4@@
5(
6- qobject_incref(QOBJECT(E));
7+ QINCREF(E);
8|
9- qobject_decref(QOBJECT(E));
10+ QDECREF(E);
11|
12- qdict_put_obj(Obj, Key, QOBJECT(E));
13+ qdict_put(Obj, Key, E);
14|
15- qdict_put(Obj, Key, qnum_from_int(E));
16+ qdict_put_int(Obj, Key, E);
17|
18- qdict_put(Obj, Key, qbool_from_bool(E));
19+ qdict_put_bool(Obj, Key, E);
20|
21- qdict_put(Obj, Key, qstring_from_str(E));
22+ qdict_put_str(Obj, Key, E);
23)
24
25// Use QList macros where they make sense
26@@
27expression Obj, E;
28@@
29(
30- qlist_append_obj(Obj, QOBJECT(E));
31+ qlist_append(Obj, E);
32|
33- qlist_append(Obj, qnum_from_int(E));
34+ qlist_append_int(Obj, E);
35|
36- qlist_append(Obj, qbool_from_bool(E));
37+ qlist_append_bool(Obj, E);
38|
39- qlist_append(Obj, qstring_from_str(E));
40+ qlist_append_str(Obj, E);
41)
42