master
text 18 lines 1.46 KB
Raw
1 # See docs/devel/tracing.rst for syntax documentation.
2
3 # object.c
4 object_dynamic_cast_assert(void *obj, const char *type, const char *target, const char *file, int line, const char *func) "obj=%p type=%s->%s (%s:%d:%s)"
5 object_finalize(void *obj, const char *type) "obj=%p type=%s"
6 object_new(void *obj, const char *type) "obj=%p type=%s"
7 object_property_add(void *obj, const char *type, const char *name, void *value) "obj=%p type=%s name=%s value=%p"
8 object_property_add_child(void *obj, const char *type, const char *name, void *child, const char *childtype) "obj=%p type=%s name=%s child=%p child-type=%s"
9 object_property_del(void *obj, const char *type, const char *name, void *value) "obj=%p type=%s name=%s value=%p"
10 object_property_del_child(void *obj, const char *type, void *child, const char *childtype) "obj=%p type=%s child=%p child-type=%s"
11 object_property_parse(void *obj, const char *type, const char *name, const char *value) "obj=%p type=%s prop=%s value=%s"
12 object_class_dynamic_cast_assert(const char *type, const char *target, const char *file, int line, const char *func) "type=%s->%s (%s:%d:%s)"
13 object_class_property_add(const char *type, const char *name, void *value) "type=%s name=%s value=%p"
14
15 # object_interfaces.c
16 user_creatable_complete(void *obj, const char *type) "obj=%p type=%s"
17 user_creatable_prepare_delete(void *obj, const char *type) "obj=%p type=%s"
18 user_creatable_prepare_delete_result(void *obj, const char *type, const char *msg) "obj=%p type=%s msg=%s"