1d0fb9657SStefano Garzarella# See docs/devel/tracing.rst for syntax documentation. 2e68b3baaSMarkus Armbruster 3500016e5SMarkus Armbruster# qapi-visit-core.c 4ebfd93b6SDaniel P. Berrangevisit_free(void *v) "v=%p" 5ebfd93b6SDaniel P. Berrangevisit_complete(void *v, void *opaque) "v=%p opaque=%p" 6ebfd93b6SDaniel P. Berrange 7ebfd93b6SDaniel P. Berrangevisit_start_struct(void *v, const char *name, void *obj, size_t size) "v=%p name=%s obj=%p size=%zu" 8ebfd93b6SDaniel P. Berrangevisit_check_struct(void *v) "v=%p" 9ebfd93b6SDaniel P. Berrangevisit_end_struct(void *v, void *obj) "v=%p obj=%p" 10ebfd93b6SDaniel P. Berrange 11ebfd93b6SDaniel P. Berrangevisit_start_list(void *v, const char *name, void *obj, size_t size) "v=%p name=%s obj=%p size=%zu" 12ebfd93b6SDaniel P. Berrangevisit_next_list(void *v, void *tail, size_t size) "v=%p tail=%p size=%zu" 13a4a1c70dSMarkus Armbrustervisit_check_list(void *v) "v=%p" 14ebfd93b6SDaniel P. Berrangevisit_end_list(void *v, void *obj) "v=%p obj=%p" 15ebfd93b6SDaniel P. Berrange 1660390d2dSMarc-André Lureauvisit_start_alternate(void *v, const char *name, void *obj, size_t size) "v=%p name=%s obj=%p size=%zu" 17ebfd93b6SDaniel P. Berrangevisit_end_alternate(void *v, void *obj) "v=%p obj=%p" 18ebfd93b6SDaniel P. Berrange 19ebfd93b6SDaniel P. Berrangevisit_optional(void *v, const char *name, bool *present) "v=%p name=%s present=%p" 20*a1307285SMarkus Armbrustervisit_policy_reject(void *v, const char *name) "v=%p name=%s" 21*a1307285SMarkus Armbrustervisit_policy_skip(void *v, const char *name) "v=%p name=%s" 22ebfd93b6SDaniel P. Berrange 23ebfd93b6SDaniel P. Berrangevisit_type_enum(void *v, const char *name, int *obj) "v=%p name=%s obj=%p" 24ebfd93b6SDaniel P. Berrangevisit_type_int(void *v, const char *name, int64_t *obj) "v=%p name=%s obj=%p" 25ebfd93b6SDaniel P. Berrangevisit_type_uint8(void *v, const char *name, uint8_t *obj) "v=%p name=%s obj=%p" 26ebfd93b6SDaniel P. Berrangevisit_type_uint16(void *v, const char *name, uint16_t *obj) "v=%p name=%s obj=%p" 27ebfd93b6SDaniel P. Berrangevisit_type_uint32(void *v, const char *name, uint32_t *obj) "v=%p name=%s obj=%p" 28ebfd93b6SDaniel P. Berrangevisit_type_uint64(void *v, const char *name, uint64_t *obj) "v=%p name=%s obj=%p" 29ebfd93b6SDaniel P. Berrangevisit_type_int8(void *v, const char *name, int8_t *obj) "v=%p name=%s obj=%p" 30ebfd93b6SDaniel P. Berrangevisit_type_int16(void *v, const char *name, int16_t *obj) "v=%p name=%s obj=%p" 31ebfd93b6SDaniel P. Berrangevisit_type_int32(void *v, const char *name, int32_t *obj) "v=%p name=%s obj=%p" 32ebfd93b6SDaniel P. Berrangevisit_type_int64(void *v, const char *name, int64_t *obj) "v=%p name=%s obj=%p" 33ebfd93b6SDaniel P. Berrangevisit_type_size(void *v, const char *name, uint64_t *obj) "v=%p name=%s obj=%p" 34ebfd93b6SDaniel P. Berrangevisit_type_bool(void *v, const char *name, bool *obj) "v=%p name=%s obj=%p" 35ebfd93b6SDaniel P. Berrangevisit_type_str(void *v, const char *name, char **obj) "v=%p name=%s obj=%p" 36ec09f877SStefan Hajnoczivisit_type_number(void *v, const char *name, void *obj) "v=%p name=%s obj=%p" 37ebfd93b6SDaniel P. Berrangevisit_type_any(void *v, const char *name, void *obj) "v=%p name=%s obj=%p" 38d2f95f4dSMarkus Armbrustervisit_type_null(void *v, const char *name, void *obj) "v=%p name=%s obj=%p" 39